-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (73 loc) · 1.43 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
canvas {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
body {
background-color: #001a00;
}
table {
/* fade-in animation */
/* animation: tableFadeIn 3s; */
visibility: hidden;
box-shadow: 0px 0px 10px 3px rgb(0, 0, 0);
background-color: rgb(8, 8, 8);
border: 5px solid rgb(12, 87, 3);
border-radius: 3px;
margin-top: 5%;
margin-left: 3px;
color: white;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
@keyframes tableFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
th {
padding: 7px 30px 7px 0px;
font-weight: bold;
font-size: 17px;
}
th p {
display: inline-block;
}
th img {
display: inline-block;
margin-left: -30px;
margin-top: 11px;
}
th strong {
left: 10px;
bottom: 10px;
}
a {
color: aqua;
}
button {
z-index: auto;
border: none;
border-top-left-radius: 3px;
position: relative;
left: -6.6px;
top: -62px;
font-size: 28px;
margin: 0px 0px 0px 0px;
padding: 0 5px 0 5px;
background-color: rgb(165, 42, 42);
transition-duration: 0s;
transition-delay: 0ms;
}
button:hover {
background-color: rgb(211, 6, 6);
color: white;
}
table tr td {
border-top: rgb(12, 87, 3) 2px dotted;
padding: 10px 0px 10px 10px;
}