-
Notifications
You must be signed in to change notification settings - Fork 1
/
layout.css
80 lines (68 loc) · 1.09 KB
/
layout.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
#top-bar {
width: 100%;
/*height: 48px;*/
/*menu is inline-block so
it will get centered*/
text-align: center;
border-bottom: 1px solid #aaa;
color: black;
}
#main {
width: 100%;
}
#content {
max-width: 1080;
padding: 0 16px;
margin: 0 auto;
}
#footer {
width: 100%;
margin-top: 5px;
border-top: 1px solid #aaa;
text-align: center;
font-size: 12px;
line-height: 3em;
}
#footer > a {
text-decoration: none;
}
#logo {
position: absolute;
display: block;
margin: 4px;
width: 40px;
height: 40px;
}
.color-hover:hover {
}
#menu {
color: inherit;
display: inline-block;
margin: 4px;
margin-top: 40px;
font-family: helvetica;
}
.nav-but {
font-family: serif;
color: #666;
display: inline-block;
font-size: 20px;
text-align: center;
margin: 2px 10px;
border-radius: 0.3em;
}
.nav-but:hover {
color: black;
}
#profiles {
position: absolute;
top: 0;
right: 0;
}
#profiles > a {
display: inline-block;
margin: 0px 5px;
}
.profile {
width: 40px;
}