-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
76 lines (64 loc) · 1.16 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
.page {
margin-bottom: 2em;
}
.timetable-row {
display: flex;
flex-direction: column;
}
.timetable-cell {
display: flex;
flex-direction: row;
float: left;
}
.timetable-cell-index {
border: 1px solid black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.lesson {
flex: 1 1 0;
border: 1px solid black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 10px 0;
}
.day-of-week {
text-align: center;
font-family: sans-serif;
}
nav {
position: fixed;
bottom: 0;
display: flex;
flex-direction: row;
width: calc(100vw - 16px);
background-color: white;
height: 2em;
}
nav a {
border-top: 2px solid transparent;
flex: 1 1 0;
text-align: center;
color: #aaa;
line-height: calc(2em - 4px);
text-decoration: none;
}
nav a.active {
border-top: 2px solid #fff034;
color: #000;
}
/* SUBSTITUTIONS */
td {
border: 1px solid black;
text-align: center;
}
table {
width: 100%;
border-collapse: collapse;
}