-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (86 loc) · 1.3 KB
/
style.css
File metadata and controls
110 lines (86 loc) · 1.3 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
99
100
101
102
103
104
105
106
107
108
109
110
/* Homepage */
body {
background: #eee;
margin: 0 auto;
width: 60%;
font-family: Arial, Helvetica, sans-serif;
line-height: 24px;
}
h1 {
text-transform: uppercase;
font-size: 48px;
}
h1, h2, h3, h4, h5 {
color: #4e346c;
}
/* Links */
a, a:active, a:visited {
color: #57b5d6;
text-decoration: none;
}
a:focus, a:hover {
color: #9eca69;
text-decoration: none;
}
/* Nav */
.nav {
margin-bottom: 40px;
margin-top: 20px;
}
.nav a {
background: #57b5d6;
padding: 10px;
color: #fff;
display: inline-block;
border-radius: 5px;
margin-right: 10px;
}
.nav a:hover {
background: #9eca69;
}
/* Blog Post on Homepage */
.blog {
margin-bottom: 40px;
background: #ddd;
padding: 10px;
}
.post {
box-shadow: 1px 1px 8px #999;
background: #fff;
padding: 10px 20px;
margin-bottom: 10px;
}
.post h2 {
margin-bottom: 0;
padding-bottom: 0;
}
/* About Page */
.image img {
border-radius: 50%;
box-shadow: 1px 1px 10px #ccc;
border: 1px solid #fff;
}
.image {
text-align: center;
}
/* Contact Page */
strong {
text-transform: uppercase;
}
/* Blog Post */
h2 {
font-size: 32px;
margin-bottom: 0;
}
h4 {
color: #666;
font-weight: normal;
font-size: 12px;
text-transform: uppercase;
}
.single-post {
box-shadow: 1px 1px 8px #999;
background: #fff;
padding: 10px 40px 20px;
margin: 40px 0;
}