-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (77 loc) · 1.33 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
body,
html {
height: 100%;
margin: 0;
background-color: lightyellow;
color: #333;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.3em;
}
h1 {
font-size: 1.5em;
margin: 0;
}
ol {
margin: 0;
}
p {
font-size: 0.7em;
font-style: italic;
}
li {
padding: 4px;
}
body {
display: flex;
justify-content: center;
align-items: center;
}
.centered {
padding: 16px;
}
.disclaimer {
padding: 4px;
position: fixed;
font-style: italic;
bottom: 0;
left: 0;
right: 0;
font-size: 0.5em;
text-align: center;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip-title {
cursor: pointer;
}
.tooltip .tooltiptext {
visibility: hidden;
box-sizing: border-box;
text-align: left;
width: 350px;
background-color: #555;
color: #fff;
border-radius: 6px;
border:1px solid black;
padding: 8px;
box-shadow: black 1px 1px 2px;
/* Position the tooltip */
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -175px;
margin-bottom:4px;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
#version {
margin-left: 16px;
font-size: 30%;
color: grey;
}
.github-fork-ribbon:before { background-color: #555 !important; }