-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
71 lines (67 loc) · 1.17 KB
/
main.css
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
body{
display:flex;
justify-content: center;
background-color: #e0115f;
}
.container1{
padding: 2rem;
border-radius: 10px;
display:flex;
flex-direction:column;
margin-top: 15rem;
background-color: aquamarine;
}
.title
{
text-align: center;
font-size: 3rem;
}
.input{
display:flex;
flex-direction: column;
margin-top: 2rem;
font-size: 2rem;
}
.input input{
font-size: 1.5rem;
}
.input .fa-check-circle{
color: green;
position: absolute;
transform: translate(25rem,2.35rem);
visibility: hidden;
}
.input .fa-exclamation-circle{
color: red;
position: absolute;
transform: translate(25rem,2.35rem);
visibility: hidden;
/* visibility: visible; */
}
.input.success .fa-check-circle{
visibility: visible;
}
.input.fail .fa-exclamation-circle{
visibility: visible;
}
.input small{
color: red;
font-size: 1.5rem;
display: none;
overflow-wrap: break-word;
width: 26rem;
}
.input.fail small{
display: block;
}
.submit{
margin:2rem;
font-size: 2rem;
background-color: aqua;
width: 23rem;
text-align: center;
}
small{
display: flex;
color: green;
}