-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
72 lines (64 loc) · 1.12 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
header, section, footer
{
max-width: 600px;
margin: auto;
}
header
{
padding-top:70px;
}
aside
{
float: left;
position: fixed;
top: 80px;
}
nav li
{
list-style-type: none;
}
/* Setup style information */
html
{
background: url('images/ship.png') top right no-repeat fixed;
font: 18px / 25pt 'Source Sans Pro', sans-serif;
}
h1, h2, h3, h4, h5
{
font-family: 'Source Code Pro', sans-serif;
}
h1 {margin: 0 0 0.75em; font-size: 2em;}
h2 {margin: 0 0 1em; font-size: 1.5em;}
h3 {margin: 0 0 1.286em; font-size: 1.167em;}
h4 {margin: 0 0 1.5em; font-size: 1em;}
h5 {margin: 0 0 1.8em; font-size: .834em;}
h6 {margin: 0 0 2em; font-size: .75em;}
#who
{
margin-top: 400px;
}
/* weird style hacks */
#logo
{
height: 60px;
width: 60px;
background-color: black;
color: white;
}
header h5
{
line-height: 1.3em;
}
.reversed /* reverse the copyright logo to make copyleft logo */
{
-webkit-transform:rotateY(180deg);
-moz-transform:rotateY(180deg);
-o-transform:rotateY(180deg);
-ms-transform:rotateY(180deg);
transform:rotateY(180deg);
display: inline-block;
}
footer nav li
{
display: inline-block;
}