-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (64 loc) · 1.22 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
body {
background: #000;
font-family: "font1";
font-size: 28px;
color: #FFF;
}
.main_table {
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
}
.title{
text-align: center;
animation: blink 3s infinite;
}
.center{
text-align:center;
}
.small{
}
@keyframes blink{
0%, 100% {text-shadow: 0px 0px 20px goldenrod, 0px 0px 20px goldenrod, 0px 0px 20px goldenrod}
50% {text-shadow: 0px 0px 0px goldenrod}
}
@keyframes blink_box{
0%, 100% {box-shadow: 0px 0px 20px goldenrod, 0px 0px 20px goldenrod, 0px 0px 20px goldenrod}
50% {box-shadow: 0px 0px 0px goldenrod}
}
table, th, td, tr {
color: white;
text-shadow: 0px 2px 5px black;
padding: 5px;
}
th {
background-color: #444;
color: white;
}
td {
text-align: center;
}
tr:nth-child(odd) {
background-color: #444;
}
tr:nth-child(even) {
background-color: #222;
}
tr:nth-child(2) {
background-color: gold;
animation: blink_box 3s infinite;
color: black;
}
tr:nth-child(3) {
background-color: silver;
}
tr:nth-child(4) {
background-color: #ac6a35;
}
.table_th {
width: 180px;
}
@font-face {
font-family: font1;
src: url('assets/fonts/hachicro.ttf');
}