-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
90 lines (70 loc) · 1.31 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
body {
font-family: Montserrat, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
table {
border-collapse: collapse;
width: 90%;
margin-left: 5%;
}
th[scope|="col"] {width: 20%;}
th, td {
padding: 8px;
margin: 8px;
text-align: left;
border: 1px solid #ccc;
}
th {
text-align: left;
}
tbody td:nth-child(2) {
text-align: left;
}
tbody tr:nth-child(odd) {
background: #eee;
}
.typeicon {height: 2em; padding-left: 1em; }
dt {text-align: left;}
.details-container {
position: relative;
display: inline-block;
margin: 8px;
}
.details-bubble {
filter: drop-shadow(16px 16px 10px black);
display: inline-block;
position: absolute;
left: 100%;
top: -1em;
width: 20em;
padding: 0.5rem;
background: cornsilk;
color: black;
border-color: black;
border-style: solid;
margin-left: 8px;
font-family: sans-serif;
font-weight: normal;
text-align: left;
z-index: 1;
}
.align_right { float: right; }
.align_left { text-align: left; }
button {
float: right;
}
h3 {margin-top: 0;}
dl {
border: 3px double #ccc;
padding: 0.5em;
}
dt {
float: left;
clear: left;
width: 100px;
text-align: right;
font-weight: bold;
}
dd {
margin: 0 0 0 140px;
padding: 0 0 2em 0;
}