-
Notifications
You must be signed in to change notification settings - Fork 2
/
app_pages.css
134 lines (109 loc) · 2.02 KB
/
app_pages.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
119
120
121
122
123
124
125
126
127
128
129
130
/* style of body (remove margins) */
body {
margin: 0;
}
/* style of all divs (just to see layout easily) */
div {
box-sizing: border-box;
border: solid red 0px;
position: absolute;
}
.graph{
overflow: hidden;
position: absolute;
}
.graph-info{
right: 0;
color: white;
z-index: 1;
}
.text-box{
background-color: white;
color: black;
font-size: 10px;
}
/* center mathjax expressions */
.MJXc-display{
display:table;
margin:0 auto;
}
p{
padding: 5px;
}
/* style of stage buttons */
.stage-btn {
background-color: #222 ;
float: left;
border: none;
font-size: 15px;
height: 100%;
color: white;
outline: none;
}
/* stage buttons during hover */
.stage-btn:hover {
background-color: #333;
}
/* stage button when active */
.stage-btn.active {
background-color: white;
color: black;
}
/* style of back forward button */
.back-fwd-btn {
background-color:inherit;
border: none;
position: "absolute";
font-size: 40;
color: black;
right: 100px;
z-index: 2;
outline: none;
}
.back-fwd-btn:disabled{
color: #444;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 80px;
background-color: gray;
color: black;
text-align: center;
border-radius: 0px;
padding: 5px 0;
position: absolute;
font-size: 10px;
}
.tooltip:hover .tooltiptext {
transition-delay: 0.3s;
visibility: visible;
}
.slider {
-webkit-appearance: none;
width: 100%;
border-radius: 20px;
background: lightgray;
outline: none;
opacity: 0.8;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--c)
}
.slider::-moz-range-thumb {
-webkit-appearance: none;
appearance: none;
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--c)
}