-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollectionstyle.css
More file actions
256 lines (209 loc) · 4.49 KB
/
collectionstyle.css
File metadata and controls
256 lines (209 loc) · 4.49 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
html,body,button {font-size: 10pt; font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace;}
h1,h2,h3,h4,h5,h6 {font-family: Consolas,"Helvetica", "sans-serif"; color:#c95;}
h3 {margin-left: 2ex;}
h4 {margin: 3ex 0ex 1ex 6ex;}
a {text-decoration: none; color:#c95; font-weight: bold;}
a:hover {text-decoration: underline;}
hr {
margin: 20px 0px 20px;
border: 2px solid #c95;
border-radius: 2px;
}
body {
margin: 0px;
width: 600px;
max-width: 100vw;
background-color:#765;
}
main {
padding: 0px 0px 10px 10px;
}
/* Titles & Header */
nav {
padding:10px;
position:fixed;
left: 0px;
top: 0px;
background-image: url("images/carabiner-header-image.png");
width: 580px;
}
#page-nav {
margin: 10px 0px 0px;
text-align: center;
}
#titleimg {
max-width: 800px;
width: 100vw;
}
#carabiner-page-header, #index-page-header {
background-image: url("images/carabiner-header-image.png");
width: 600px;
height: 150px;
max-width: 600px;
display: flex;
align-items: center;
justify-content: center;
}
#carabiner-page-title, #index-page-title {
font-family: Consolas;
font-size: large;
text-align: center;
padding-top: 20px;
}
#index-page-header {
width: 800px;
max-width: 800px;
background-size: cover;
height: 200px;
}
h3.criterion {
margin: 4ex 2ex 0ex;
}
p.about-page, ul.timeline, div.thought p {
margin:1ex 2ex 1ex 6ex;
}
div.term p {
margin:1ex 4ex 3ex 4ex;
}
div.example p {
margin:1ex 6ex 3ex 6ex;
}
ul.timeline {
list-style-type: none;
margin-left: 14ex;
text-indent: -7ex;
}
/* Tables */
table {
border-spacing: 0;
border: 0px solid #654;
background-color:#fed
}
th, td {
text-align: center;
padding: 8px;
}
tr:nth-child(even) {
background-color: #f2f2f2
}
.indextable {
max-width: 780px;
width: 100vw;
}
td.description {
text-align: left;
width: 400px;
}
.carabiner-info, .terminology-table {
width: 580px;
max-width: 80vw;
}
.carabiner-info td {
text-align: right;
}
.carabiner-info td:nth-child(even), .carabiner-info th:nth-child(even) {
text-align: left;
padding-left: 2ex;
}
.carabiner-info-column {
max-width: 100px;
}
.profile-table td:nth-child(odd), .profile-table th:nth-child(odd) {
text-align: left;
padding-left: 2ex;
}
.shape-table td:nth-child(4), .shape-table th:nth-child(4)
{
text-align: left;
}
/* Other */
div.carabiner-photos { /* I'm not proud of this */
margin-bottom: -3px;
}
.carabiner-flex-grid {
display: flex;
flex-wrap: wrap;
max-width: 650px;
}
img.carabiner-photo {
width: 290px;
}
.carabiner-photo-caption {
margin-bottom: 0px;
text-align: center;
}
button {
text-align: center;
text-decoration: none;
display: inline-block;
font-weight: bold;
}
.align-left {
text-align:left;
}
.align-right {
text-align:right;
}
.wide-col {
width: 400px
}
div.flex-col {
display: flex;
flex-direction: column;
align-content: space-around;
justify-content: space-around;
}
.img-box {
display: flex;
padding: 1ex 2ex 2ex;
flex-direction: row;
align-content: space-around;
justify-content: space-around;
}
img.other-thoughts {
max-width: 400px;
}
.box-border {
border:2px solid #c95;
}
/* Tooltips */
.tooltip { /* Tooltip container */
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
.tooltip .tooltiptext { /* Tooltip text */
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
/* Position the tooltip text */
position: absolute;
z-index: 1;
top: -5px;
left: 105%;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
}
/* Media Screen Sizing */
@media (min-width:0px) {
}
@media (min-width:320px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
}
@media (min-width:480px) { /* smartphones, Android phones, landscape iPhone */
}
@media (min-width:600px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
}
@media (min-width:720px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
}
@media (min-width:801px) { /* tablet, landscape iPad, lo-res laptops ands desktops */
}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */
}
@media (min-width:1281px) { /* hi-res laptops and desktops */
}