-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode_bonus.css
More file actions
59 lines (49 loc) · 964 Bytes
/
Copy pathcode_bonus.css
File metadata and controls
59 lines (49 loc) · 964 Bytes
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
html {
font-family: Helvetica;
}
body {
margin: 0 0;
}
a, a:visited {
color: rgba(0,0,0,0.7);
text-decoration: none;
}
a:hover {
font-weight: bold;
text-decoration: underline;
}
#main-frame {
margin: 0px 0px;
}
.docked-nav {
height: 100%;
width: 250px;
position: fixed;
background-color: white;
box-shadow: 1px 0px 5px rgba(0,0,0,0.6);
}
.docked-nav > .docked-nav-items {
list-style: none;
padding-left: 0px;
margin-top: 0px;
}
.docked-nav > .docked-nav-items > li{
padding-top: 25px;
padding-left: 20px;
padding-right: 25px;
padding-bottom: 25px;
border-bottom: 1px solid rgba(0,0,0,0.3);
}
.docked-nav > .docked-nav-items > li.brand > img {
max-height: 120px;
border-radius: 50%;
box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
.docked-nav > .docked-nav-items > li.brand > h2 {
margin-bottom: 0;
}
.article {
padding-top: 40px;
padding-right: 150px;
padding-left: 300px;
}