-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgargoyle.css
87 lines (76 loc) · 1.75 KB
/
gargoyle.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
/*
* CSS specifications for Gargoyle
*/
@font-face { /* Modified from Font Squirrel http://www.fontsquirrel.com */
font-family: Rurintania;
src: url('font/rurintania.eot'); /* IE9 compat modes */
src: local('Rurintania'),
local('RurintaniaRegular'),
local('Rurintania Regular'),
url('font/rurintania-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
url('font/rurintania-webfont.woff') format('woff'), /* modern browsers */
url('font/rurintania-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('font/rurintania-webfont.svgz#rurintaniaregular') format('svg'), /* legacy iOS */
url('font/rurintania-webfont.svg#rurintaniaregular') format('svg'); /* legacy iOS */
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
color: white;
background: black;
font-family: Verdana, Arial, Helvetica, sans-serif;
background: url('images/background.jpg');
cursor: none;
}
div.visible {
display: block;
}
.invisible {
display: none;
}
#startupBlockID, #workingBlockID {
width: 100%;
height: 100%;
}
#startupBlockID {
text-align: center;
}
#loadingProgressID {
width: 100%;
padding: 1em;
text-align: center;
font-weight: bold;
}
#loggerID {
display: inline-block;
text-align: left;
}
#workingBlockID {
background: center no-repeat url('images/gargoyle.png');
background-size: contain;
text-align: center;
outline: none;
}
#questionBlockID {
width: 100%;
position: absolute;
bottom: 6%;
text-align: center;
}
#questionID {
background: url('images/question.png') no-repeat 0 6px;
font-family: Rurintania, Verdana, Arial, Helvetica, sans-serif;
font-size: 32px;
width: 279px;
height: 86px;
padding: 0 60px;
border: none;
text-transform: lowercase;
outline: none;
color: black;
cursor: none;
}