-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
72 lines (71 loc) · 1009 Bytes
/
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
import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
*
{
margin: 0;
padding:0;
font-family: 'Poppins', sans-serif;
}
body
{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
background:#373737;
}
h3
{
position:relative;
font-size:20px;
color:#f9f9f9;
letter-spacing:1px;
font-weight:500;
margin-bottom:5px;
}
#form #email
{
width:300px;
background:#292929;
outline:none;
border:none;
padding:10px;
border-radius:6px;
color:#fff;
font-style:18px;
}
#form .inputBox
{
position:relative;
}
#text
{
display:block;
color:#000;
font-weight:300;
font-style:normal;
padding:5px;
}
#form.invalid .inputBox:before
{
content:'';
position:absolute;
right:12px;
top:10px;
width:24px;
height:24px;
background:url(invalid.png);
background-size:cover;
z-index:1000;
}
#form.valid .inputBox:before
{
content:'';
position:absolute;
right:12px;
top:10px;
width:24px;
height:24px;
background:url(valid.png);
background-size:cover;
z-index:1000;
}