forked from toolness/hackasaurus-parable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-page.css
118 lines (99 loc) · 1.75 KB
/
main-page.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
/* Achievements */
.achievement {
display: none;
position: fixed;
left: 0px;
bottom: 0px;
font-family: "Helvetica Neue", Helvetica;
font-weight: bold;
padding: 10px;
text-transform: uppercase;
background: rgba(0, 0, 0, 0.9);
z-index: 5000;
pointer-events: none;
}
.achievement h3 {
color: #e0e0e0;
margin: 0;
padding: 0;
font-size: 10pt;
}
.achievement p {
color: #B2E725;
margin: 0;
padding: 0;
font-size: 24pt;
}
/* The goggles bookmarklet */
a#bookmarklet {
padding-left: 32px;
padding-top: 6px;
padding-bottom: 6px;
padding-right: 6px;
color: black;
border: 1px dotted gray;
text-decoration: none;
background-image: url(images/icon-goggles-tiny.png);
background-repeat: no-repeat;
background-position: 5px 4px;
}
a#bookmarklet:hover {
background-color: #f0f0f0;
}
a#bookmarklet.loading {
background-image: url(images/throbber.gif);
background-position: 8px 6px;
background-color: #f0f0f0;
}
/* The help bar at the top of the page */
div.help {
position: fixed;
top: 0px;
left: 0px;
z-index: 500;
background: gray;
color: white;
width: 100%;
padding-top: 0.5em;
padding-bottom: 0.5em;
text-align: center;
}
div.help a {
color: inherit;
}
div.help .remaining {
font-weight: bold;
}
/* The parable story */
html, body {
font-family: Baskerville, Georgia, serif;
width: 640px;
margin: 0 auto;
padding-top: 1em;
}
h1 {
font-weight: normal;
text-align: center;
}
div.drop-cap {
font-size: 48px;
margin-top: -6px;
float: right;
}
img#hackasaur {
width: 400px;
height: 300px;
}
img#supergirl {
width: 300px;
height: 330px;
}
.image-holder {
text-align: center;
}
.curtain {
position: absolute;
width: 640px;
height: 250px;
background-color: white;
}