-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
84 lines (70 loc) · 1.28 KB
/
index.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
html {
background: linear-gradient(to right, #addddd, #fafafa, #addddd);
}
body {
color: #fff;
font-family: sans-serif;
display: grid;
place-items: center;
margin: auto;
}
h1 {
text-transform: uppercase;
text-align: center;
}
form {
min-width: 600px;
background: #112233;
padding: 1em;
border-radius: 10px;
margin: auto;
}
input {
font-size: 1rem;
width: 85%;
padding: 0.5em;
display: block;
border-radius: 10px;
transition: background 0.5s;
margin: 0 auto;
}
input:hover {
background: rgb(140, 219, 255);
}
input:hover::placeholder {
color: #fff;
}
label {
font-size: 1.1rem;
display: block;
padding: 1.5em 0.5em 0.5em 1.5em;
border-radius: 10px;
transition: background 0.5s;
}
label[for="newsletter-checkbox"] {
color: #fafafa;
margin: 3em 0em;
text-align: center;
}
label[for="newsletter-checkbox"]:hover {
color: #fff;
text-decoration: underline;
}
input[type="checkbox"] {
margin: 0 auto;
}
input[type="submit"] {
width: 50%;
background: #aaa;
margin: 0 auto;
}
input[type="submit"]:hover {
background: #246;
color: #fff;
}
div.copyright {
text-align: center;
font-size: 14px;
color: #777;
padding-top: 100px;
}