forked from helena2505/alg_vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscene_buttons.css
58 lines (54 loc) · 1.52 KB
/
scene_buttons.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
/* Button to switch to next scene */
#btn-prev-scene {
font-family: 'Roboto', sans-serif;
font-size: 17px;
max-width: fit-content;
max-height: 10%;
position: absolute;
bottom: 0;
left: 0;
right: inherit;
display: inline-block;
white-space : normal;
background-color: white;
border-radius: 5px;
border: solid rgb(130, 130, 165);
-webkit-box-shadow: 0px 6px 0px rgb(130, 130, 165);
-moz-box-shadow: 0px 6px 0px rgb(130, 130, 165);
box-shadow: 0px 6px 0px rgb(130, 130, 165);
}
/* Button to return to previous scene */
#btn-next-scene {
font-family: 'Roboto', sans-serif;
font-size: 17px;
max-width: fit-content;
max-height: 10%;
display: inline-block;
position: absolute;
bottom: 0;
right: 0;
background-color: white;
border-radius: 5px;
border: solid rgb(130, 130, 165);
-webkit-box-shadow: 0px 6px 0px rgb(130, 130, 165);
-moz-box-shadow: 0px 6px 0px rgb(130, 130, 165);
box-shadow: 0px 6px 0px rgb(130, 130, 165);
}
#btn-next-scene:active, #btn-prev-scene:active, #op_button:active, #no-alg:active, #no-alg2:active, #watch-scenes:active {
background-color:rgb(187, 187, 216);
transform: scale(1.03);
}
#btn-next-scene:disabled, #btn-prev-scene:disabled {
color: gray;
background-color: rgb(230, 230, 230);
}
.timing {
background-color: white;
color: black;
height: 25px;
text-align: center;
width: 50px;
word-wrap: break-word;
padding-top: 3px;
border: solid rgb(245, 245, 255);
}