-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPA8-theme.css
More file actions
47 lines (40 loc) · 1.85 KB
/
PA8-theme.css
File metadata and controls
47 lines (40 loc) · 1.85 KB
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
.w3-theme-l5 {color:#000 !important; background-color:#e7fff9 !important}
.w3-theme-l4 {color:#000 !important; background-color:#afffea !important}
.w3-theme-l3 {color:#000 !important; background-color:#60ffd5 !important}
.w3-theme-l2 {color:#000 !important; background-color:#10ffbf !important}
.w3-theme-l1 {color:#fff !important; background-color:#00c08d !important}
.w3-theme-d1 {color:#fff !important; background-color:#00654a !important}
.w3-theme-d2 {color:#fff !important; background-color:#005a42 !important}
.w3-theme-d3 {color:#fff !important; background-color:#004f3a !important}
.w3-theme-d4 {color:#fff !important; background-color:#004331 !important}
.w3-theme-d5 {color:#fff !important; background-color:#003829 !important}
.w3-theme-light {color:#000 !important; background-color:#e7fff9 !important}
.w3-theme-dark {color:#fff !important; background-color:#003829 !important}
.w3-theme-action {color:#fff !important; background-color:#003829 !important}
.w3-theme {color:#fff !important; background-color:#006e51 !important}
.w3-text-theme {color:#006e51 !important}
.w3-border-theme {border-color:#006e51 !important}
.w3-hover-theme:hover {color:#fff !important; background-color:#006e51 !important}
.w3-hover-text-theme {color:#006e51 !important}
.w3-hover-border-theme:hover {border-color:#006e51 !important}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
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;
}