-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscheduleStyles.css
More file actions
131 lines (110 loc) · 1.93 KB
/
scheduleStyles.css
File metadata and controls
131 lines (110 loc) · 1.93 KB
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
body {
background-color:#e9ebf5;
margin: 0;
font-family: Montserrat, sans-serif;
color: #1B2522;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #1B2522;
padding: .75rem 1rem;
}
.nav-top {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1;
animation: nav-enter var(--nav-duration) var(--nav-delay) backwards;
}
.logo {
width: 30px;
}
.nav-list {
margin: 0;
padding: 0;
display: flex;
list-style-type: none;
}
.nav-list a {
text-decoration: none;
margin-left: 1rem;
color: white;
transition: color 100ms;
}
.nav-list a:hover {
color: #CCC;
}
.btn {
background-color: hsl(261, 20%, 50%);
color: white;
border-radius: 10000px;
padding: .25em 1em;
text-decoration: none;
border: none;
cursor: pointer;
font-size: 1.5rem;
text-align: center;
}
.btn:hover,
.btn:focus {
background-color: hsl(261, 20%, 37%);
}
.wrapper {
margin-top: 1rem;
text-align: center;
}
H1 {
text-align: center;
margin-top: 4rem;
color: #1B2522;
}
.myTimetable {
width: 90%;
border-collapse: collapse;
margin-left: auto;
margin-right: auto;
table-layout: fixed;
}
.myTimetable THEAD{
color: #1B2522;
}
.myTimetable TBODY {
background-color: #292938;
}
.myTimetable TD {
border: 1px solid #CCC;
padding: 6px;
text-align: center;
}
.myTimetable TBODY TR TD:first-child {
color: #CCC;
background-color: #463b57;
font-weight: bold;
}
.break, .lunch {
color: #CCC;
background-color: #6b5c81 !important;
font-style: italic;
}
.subject {
color: #CCC;
font-size: 12pt;
margin-bottom:4px;
}
.room {
color: #CCC;
font-size: 10pt;
font-style: italic;
}
#alertLunch, #alertDinner {
background-color: #FFF;
color: #BBB;
}
@keyframes nav-enter {
from {
transform: translateY(-100%);
}
}