-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
173 lines (158 loc) · 3.11 KB
/
main.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
html{
height: 100%;
background: linear-gradient(to top right, cyan, pink 60%) fixed;
}
body{
margin: 0;
/* height: 100%; */
background-repeat: no-repeat;
background-attachment: fixed;
/* overflow: hidden; */
}
#timetableA, #timetableB {
border-radius: 10px;
border-style: hidden; /*to remove outer boarders*/
overflow: hidden; /*remove overflow (pointy edge) from last table entry*/
height: 100%;
}
#timetableA td, #timetableB td {
border: 1px solid black;
}
#timetable th{
height: 5%;
}
.lesson{
background: rgb(90, 209, 90);
}
/*vertically align text of td with class "rowInfo"*/
.rowInfo{
height: 100px;
line-height: 100px;
text-align: center;
}
/*align "buttons" to the right*/
.buttons{
float: right;
}
#checkboxtable th:first-child{
border-left: 1px solid #DBDBDB;
}
#checkboxtable th:last-child{
border-right: 1px solid #DBDBDB;
}
#checkboxtable th{
color: white;
background-color: #3488CE;
}
#checkboxtable td{
border-left: 1px solid #DBDBDB;
border-right: 1px solid #DBDBDB;
}
#checkboxtable tr:last-child td{
border-bottom: 1px solid #DBDBDB;
}
#checkboxtable tr td{
border-bottom: 1px solid #DBDBDB;
}
/* #emptyField{
background: rgb(55, 81, 93);
} */
#loading{
margin-left: auto;
margin-right: auto;
position: relative;
width: 100%;
height: 100%;
/* background: linear-gradient(to top right, cyan, pink 60%); */
background: #42BCCC;
top: 0;
left: 0;
z-index: 99;
}
/*Pure CSS Loader*/
.lds-default {
/*center loader*/
display: inline-block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
}
.lds-default div {
position: absolute;
width: 6px;
height: 6px;
background: #fff;
border-radius: 50%;
animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
animation-delay: 0s;
top: 37px;
left: 66px;
}
.lds-default div:nth-child(2) {
animation-delay: -0.1s;
top: 22px;
left: 62px;
}
.lds-default div:nth-child(3) {
animation-delay: -0.2s;
top: 11px;
left: 52px;
}
.lds-default div:nth-child(4) {
animation-delay: -0.3s;
top: 7px;
left: 37px;
}
.lds-default div:nth-child(5) {
animation-delay: -0.4s;
top: 11px;
left: 22px;
}
.lds-default div:nth-child(6) {
animation-delay: -0.5s;
top: 22px;
left: 11px;
}
.lds-default div:nth-child(7) {
animation-delay: -0.6s;
top: 37px;
left: 7px;
}
.lds-default div:nth-child(8) {
animation-delay: -0.7s;
top: 52px;
left: 11px;
}
.lds-default div:nth-child(9) {
animation-delay: -0.8s;
top: 62px;
left: 22px;
}
.lds-default div:nth-child(10) {
animation-delay: -0.9s;
top: 66px;
left: 37px;
}
.lds-default div:nth-child(11) {
animation-delay: -1s;
top: 62px;
left: 52px;
}
.lds-default div:nth-child(12) {
animation-delay: -1.1s;
top: 52px;
left: 62px;
}
@keyframes lds-default {
0%, 20%, 80%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}