-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.css
86 lines (73 loc) · 1.24 KB
/
blog.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
/* @media (min-width: 1200px) */
/* @import 'reset.css' */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
header {
width: 100%;
background-color: #fff;
border-bottom: 1px solid #eee;
border-radius: 0px;
margin-bottom: 0;
}
.title-header {
background-color: #eee;
padding: 20px 0 15px;
margin-bottom: 20px;
}
@media (min-width: 1200px) {
.container {
width: 1170px;
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
}
/* clearfix */
.container:after, .row:after {
content:"";
display:table;
clear:both;
}
.row {
margin-left: -15px;
margin-right: -15px;
}
.col-9 {
position: relative;
float: left;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
width: 75%;
heigth: 100px;
background-color: #DDD;
}
.col-3 {
position: relative;
float: left;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
width: 25%;
heigth: 100px;
background-color: #E0E;
}
article {
padding: 0 0;
height: 50px;
}
aside {
padding: 0 0;
height: 50px;
}
footer {
padding-top: 40px;
padding-bottom: 40px;
margin-top: 100px;
color: #767676;
text-align: center;
border-top: 1px solid #e5e5e5;
font-size: 15px;
}