-
Notifications
You must be signed in to change notification settings - Fork 85
/
styles.css
77 lines (66 loc) · 1.02 KB
/
styles.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
pre {
font-family: 'Source Code Pro', 'Courier New', monospace;
font-size: 24px;
line-height: 24px;
padding: 10px 0 10px 60px;
letter-spacing: -1px;
margin-bottom: 8px;
width: 106%;
left: -60px;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/*overflow: hidden;*/
}
/* Whole document: */
body{
font-family: Helvetica;
font-size: 16pt;
}
/* Headers */
h1{
font-size: 28pt;
}
h2{
font-size: 24pt;
}
h3{
font-size: 20pt;
}
.emphasized {
font-size: 1.2em;
}
.small {
font-size: 0.8em;
}
strong {
font-weight: bold;
color: black;
}
/*
slides > slide {
padding: 10px 60px;
}
*/
slides > slide > hgroup + article {
margin-top: 5px;
}
.left_col {
float:left;
width:48%;
}
.right_col {
float:right;
width:48%;
}
slides>slide.title-slide {
background-image: url('images/Intro_to_R.png');
background-size: 100% 100%;
}
.codesmall pre {
font-size: 16px;
}
.codeexample pre{
background-color: lightgreen;
}