forked from theaquarium/nshs-schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
71 lines (57 loc) · 959 Bytes
/
index.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
html,
body {
width: 100%;
margin: 0;
font-family: 'Inter', sans-serif;
background: #faf7f7;
position: relative;
}
footer.footer {
background: #ebe8e8;
}
.columns.main {
margin: 0 5%;
}
#canvas {
display: none;
}
#canvas-clone {
width: 100%;
border: 3px dashed #888;
}
@media screen and (min-width: 769px), print {
.canvas-column {
position: sticky;
top: 1rem;
}
}
.class-card > .card-content {
display: block;
}
.class-card .closed-icon {
display: none;
}
.class-card .open-icon {
display: inline-flex;
}
.class-card.is-closed > .card-content {
display: none;
}
.class-card.is-closed .closed-icon {
display: inline-flex;
}
.class-card.is-closed .open-icon {
display: none;
}
.class-card .card-header {
cursor: pointer;
}
.class-card.dummy {
display: none;
}
.divider {
width: 90%;
background: #ccc;
height: 1px;
margin: 1.5rem 5%;
}