-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
124 lines (98 loc) · 1.46 KB
/
Copy pathmain.css
File metadata and controls
124 lines (98 loc) · 1.46 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
html {
height: 100%;
}
body {
padding: 0px;
margin: 0px;
background-color: #111;
color: #ccc;
font-family: 'Goudy Booklet`ter 1911', serif;
height: 100%;
max-height: 100%;
}
.titleFont {
font-family: 'Ruda', sans-serif;
}
.copyFont {
font-family: 'Goudy Bookletter 1911', serif;
}
.hardFont {
font-family: 'Raleway', sans-serif;
}
.color1 {
color: #FFC373;
}
.color2 {
color: #FFAD40;
}
.color3 {
color: #FF9200;
}
.color4 {
color: #BF8230;
}
.color5 {
color: #A65F00;
}
/**
* Header bar
*/
div.headerBar {
padding: 0px;
margin: 0px;
position: fixed;
bottom: 0px;
background-color: #111;
width: 100%;
text-align: center;
z-index: 100;
}
div.headerBar p {
display: inline;
margin-left: 2em;
margin-right: 1em;
}
div.headerBar h1 {
margin: 0px;
padding: 0px;
display: inline;
font-size: 2em;
}
div.headerBar form {
display: inline;
}
div.headerBar input {
display: inline;
}
/**
* Story rendering
*/
p.story {
margin: 0px;
display: block-inline;
font-family: 'Raleway', sans-serif;
width: 8em;
height: 2.5em;
vertical-align: top;
float: left;
color: #ddd;
background-color: #222;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
overflow: hidden;
}
p.story a {
opacity: 0.0;
}
p.story:hover {
height: 8em;
box-shadow: 10px 10px 10px #111;
z-index: 10;
}
p.story:hover a {
opacity: 0.8;
}
.hardShadow {
text-shadow: 1px 1px 2px #222;
}