-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunmc-rmarkdown-html-template.css
181 lines (158 loc) · 3.11 KB
/
unmc-rmarkdown-html-template.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
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
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
@import url(https://fonts.googleapis.com/css?family=Roboto);
body{
margin: 0 auto;
background-color:white;
/* --------- FONT FAMILY --------
following are some optional font families. Usually a family
is safer to choose than a specific font,
which may not be on the users computer */
font-family: Roboto, Arial, serif;
/ font-family:Georgia, Palatino, serif;
/ font-family:"Book Antiqua", Palatino, serif;
/ font-family:Arial, Helvetica, sans-serif;
/ font-family:Tahoma, Verdana, Geneva, sans-serif;
/ font-family:Courier, monospace;
/ font-family:"Times New Roman", Times, serif;
/* -------------- COLOR OPTIONS ------------
following are additional color options for base font
you could uncomment another one to easily change the base color
or add one to a specific element style below */
color: #333333; /* dark gray not black */
/ color: #000000; /* black */
/ color: #666666; /* medium gray black */
/ color: #E3E3E3; /* very light gray */
/ color: white;
line-height: 1;
/ max-width: 960px;
/ max-width: 1000px;
padding: 30px;
font-size: 18px;
}
p {
/ font-size: 22px;
line-height: 150%;
/ max-width: 540px;
max-width: 960px;
font-weight: 400;
color: #333333
}
h1.title {
color: #AD122A; /* UNMC Red rgb(173 18 42) */
font-size:250%;
margin-bottom: 0px;
}
h3.subtitle{
color: #666666;
font-size:200%;
margin-top: 0px;
}
h4.author{
font-size: 125%;
margin-bottom: 0px;
}
h4.date{
margin-top: 0px;
}
h1, h2, h3, h4 {
/ color: #111111;
font-weight: 400;
font-family: 'Roboto Condensed';
}
h2, h3, h4, h5, p {
margin-bottom: 25px;
padding: 0;
}
h1 {
margin-bottom: 10px;
font-size:200%;
padding: 0px;
/ font-variant:small-caps;
}
h2 {
font-size:150%
/ margin: 24px 0 6px;
}
h3 {
font-size:120%
}
h4 {
font-size:100%
font-variant:small-caps;
}
h5 {
font-size:80%
font-weight: 100;
}
h6 {
font-size:80%
font-weight: 100;
color:red;
font-variant:small-caps;
}
a {
color: grey;
margin: 0;
padding: 0;
vertical-align: baseline;
}
a:hover {
text-decoration: blink;
color: green;
}
a:visited {
color: black;
}
ul, ol {
padding: 0;
margin: 0px 0px 0px 50px;
}
ul {
list-style-type: square;
list-style-position: inside;
}
li {
line-height:150%
}
li ul, li ul {
margin-left: 24px;
}
pre {
padding: 0px 24px;
max-width: 800px;
white-space: pre-wrap;
}
code {
font-family: Consolas, Monaco, Andale Mono, monospace;
line-height: 1.5;
font-size: 13px;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
border-left:.5em solid #eee;
padding: 0 1em;
margin-left:0;
max-width: 476px;
}
blockquote cite {
/ font-size:14px;
line-height:20px;
color:#bfbfbf;
}
blockquote cite:before {
content: '\2014 \00A0';
}
blockquote p {
color: #666;
max-width: 460px;
}
hr {
/ width: 540px;
text-align: left;
margin: 0 auto 0 0;
color: #999;
}