-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
174 lines (147 loc) · 2.8 KB
/
styles.css
File metadata and controls
174 lines (147 loc) · 2.8 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
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
/* Pretty sure we don't need this with css reset */
* {
margin: 0;
padding: 0;
}
html {
position: relative;
height: 100%;
}
body {
height: 100%;
font-family: "Roboto", Courier New, Courier, monospace;
color: #473010;
font-size: 1.1em;
background-color: #f7ca59;
font-weight: normal;
}
.page {
height: auto;
min-height: 100%;
margin: 0 auto -2em; /* for the footer */
background-image: url("./images/honeycomb_light.png");
background-repeat: repeat;
background-size: 500px;
background-position: center;
}
.content {
padding: 2em 0 4em; /* leaves room for footer */
width: 90%;
margin: 0 auto;
max-width: 650px;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.25em;
font-family: "Roboto Slab", Courier New, Courier, monospace;
font-weight: normal;
}
h1, h2, h3, {text-align: center; padding: 0 0 .25em;}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.1em;
padding: 0 0 .25em;
}
p {
line-height: 1.25em;
padding: .25em 0 .5em;
font-weight: lighter;
}
.tagline {
line-height: 1.25em;
font-family: "Roboto Slab", Courier New, Courier, monospace;
font-weight: normal;
padding: 0 0 .25em;
font-size: 1.2em;
}
blockquote {
width: 90%;
margin: 0 auto;
padding: .25em 0;
font-style: italic;
font-size: .95em;
}
ul {
list-style-type: disc;
}
li {
line-height: 1.25em;
padding: .25em 0 .5em;
font-weight: lighter;
}
a {
text-decoration: none;
}
.link {
color: #753c00;
font-weight: bold;
}
.link:hover {
color: #845700;
}
.hivenote, .hivenote2, .note {
position: relative;
font-family: "Roboto Slab", Courier New, Courier, monospace;
text-align: center;
padding: .25em;
z-index: 1;
line-height: 1.5em;
} /* Maybe this could pop up on the screen and then move up/down out of the way? */
.note {
width: 80%;
padding: .5em;
margin: .25em auto;
background-color: #efb528;
}
.hivenote {
margin: -.75em auto -1.5em;
width: 95%;
}
.hivenote2 {
margin: -1.5em auto -.75em;
width: 95%;
}
.image {
max-width: 100%;
}
.banner, .intro, .dddemocracy {
margin: 0 auto;
}
.inside { /* for the in-the-hive bee simulations */
display: block;
padding: 40px;
margin: 1.5em 0 1.5em;
/*overflow: none;
background-image: url("./images/hexwindow.png");*/
}
.inside img {
position: absolute;
margin:-50px -15px 0;
width: 100%;
max-width: 600px;
pointer-events:none;
z-index: 0;
}
.playable { /* this is the "explorable" stuff */
border: none;
display: block;
width: 500px;
max-width: 100%;
height: 500px;
overflow: hidden;
margin: 0 auto;
background-color: transparent;
z-index: -1;
}
#footer {
width: 100%;
margin: -2em auto 0; /* places footer into content */
height: 1em;
padding: .5em 0;
text-align: center;
color: #ffcd51;
background-color: #ce9102;
overflow: hidden;
font-weight: lighter;
}