-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (69 loc) · 1.03 KB
/
style.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
body {
font-family: 'Slabo 27px', serif;
background-image: url('img/sample-pattern.png');
margin: 0 auto;
}
header {
background-color: #FFF;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
width: 100%;
position: fixed;
top: 0;
z-index: 10;
}
nav {
float: right;
margin-right: 40px;
padding-top: 5px;
}
li {
color: #4284d7;
display: inline-block;
margin-left: 40px;
font-weight: 600;
}
li:hover {
color: #5b93ef;
}
#logo {
padding-left: 10px;
padding-top: 10px;
}
section {
width: 960px;
margin: 100px auto;
}
a {
text-decoration: none;
}
h1 {
font-size: 40px;
text-align: center;
color: #34495e;
}
h3 {
padding-left: 25px;
color: #4284d7;
}
h5 {
text-align: center;
}
p {
padding-left: 25px;
}
article {
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#article-list {
background-color: #FFF;
border: 1px solid rgba(0, 0, 0, 0.1);
}
footer {
color: #FFF;
background-color: #111;
font-size: 18px;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
}