-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (84 loc) · 1.6 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
* {
text-align: center;
}
body {
background-color: #1a1d21;
}
h1, h2, h3, h4, h5 {
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
}
h1 {
text-transform: uppercase;
font-size: 350%;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
h2 {
font-size: 250%;
}
h3 {
font-size: 175%;
}
h4 {
font-size: 160%;
}
h5 {
font-size: 135%;
line-height: 10px;
}
form, p, i {
color: whitesmoke;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 120%;
line-height: 20px;
}
li {
color: whitesmoke;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 175%;
line-height: 50px;
list-style-position: inside;
text-align: center;
}
label {
width: 200px;
display: inline-block;
text-align: left;
}
label.check {
text-align: right;
width: 415px;
}
input[type="text"], input[type="email"] {
height: 30px;
width: 275px;
text-align: left;
}
input[type="checkbox"] {
height: 30px;
width: 30px;
}
input[type="submit"] {
height: 70px;
width: 210px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 200%;
font-weight: bold;
}
a:link {
color: whitesmoke;
text-decoration: none;
}
a:visited {
color: turquoise;
text-decoration: none;
}
a:hover {
color: hotpink;
text-decoration: underline;
}
a:active {
color: white;
text-decoration: underline;
}