-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (105 loc) · 1.99 KB
/
styles.css
File metadata and controls
118 lines (105 loc) · 1.99 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
/*Main properties*/
body
{
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: 100%;
color: rgb(80,80,80);
background-color: white;
font-family: "Gill Sans MT", "Gill Sans", GillSans, sans-serif;
font-size: 16pt;
}
/*Slides*/
div.slide {
z-index: 20;
margin: 0 0 0 0;
padding-top: 10px;
padding-bottom: 0;
padding-left: 20px;
padding-right: 20px;
border-width: 0;
clear: both;
top: 0;
bottom: 0;
left: 0;
right: 0;
line-height: 120%;
background-color: transparent;
background-image:url("img/do_more.png");
background-repeat: no-repeat;
}
div.slide h1 {
padding-left: 0;
padding-right: 20pt;
padding-top: 6pt;
padding-bottom: 24pt;
margin-top: 10pt;
margin-left: 10pt;
margin-right: 60pt;
margin-bottom: 0.5em;
display: block;
font-size: 160%;
line-height: 1.2em;
color: rgb(243,102,51);
background: transparent;
}
/*Title Slide*/
div.slide.titlepage {
text-align: left;
background-image:url("img/title_slide.png");
background-repeat: no-repeat;
color: white;
}
div.slide.titlepage h1 {
padding-top: 20%;
padding-left: 20px;
padding-right: 20pt;
padding-bottom: 6pt;
margin-left: 0;
color: white;
}
/*Source Code*/
pre {
font-size: 80%;
font-weight: bold;
line-height: 110%;
padding-top: 0.2em;
padding-bottom: 0.2em;
padding-left: 1em;
padding-right: 1em;
border-style: none;
border-left-width: thin;
border-top-width: thin;
border-right-width: thin;
border-bottom-width: thin;
/* border-color: #95ABD0; */
color: rgb(40,40,40);
background-color: rgb(240,240,240);
}
/*Comments*/
code > span.co {
color: rgb(0,150,0);
font-style: italic;
}
/*Objects*/
code > span.kw {
color: rgb(0,0,240);
font-weight: bold;
}
/*Conditional*/
code > span.cf {
color: rgb(0,0,240);
font-weight: bold;
}
/*Character*/
code > span.st {
color: rgb(0,79,0);
}
code > span.ot {
color: rgb(50,50,240);
}
/*Arguments*/
code > span.dt {
color: black;
}