-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
132 lines (109 loc) · 3.77 KB
/
Copy pathstyle.css
File metadata and controls
132 lines (109 loc) · 3.77 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
/* Load Computer Modern fonts */
@font-face {
font-family: 'Computer Modern Serif';
src: url('CMU_Fonts/Serif/cmunrm.eot');
src: url('CMU_Fonts/Serif/cmunrm.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Serif/cmunrm.woff') format('woff'),
url('CMU_Fonts/Serif/cmunrm.ttf') format('truetype'),
url('CMU_Fonts/Serif/cmunrm.svg#cmunrm') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('CMU_Fonts/Serif/cmunbx.eot');
src: url('CMU_Fonts/Serif/cmunbx.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Serif/cmunbx.woff') format('woff'),
url('CMU_Fonts/Serif/cmunbx.ttf') format('truetype'),
url('CMU_Fonts/Serif/cmunbx.svg#cmunbx') format('svg');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('CMU_Fonts/Serif/cmunti.eot');
src: url('CMU_Fonts/Serif/cmunti.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Serif/cmunti.woff') format('woff'),
url('CMU_Fonts/Serif/cmunti.ttf') format('truetype'),
url('CMU_Fonts/Serif/cmunti.svg#cmunti') format('svg');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Computer Modern Serif';
src: url('CMU_Fonts/Serif/cmunbi.eot');
src: url('CMU_Fonts/Serif/cmunbi.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Serif/cmunbi.woff') format('woff'),
url('CMU_Fonts/Serif/cmunbi.ttf') format('truetype'),
url('CMU_Fonts/Serif/cmunbi.svg#cmunbi') format('svg');
font-weight: bold;
font-style: italic;
}
@font-face {
font-family: 'Computer Modern Sans';
src: url('CMU_Fonts/Sans/cmunss.eot');
src: url('CMU_Fonts/Sans/cmunss.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Sans/cmunss.woff') format('woff'),
url('CMU_Fonts/Sans/cmunss.ttf') format('truetype'),
url('CMU_Fonts/Sans/cmunss.svg#cmunss') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Computer Modern Sans';
src: url('CMU_Fonts/Sans/cmunsx.eot');
src: url('CMU_Fonts/Sans/cmunsx.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Sans/cmunsx.woff') format('woff'),
url('CMU_Fonts/Sans/cmunsx.ttf') format('truetype'),
url('CMU_Fonts/Sans/cmunsx.svg#cmunsx') format('svg');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'Computer Modern Sans';
src: url('CMU_Fonts/Sans/cmunsi.eot');
src: url('CMU_Fonts/Sans/cmunsi.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Sans/cmunsi.woff') format('woff'),
url('CMU_Fonts/Sans/cmunsi.ttf') format('truetype'),
url('CMU_Fonts/Sans/cmunsi.svg#cmunsi') format('svg');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Computer Modern Sans';
src: url('CMU_Fonts/Sans/cmunso.eot');
src: url('CMU_Fonts/Sans/cmunso.eot?#iefix') format('embedded-opentype'),
url('CMU_Fonts/Sans/cmunso.woff') format('woff'),
url('CMU_Fonts/Sans/cmunso.ttf') format('truetype'),
url('CMU_Fonts/Sans/cmunso.svg#cmunso') format('svg');
font-weight: bold;
font-style: italic;
}
/* Main */
body {
color: #111111 !important;
background-color: #efefef !important;
font-family: 'Computer Modern Sans', sans-serif;
font-size: 1.1em;
line-height: 1.5em;
max-width: 45em;
margin: auto;
padding: 0 2%;
}
h1 {text-align: center;}
h2 {text-align: center;}
h3 {text-align: center;}
img {
max-width: 40%;
display: block;
margin: .75em auto;
}
.center-justified {
text-align: justify;
margin: auto;
max-width: 45em;
}
a:link {color:#111111;} /* unvisited link is black */
a:visited {color:#111111;} /* visited link is black (reverse the color back to black) */
a:hover {color: purple;} /* mouse over link (purple when mouse over)*/
a:active {color: purple;} /* selected link (purple in the split second which you loading the page.)*/