-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
57 lines (51 loc) · 1.13 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
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: local('Open Sans'), url(/fonts/OpenSans-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
src: local('Open Sans Bold'), url(/fonts/OpenSans-Bold.ttf) format('truetype');
}
@font-face {
font-family: 'Open Sans';
font-style: italic;
font-weight: 400;
src: local('Open Sans Italic'), url(/fonts/OpenSans-Italic.ttf) format('truetype');
}
@font-face {
font-family: 'Open Sans';
font-style: italic;
font-weight: 700;
src: local('Open Sans Bold Italic'), url(/fonts/OpenSans-BoldItalic.ttf) format('truetype');
}
body {
background-color: #002941;
color: black;
font: 16px/1.5 "Open Sans", sans-serif;
}
div.container {
background-color: white;
}
@media (min-width: 768px) {
div.container {
box-shadow: 0 0 70px 40px rgba(255, 255, 255, 0.1);
padding: 0 2em 1em;
}
}
img.saltgrass {
float: right;
margin: 20px;
margin-right: 0;
}
/* saltgrass after breadcrumbs */
ul + img.saltgrass {
margin-top: 0;
}
.breadcrumb {
background-color: #00004008;
margin-top: 1em;
}