-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmimo.css
111 lines (111 loc) · 1.86 KB
/
mimo.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
body{
color: #555;
margin: 0;
font-family: 'Montserrat','sans-serif';
}
#header{
background-color: #1abc9c;
height: 150px;
line-height: 150px;
}
#header-title{
display: block;
float: left;
font-size: 20px;
font-weight: bold;
}
#header-nav{
display: block;
float: right;
margin-top: 0;
}
#header-nav li{
display: inline;
padding-left: 20px;
}
#header a{
color: white;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.1em;
}
#header a:hover{
color: #222;
}
.container{
max-width: 1000px;
margin: 0 auto;
}
/*Footer*/
#footer{
background-color: #2f2f2f;
padding: 50px 0;
}
.column{
min-width: 300px;
display: inline-block;
vertical-align: top;
}
#footer h4{
color: white;
text-transform: uppercase;
letter-spacing: 0.1em;
}
#footer p{
color: white;
}
a{
color: #1abc9c;
text-decoration: none;
}
a:hover{
color: #f6a623;
}
/*Content*/
.post{
max-width: 800px;
margin: 0 auto;
padding: 60px 0;
}
.post-author img{
width: 50px;
height: 50px;
vertical-align: middle;
}
.post-author span{
margin-left: 16px;
color: rebeccapurple;
font-weight: bold;
}
.post-date{
color: #d2d2d2;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.1em;
}
h1, h2, h3, h4{
color: #333;
}
p{
line-height: 1.5;
}
.post, .about{
max-width: 800px;
margin: 0 auto;
padding: 60px 0;
}
.about-author>img{
width: 200px;
border-radius: 25%;
}
.about{
text-align: center;
}
.post-author img{
border-radius: 50%;
}
.post-container:nth-child(even){
background-color: #f2f2f2;
}