This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
192 lines (170 loc) · 3.52 KB
/
style.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
181
182
183
184
185
186
187
188
189
190
191
192
body {
font-family: "helvetica neue","helvetica","lucida grande",arial,sans-serif;
color: #fff;
background-color: #65aaba;
-webkit-font-smoothing: antialiased;
line-height: 1.4;
font-size: 18px;
}
body.fullScreen {
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#preso a,
#preso a:visited,
#preso a:link {
color: #6D4927;
font-weight: bold;
text-decoration: none;
border-bottom: 2px solid #6D4927;
}
#preso .highlight {
color: #8b0000;
}
/* Style for individual slides */
#preso .features img {
display: inline-block;
padding: 0.1em;
margin: 0;
}
#preso .family ul li{
display: inline-block;
float: left;
width: 50%;
}
#preso .googlemap3 button {
margin: 0;
}
#preso .light-on-dark h1,
#preso .light-on-dark h3 {
position: absolute;
color: #fff;
background-color: #000;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
display: inline-block;
padding: 0.1em 0.5em;
opacity: 0.7;
filter:alpha(opacity=70);
-moz-opacity:0.7;
-khtml-opacity: 0.7;
left: 2em;
}
#preso .light-on-dark h3 {
position: relative;
clear: both;
top: 5em;
left: 0;
}
#preso .popdevelop h1 {
top: 2em;
left: 50%;
}
#preso .thanks li {
font-size:22px;
}
#preso .gis img {
float: right;
}
/* Code font*/
#preso code,
#preso pre {
font-family: Consolas,
"Andale Mono",
"Lucida Console",
"Lucida Sans Typewriter",
"DejaVu Sans Mono",
"Bitstream Vera Sans Mono",
"Liberation Mono",
"Nimbus Mono L",
Monaco,
"Courier New",
Courier,
monospace;
color: #000;
padding: 0.5em;
font-size: 18px;
background-color: transparent;
}
#preso code {
display: block;
border: 1px dashed #65aaba;
background-color: #eee;
}
/* Title sizes */
h1 { font-size: 48px; color: #31626D;}
h2 { font-size: 36px; color: #A4EEFF;}
h3 { font-size: 24px; }
/* Slide style */
#preso, .slide {
background-color: transparent;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
height: 768px;
}
#preso, .slide {
border: none !important;
margin-top: -30px;
}
/* Google maps */
#preso img,
#preso .gmaps {
margin: 1em auto;
box-shadow: #666 0 3px 5px;
-webkit-box-shadow: #666 0 3px 5px;
-moz-box-shadow: #666 0 3px 5px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
background-color: #fff;
padding: 15px;
}
.gmaps {
width: 640px;
height: 410px;
}
#preso .gmaps > div {
height: 410px;
box-shadow: none;
}
#preso .gmaps > div img {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
background-color: transparent;
}
/* Default widths */
#preso h2,
#preso ul,
#preso code {
display: block;
width: 580px;
margin: 0 auto;
text-align: left;
}
#preso ul {
margin: 0 auto;
text-align: left;
}
#preso ul > li {
font-size: 28px;
margin-bottom: 0.2em;
align: left;
}
#preso ul > li:before { content: "» "; }
#preso ul > li > ul > li {
margin-left: 1em;
margin-bottom: 0.2em;
font-size: 0.8em;
}
#preso ul > li > ul > li:before { content: "- "; }