-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbase.css
More file actions
98 lines (86 loc) · 1.48 KB
/
base.css
File metadata and controls
98 lines (86 loc) · 1.48 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
@font-face {
font-family: 'violet';
src: url('./fonts/VioletSans-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
*, *:before, *:after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
width: 100%;
margin: 0;
}
body {
background: blue;
color: white;
font-family: violet;
padding: 20px;
width: 100%;
margin: 0;
word-break: break-word;
}
h1, h2, h3, h4, h5, p, ul, li, blockquote {
margin: 0;
}
a:focus, button:focus {
outline: 0;
}
a {
color: inherit;
text-decoration: none;
display: inline-block;
border-bottom: 3px solid black;
line-height: 1em;
}
a.bold {
font-weight: bold;
}
a.inline {
color: inherit;
text-decoration: none;
display: inline-block !important;
margin-bottom: 0 !important;
}
a.fullwidth {
display: block !important;
font-size: 1.525em;
}
.purple {
color: rgb(181, 0, 255) !important;
}
body.home.syllabi {
background: sienna;
color: white !important;
}
body.home.syllabi h5 {
font-size: 1.75em;
margin-bottom: 6px;
margin-top: 62px;
}
body.home.syllabi h6 {
font-size: 1.25em;
margin-bottom: 6px;
margin-top: 62px;
}
body.home.syllabi p {
margin-bottom: 18px;
line-height: 1.75em;
}
body.home.syllabi ul:last-of-type {
margin-bottom: 62px;
}
body.home.syllabi ul li {
margin-bottom: 12px;
display: block;
line-height: 1.25em;
max-width: 680px;
}
body.home.syllabi ul li a {
display: block;
}
body.home.syllabi a:hover {
color: tomato;
border-color: tomato;
}