-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
61 lines (61 loc) · 1.05 KB
/
Copy pathcss.css
File metadata and controls
61 lines (61 loc) · 1.05 KB
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
html, body {
width: 100%;
height: 100%;
}
html {
display: table;
}
body {
font: 18px/2 "Roboto", sans-serif;
color: #333;
display: table-cell;
vertical-align: middle;
}
header {
padding-bottom: 60px;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
i {
font-style: italic;
}
footer {
font-size: .8rem;
padding-top: 60px;
}
a {
padding: 2px;
}
a:link, a:visited, a:active {
text-decoration: none;
color: #333;
}
a:hover {
background-image: -moz-linear-gradient( left top, right bottom ,
from(red),
color-stop(16%, orange),
color-stop(32%, yellow),
color-stop(48%, green),
color-stop(60%, blue),
color-stop(76%, indigo),
to(violet));
background-image: -webkit-gradient(linear, left top, right bottom,
color-stop(0.00, red),
color-stop(16%, orange),
color-stop(32%, yellow),
color-stop(48%, green),
color-stop(60%, blue),
color-stop(76%, indigo),
color-stop(1.00, violet));
color: white;
}
section {
text-align: center;
}
li {
list-style: none;
}