-
Notifications
You must be signed in to change notification settings - Fork 1
/
1styles.css
74 lines (64 loc) · 1.22 KB
/
1styles.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
body {
font-family: Montserrat, sans-serif;
color: white;
background-color: black;
margin:0;
padding:0;
}
table.mystyle th {
text-align: center;
padding: 8px;
border: none;
font-size: 16px;
text-transform: uppercase;
transform: rotate(0deg);
background-color: blue;
color: yellow;
text-decoration: underline;
cursor: help;
position: relative;
}
th:hover .explanation {
display: block;
}
table.mystyle td {
text-align: center;
}
.explanation {
display: none;
position: absolute;
top: 100%;
left: 0;
padding: 5px;
background-color: #fff;
color: black;
border: 1px solid #ccc;
box-shadow: 0 2px 2px rgba(0,0,0,.3);
z-index: 1;
font-size: 12px;
line-height: 1.5;
min-width: 100px;
}
.blue { background: blue; }
.red { background: red; }
.green { background: green; }
.darkgreen { background: darkgreen; }
.lime { background: lime; }
.orange { background: orange; }
.white { background: white; }
.black { background: black; }
.url { color: black ; background-color: white }
a:link {
color: white;
}
a:visited {
color: yellow;
}
a.check:link,
a.check:visited {
color: inherit;
}
table.mystyle td:first-child {
text-align: left;
padding-right: 4px;
}