-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (92 loc) · 2.42 KB
/
style.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
background-color: rgb(88, 85, 85);
color: rgb(14, 14, 14);
}
.container {
border-radius: 10px;
border: 2px solid rebeccapurple;
background-color: rgb(187, 201, 243);
display: inline-block;
position: absolute;
margin: auto;
left: 38%;
margin-top: 75px;
padding: 14px 58px 29px 58px;
}
.form {
text-align: center;
}
h2 {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-decoration: underline overline dotted;
text-align: center;
}
.form-parts {
position: relative;
margin: 28px 0px 13px 0px;
}
#email {
height: 25px;
border-radius: 7px;
}
#pass {
height: 25px;
border-radius: 7px;
}
#name {
height: 25px;
border-radius: 7px;
}
#vpass {
height: 25px;
border-radius: 7px;
}
label {
position: absolute;
left: 2%;
font-size: 20px;
}
#b1 {
width: 176px;
height: 29px;
margin: 28px 0px 0px 0px;
border-radius: 7px;
background-color: rgb(240, 237, 233);
color: black;
font-size: 19px;
}
#b1:hover {
background-color: rgb(248, 239, 227);
}
.form-parts small {
color: #e74c3c;
position: absolute;
bottom: -15px;
left: 4px;
visibility: hidden;
}
.form-parts i{
visibility: hidden;
position: absolute;
top: 28px;
right: 8px;
}
.noerror i.fa-check-circle {
color: #2ecc71;
visibility: visible;
}
.error i.fa-exclamation-circle {
color: #e74c3c;
visibility: visible;
}
.error small {
visibility: visible;
font-weight: 300;
}
.noerror input {
border: 2px solid rgb(62, 251, 62);
}
.error input {
border: 2px solid red;
}
</style>