-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (41 loc) · 758 Bytes
/
style.css
File metadata and controls
50 lines (41 loc) · 758 Bytes
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
body {
background-image: url("http://www.planwallpaper.com/static/images/6935544-blue-backgrounds-hd.jpg");
}
h1 {
-webkit-animation-name: anim;
-webkit-animation-duration: 10s;
animation-name: anim;
animation-duration: 10s;
}
@-webkit-keyframes anim {
from {color: red;}
to {color: blue;}
}
@keyframes anim {
from {color: red;}
to {color: blue;}
}
th:hover {
color: blue;
}
th:first-of-type {
border: 2px dashed red;
}
tr:nth-child(even) {
background-color: gray;
}
a:visited {
color: white;
}
td, th {
border: 1px solid black;
font-size: 20px;
}
p {
vertical-align: middle;
text-align: justify;
border: 1px solid blue;
font-family: Gill Sans Extrabold, sans-serif;
display: inline;
font-weight: bold;
}