-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
154 lines (129 loc) · 3.04 KB
/
styles.css
File metadata and controls
154 lines (129 loc) · 3.04 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
body {
font-family: "Computer Modern Serif";
font-size: 16pt;
margin: 100px auto;
width: 960px;
}
h1 {
text-align: center;
letter-spacing: 0.25em;
}
.subtitle {
text-align: center;
font-style: italic;
letter-spacing: 0.15em;
}
blockquote {
margin: 0;
}
blockquote footer {
text-align: right;
}
dt {
float: left;
clear: left;
width: 13%;
}
dd {
width: 80%;
float: right;
}
.clearfix {
clear: both;
}
h2 {
border-top: 2px black solid;
border-bottom: 1px black solid;
text-transform: uppercase;
font-size: 16pt;
letter-spacing: 0.25em;
}
h2 small {
font-size: medium;
font-style: italic;
text-transform: none;
letter-spacing: 0;
font-weight: normal;
}
blockquote {
font-style: italic;
}
blockquote footer {
text-transform: uppercase;
font-style: normal;
}
blockquote footer a {
text-decoration: none;
}
.schedule {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 200;
width: 800px;
margin: auto;
border-collapse: collapse;
}
th {
background-color: black;
color: white;
font-weight: 200;
border: 2px lightgray solid;
}
td {
border: 1px lightgray solid;
}
.week {
text-transform: uppercase;
text-align: center;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.odd_week {
background-color: lavender;
}
/* ----------------------------------------------------------------- */
/* The scary stuff below is just to get the right font loaded up. */
/* Don't worry about it. Write your CSS rules above the dotted line. */
/* I started them off for you with a rule about the body tag. */
@font-face {
font-family: 'Computer Modern Serif';
src: url('fonts/cmunrm.eot');
src: url('fonts/cmunrm.eot?#iefix') format('embedded-opentype'),
url('fonts/cmunrm.woff') format('woff'),
url('fonts/cmunrm.ttf') format('truetype'),
url('fonts/cmunrm.svg#cmunrm') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('fonts/cmunbx.eot');
src: url('fonts/cmunbx.eot?#iefix') format('embedded-opentype'),
url('fonts/cmunbx.woff') format('woff'),
url('fonts/cmunbx.ttf') format('truetype'),
url('fonts/cmunbx.svg#cmunbx') format('svg');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('fonts/cmunti.eot');
src: url('fonts/cmunti.eot?#iefix') format('embedded-opentype'),
url('fonts/cmunti.woff') format('woff'),
url('fonts/cmunti.ttf') format('truetype'),
url('fonts/cmunti.svg#cmunti') format('svg');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('fonts/cmunbi.eot');
src: url('fonts/cmunbi.eot?#iefix') format('embedded-opentype'),
url('fonts/cmunbi.woff') format('woff'),
url('fonts/cmunbi.ttf') format('truetype'),
url('fonts/cmunbi.svg#cmunbi') format('svg');
font-weight: bold;
font-style: italic;
}