-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (102 loc) · 3.17 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@font-face {
font-family: simvoni;
src: url(/assets/fonts/Simvoni.ttf);
font-display: swap;
}
@font-face {
font-family: 'Noto Color Emoji';
src: url(https://raw.githack.com/googlefonts/noto-emoji/main/fonts/NotoColorEmoji.ttf);
}
A {
text-align: center;
font-size: normal;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
A:hover {
text-align: center;
font-size: normal;
color: rgb(168, 168, 168);
font-family: simvoni, 'Noto Color Emoji';
}
H1 {
text-align: center;
font-size: xx-large;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
H2 {
text-align: center;
font-size: x-large;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
H3 {
text-align: center;
font-size: larger;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
H4 {
text-align: center;
font-size: large;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
H5 {
text-align: center;
font-size: medium;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
H6 {
text-align: center;
font-size: small;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
Body {
text-align: center;
font-size: medium;
color: rgb(255, 255, 255);
font-family: simvoni, 'Noto Color Emoji';
}
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
}
/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 225px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
width: 225px;
top: 100%;
left: 50%;
margin-left: -112.5px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
/* BODY{ font-family:sans-serif; font-size:medium; font-weight:normal; }
P{ text-align:centre; font-size:small; font-family:sans-serif; font-weight:normal; }
H1{ text-align:centre; font-size:xx-large; font-family:sans-serif; font-weight:normal; }
H2{ text-align:centre; font-size:x-large; font-family:sans-serif; font-weight:normal; }
H3{ text-align:centre; font-size:large; font-family:sans-serif; font-weight:normal; }
H4{ text-align:centre; font-size:medium; font-family:sans-serif; font-weight:normal; }
H5{ text-align:centre; font-size:small; font-family:sans-serif; font-weight:normal; }
H6{ text-align:centre; font-size:smaller; font-family:sans-serif; font-weight:normal; }
PRE{ text-align:centre; font-size:medium; font-family:sans-serif; font-weight:normal; }
A{ text-align:centre; font-family:sans-serif; font-size:normal; color: rgb(255, 255, 255); }
A:Hover{ text-align:centre; font-family:sans-serif; font-size:normal; color: rgb(202, 202, 202); }
SPAN{ text-align:centre; font-family:sans-serif; font-size:normal; }
font-family:sans-serif; font-size:small; A:Hover{ font-family:sans-serif; font-size:small; } */