-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 768 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (50 loc) · 768 Bytes
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
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #b4cbc5;
color: #013005;
text-align: center;
max-width: 800px;
margin: 0 auto;
padding: 16px;
}
h1 {
color: #17048f;
}
main {
background-color: #e2e7cc;
color: #013005;
max-width: 800px;
margin: 0 auto;
padding: 16px;
}
article {
display: flex;
margin-bottom: 60px;
}
img {
width: 150px;
height: 150px;
border: 2px solid #17048f;
display: block;
margin: 0 auto;
align-self: center;
}
.artigo-autor {
font-weight: bold;
}
.texto-curto {
max-width: 65ch;
}
footer {
background-color: #b4cbc5;
color: #013005;
text-align: center;
max-width: 800px;
margin: 0 auto;
padding: 20px;
font-size: 14px;
}