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