-
Notifications
You must be signed in to change notification settings - Fork 1
/
irs.css
104 lines (94 loc) · 2.11 KB
/
irs.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
.course {
z-index: 10;
width: 100px;
margin: 0;
padding: 5px;
/*border: 2px solid #41464b;*/
border-radius: 5px;
color: #41464b;
white-space: nowrap;
}
.courseSnapTarget {
padding: 2px
}
.courseCompleted {
background-color: #e2e3e5;
}
.courseInProgress {
background-color: #4d5258;
color: white;
}
.courseDoubleCountCompleted {
background-color: #d1e7dd;
color: #0f5132;
}
.courseDoubleCountInProgress {
background-color: #178650;
color: white;
}
.courseDoubleCountShadow {
background-color: white;
color: #178650;
border: 3px solid #178650;
padding-top: 0px;
padding-bottom: 0px;
}
.requirement {
padding: 10px 210px 10px 10px;
border-top: 1px solid darkgray;
}
.requirementSatisfied {
color: #41464b;
background-color: white;
}
.requirementPartiallySatisfied {
color: #664d03;
background-color: #fff3cd;
}
.requirementUnsatisfied {
color: #842029;
background-color: #f8d7da;
}
.requirementCouldBeSatisfied {
color: #084298;
background-color: #cfe2ff;
}
/* https://www.w3schools.com/css/css_tooltip.asp */
/* Tooltip container */
.myTooltip {
/*position: relative;*/
/*display: inline-block;*/
/*border-bottom: 1px dotted black; !* If you want dots under the hoverable text *!*/
}
/* Skip the border-bottom dots when a tooltip is in a link; the link is already underlined */
a .tooltip {
border-bottom: none;
text-decoration: underline;
}
/* Tooltip text */
.myTooltip .myTooltipText {
visibility: hidden;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 5px;
border-radius: 6px;
/*font-size: small;*/
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1000;
/*width: 20px;*/
bottom: 50%;
/*left: -50px;*/
/*left: 100%;*/
/*margin-left: 20px; !* Use half of the width to center the tooltip *!*/
}
/* Show the tooltip text when you mouse over the tooltip container */
.myTooltip:hover .myTooltipText {
visibility: visible;
}
.forkme {
position: absolute;
top: 0px;
right: 0px;
}