-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (51 loc) · 813 Bytes
/
styles.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
body {
font-family: sans-serif;
}
header {
text-align: center;
margin-bottom: 10px;
}
.link-news {
color: #000000;
cursor: pointer;
text-decoration: none;
}
h2 {
font-family: serif;
margin-bottom: 0;
}
article:hover {
background-color:rgba(221, 221, 221, 0.5);
}
article:hover h2 {
color: blue;
}
article {
width: 600px;
margin-left: auto;
margin-right: auto;
padding: 10px;
padding-top: 2px;
}
.image-wrapper {
width: 200px;
float: left;
padding-right: 25px;
padding-bottom: 10px;
}
.image-wrapper img {
width: 100%;
}
.image-wrapper span {
font-family: sans-serif;
font-size: 10px;
color: #ccc;
}
.article-meta {
font-family: sans-serif;
color: #aaa;
font-size: 12px;
}
p {
font-size: 14px;
}