-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgalapagos.css
More file actions
123 lines (101 loc) · 2.16 KB
/
galapagos.css
File metadata and controls
123 lines (101 loc) · 2.16 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
119
120
121
122
123
/*
* Global styles
*/
@import url('https://fonts.googleapis.com/css?family=Basic');
@import url('https://fontlibrary.org/face/hk-grotesk');
html, body {
font-family: 'HKGroteskRegular', sans-serif;
font-weight: normal;
}
h1.title,h1,h2,h3,h4,h5,h6 {
font-family: 'Basic', sans-serif;
text-shadow: 1px 2px 2px #b0b0b0;
}
/*
* Top header
*/
header nav {
background: #66023c;
border-bottom: 1px solid rgba(0,0,0,0.3);
-moz-box-shadow: 0 1px 10px 0 #777;
-webkit-box-shadow: 0 1px 10px 0 #777;
box-shadow: 0 1px 10px 0 #777;
height: 3em;
margin-bottom: 1em;
padding: 0.5em;
}
header nav h3 { color: white; font-weight: 300; }
/*
* Menu bar
*/
ul[role=menubar] > li {
display: inline-block;
padding: 0.5em;
}
ul[role=menubar] a { color: white; }
/*
* Main section
*/
section#content {
margin-bottom: 2em;
padding: 1em;
}
/* Add margin between main content hero boxes since they will be on top
* of one another in some situations */
.hero > .col {
margin-bottom: 2em;
}
/* Add margin between download / doc buttons since they will be on top
* of one another in some situations */
.hero > .col#second a.button {
margin-bottom: 1em;
display: inline-flex;
flex-direction: column;
padding: 14px 2em;
}
.hero > .col > .inner {
background: #ddd;
border-radius: 1em;
padding: 1em 2em;
}
section#content header .title {
text-decoration: underline;
}
section#content > section, section#content > div {
padding: 1em;
}
section#content footer {
text-align: center;
}
/*
* Very last footer
*/
body > footer {
background: white;
border-top: 1px solid #777777;
-moz-box-shadow: 0 0px 10px 0 #777;
-webkit-box-shadow: 0 0px 10px 0 #777;
box-shadow: 0 0px 10px 0 #777;
height: 3em;
line-height: 2em;
margin: 0;
padding: 0.5em 0.5em;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
body > footer > .row {
flex-wrap: nowrap;
}
body > footer > .row > .col-6#left {
width: auto;
max-width: none;
flex-basis: auto;
}
body > footer > .row > .col-6#right {
width: auto;
max-width: none;
flex-basis: auto;
text-align: right;
}