-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer_style.css
152 lines (141 loc) · 3.36 KB
/
footer_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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: normal;
src: url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap') format('truetype');
}
/* Footer style */
#footer {
font-family: 'Roboto', sans-serif;
background-color: lavender;
height: 9%;
width: 100%;
float: left;
padding: 0px;
overflow: hidden;
clear: both;
color: white;
}
/* Container for buttons */
.container {
margin-top: 5px;
text-align: center;
width: 100%;
}
/* Button style */
.btn{
border: 1px solid rgb(130, 130, 165);
background-color: white;
background: none;
cursor: pointer;
font-size: 20px;
margin: 10px;
transition: 0.8s;
padding: 10px 20px;
position: relative;
overflow: hidden;
outline: none;
color: #333;
}
/* Buttons 4 types (depends on animation) */
.btn-ref,
.btn1,
.btn2,
.btn3,
.btn4,
.btn5 {
outline:none;
transition: color 0.2s linear;
text-decoration: none;
color: #333;
}
/* Button to reset scene in operator mode*/
#no-alg {
margin-top: 0px;
outline: none;
float: center;
}
/* Button to reset scene in student mode*/
#no-alg2 {
margin-top: 0px;
outline: none;
float: center;
}
/*Button for student mode to watch all scenes with timings*/
#watch-scenes {
font-family: 'Roboto', sans-serif;
font-size: 17px;
float: left;
margin-top: 0px;
outline: none;
padding-left: 0.77%;
padding-right: 0.77%;
padding-top: 0.7%;
padding-bottom: 0.7%;
max-width: 17.3%;
min-width: 17.3%;
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 exit operator mode */
#op_button {
font-family: 'Roboto', sans-serif;
font-size: 17px;
float: right;
margin-top: 0px;
outline: none;
padding-left: 0.77%;
padding-right: 0.77%;
padding-top: 0.7%;
padding-bottom: 0.7%;
max-width: 17.3%;
min-width: 17.3%;
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);
}
/* Buttons "Сбросить" in operator and student modes */
#no-alg, #no-alg2 {
font-family: 'Roboto', sans-serif;
font-size: 17px;
margin-top: 0px;
padding-left: 0.77%;
padding-right: 0.77%;
font-size: 18px;
max-width: 17.3%;
min-width: 17.3%;
padding-top: 0.7%;
padding-bottom: 0.7%;
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);
}
.small-scene {
height: 100%;
width: 100%;
}
#footer-top-border {
height: 2%;
clear: both;
background-color: lavender;
}
/* Makes it impossible to highlight text and objects */
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
}