-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
107 lines (90 loc) · 1.46 KB
/
style.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
html, body {
height: 100%;
margin: 0;
font-family: sans;
background-color: #ddd;
}
#proposals, #proposal {
min-height: calc(100% - 249px);
}
#proposals > div {
float: left;
padding: 10px;
margin: 10px;
background-color: #fff;
border: 1px solid #eee;
width: 200px;
height: 200px;
}
#proposal {
margin: 10px;
width: 700px;
}
#proposal > h1 {
font-size: 2em;
}
#proposal > #original {
text-align: right;
}
#proposal > #teaser {
font-size: 1.5em;
}
#proposal > #body {
font-size: 1em;
}
a {
text-decoration: none;
}
header {
padding-left: 180px;
height: 170px;
background-color: #844d9a;
font-style: italic;
background-image: url(logo.png);
background-position: 10px 10px;
background-repeat: no-repeat;
border-bottom: 3px solid #0000ff;
margin-bottom: 5px;
}
header > #slogan {
position: absolute;
color: #dddd99;
top: 30px;
left: 200px;
}
header > #beta {
position: absolute;
color: #0088ee;
top: 70px;
left: 20px;
font-weight: bold;
font-size: 3em;
}
header > a {
font-size: 80px;
position: absolute;
top: 60px;
}
header a:link, header a:visited {
color: #99ff33;
}
footer {
clear: both;
padding: 10px;
background-color: #111;
color: #ccc;
font-size: 0.8em;
height: 25px;
}
footer a:link, footer a:visited {
color: #0099ff;
}
footer p {
display: inline-block;
padding: 0 10px;
margin: 2px 0 0 0;
border-right: 1px solid #999;
}
footer p:last-child {
border-right: 0;
}