-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmsg.css
More file actions
77 lines (76 loc) · 1.27 KB
/
Copy pathmsg.css
File metadata and controls
77 lines (76 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body,html{
display: grid;
height: 100%;
place-items: center;
background: #6665ee;
}
.content{
width:600px;
background: #fff;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
padding:25px 30px;
border-radius: 12px;
box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}
h4{
font-size: 1.5rem;
margin-bottom: .5rem;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
text-transform: capitalize;
}
form{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width:100%;
}
.input-1{
width:80%;
padding:10px 8px;
outline:none;
border:1px solid #6665ee;
margin-top: 20px;
font-size: 18px;
}
.input-2{
margin-top: 25px;
padding:12px 20px;
background: #6665ee;
border:none;
color:#fff;
font-size:18px;
font-weight: 500;
cursor:pointer;
}
h5{
background-color: #ffd4cd;
font-size: 1.2rem;
width: 100%;
padding: 10px 0;
}
.feedback{
display: none;
}
.show{
margin-top:8px;
display:block;
}
.msg-content{
color:#4b830a;
}
.down{
margin:10px 0;
}