-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule-styles.css
124 lines (97 loc) · 1.67 KB
/
schedule-styles.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
/*copied from styles.css*/
/*Typography*/
.container {
margin-left:auto;
width:100%;
margin-right:auto;
display:block;
overflow:hidden;
}
.column {
width:48.5%;
padding-top:0em;
}
.expand-toggle {
border: 1px solid #444444;
margin-top:20px;
padding-left:20px;
border-radius:10px 10px 0px 0px;
padding-right:20px;
padding-top:20px;
padding-bottom:20px;
overflow:hidden;
}
.expand-toggle p {
margin:0px;
}
.expand-toggle h1 {
margin-bottom:5px;
width:50%;
padding-top:20px;
padding-bottom:20px;
}
.nighttime {
color: #fff;
background-color: #115166;
}
/*Controll the arrows*/
.arrow {
float:right;
content: ⟱
}
.round-bottom {
border-radius:10px 10px 10px 10px;
}
.expand-content {
border: 1px solid #444444;
border-top:0px;
padding-right:2em;
display:none;
border-radius:0px 0px 10px 10px;
}
.expand-content.active {
display:block;
}
.expand-content ul {
margin-top:0px;
padding-top:0.5em;
padding-bottom:0.5em;
padding-left: 1em;
list-style-type:none;
line-height:150%;
}
.expand-content li {
padding-left: 1.5em;
text-indent: -1.5em;
}
.left {
float:left;
}
.right {
float:right;
}
@media(max-width:720px) {
.left {
float:none;
}
.right {
float:none;
}
.column {
margin-right:auto;
margin-left:auto;
width:100%;
}
}
.boundary {
margin:20px;
margin-top:60px;
border: 1px solid #444444;
width:90%;
margin-left:auto;
margin-right:auto;
}
/*Adjusting margin for lists in the schedule*/
.block ul.schedule-list {
margin-left: 0em;
}