-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (83 loc) · 1.25 KB
/
style.css
File metadata and controls
98 lines (83 loc) · 1.25 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
*,
*:after,
*:before {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
.text-center{
text-align: center;
}
body {
color: #111;
font-family: 'Roboto', sans-serif;
font-weight: 300;
margin: 0;
}
a {
text-decoration: none;
color: #111;
}
a:hover h2 {
text-decoration: underline;
}
h1 {
display: inline-block;
font-weight: 100;
margin: 0 0 0 0.5em;
}
h2 {
font-weight: 400;
margin: 0;
}
.header {
background: #0984b4;
color: #fff;
position: fixed;
top: 0;
width: 100%;
padding: 0.5em 1em;
}
.icon-list {
font-size: 1.5em;
color: #FFF;
}
.slide-menu {
position: absolute;
top: 3.5em;
padding: 1em;
background: #0984b4;
height: 100%;
width: 10em;
transform: translate3d(0, 0, 0);
transition: transform 0.2s;
}
.slide-menu ul {
list-style: none;
margin: 0;
padding: 0;
}
.slide-menu li {
padding: 0;
}
#mocha{
display: none;
}
.slide-menu li a {
color: #fff;
display: block;
padding: 0.5em 0;
}
.menu-hidden .slide-menu {
transform: translate3d(-12em, 0, 0);
transition: transform 0.2s;
}
.feed {
margin: 4em 0 0;
}
.entry {
border-bottom: 1px solid #ddd;
padding: 1em;
margin: 0.5em 0;
}