-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstylesheet.css
More file actions
202 lines (184 loc) · 3.51 KB
/
stylesheet.css
File metadata and controls
202 lines (184 loc) · 3.51 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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat&display=swap');
body{
height: 100%;
background-color: #1a1c23;
font-size: 15px;
line-height: 1.8;
margin: 0;
box-sizing: border-box;
font-family: "Montserrat", cursive, sans-serif;
/* overflow: hidden; NEVER DO overflow hidden on the body! */
}
/* prevent transitions onload (to fix jumpy padding for <a> transition) */
.preload {
transition: none !important;
}
/*Buttons*/
.btn{
margin:30px 0px;
display: flex;
align-items: center;
justify-content: center;
}
.button{
display: inline;
/*padding: 20px 40px;*/
text-align: center;
/*
color:#fff;
font-weight: 400;
background-color: #2971e6;
font-family: "Montserrat", cursive, sans-serif;
*/
}
/*
.button{
border-radius:
}
*/
/* Header Styling */
.header {
display:block;
color:white;
text-align: center;
font-weight: 100;
}
.header h1{
display: inline-block;
font-size: 40px;
margin: 0px 20px;
}
.header h2{
font-size: 20px;
margin:0px;
}
.left, .right{
display: inline;
font-size: 30px;
cursor: pointer;
background-color: #949494;
border-radius: 50%;
padding: 5px 15px;
}
.left:hover, .right:hover{
background-color: #aaa;
}
/* navigation */
/* note: using class isn't recommended if you only have one
nav-links assuming you're not going to reuse it
Also, navbars are best used with position fixed or sticky, not z-index: 1
If you have to use flex, wrap it in another div that is position: fixed */
.nav-wrapper {
z-index: 1;
position: sticky;
top: 0;
left: 0;
right: 0;
}
.nav-links {
margin: 0;
display: flex;
background-color: #0055b8;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.nav-links img {
margin: 10px;
}
.nav-links ul{
list-style: none;
margin: 10px;
}
.nav-links ul li{
display:inline-block;
padding: 10px 5px;
}
.nav-links ul li a{
text-decoration: none;
text-transform: uppercase;
padding: 10px 50px;
/* black and blue contrast sucks. use white instead */
color: #fff;
background-color: #0068d4;
font-weight: 500;
transition: 0.3s;
border-radius: 30px;
}
.nav-links ul li a:hover{
color: #333;
background-color: #fff;
}
/*table */
table {
margin: 30px auto;
border-spacing: 0;
border-collapse: collapse;
width: 80%;
color: #fff;
}
th, .dark{
color: #949494;
}
th, td {
text-align: left;
vertical-align: top;
height: 80px;
width: 14.2857%;
/*border: .4px solid #426075; --> it looks better without the border*/
font-weight: 200;
padding: 5px 5px;
}
.today{
padding: 6px 12px;
border-radius: 50%;
background-color: #323f56;
}
/* scroll bar */
body::-webkit-scrollbar {
width: 5px;
}
body::-webkit-scrollbar-track {
border-radius: 1px;
}
body::-webkit-scrollbar-thumb {
background-color: #116aa6;
border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
background-color: #116aa6;
}
/*Day-specific schedule*/
.col-1{
display:block;
}
.col-2{
display: block;
position: relative;
}
.col-2-1{
z-index:-1;
width: 33%;
margin: 0 auto;
box-sizing: border-box;
background-color: #2b497a;
color: #fff;
text-align:left;
padding: 0px 10px;
}
h1{
display:block;
margin: 0;
font-size:30px;
}
.day{
letter-spacing: 1rem;
font-size: 170px;
padding: 7px;
line-height:1;
}
/*
ACC:#a3b317
MAGD:#00b3a9
CSI: #a64cb2
*/