-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (58 loc) · 1.13 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
body {
padding: 0;
margin: 0;
background-color: gray;
}
/*Div que contem todos os elementos/ esta no Html*/
#lista{
align-items: center;
}
/*Div como se fosse um Header/ esta no js*/
#head, footer {
background-color: #a52a2a;
}
/*H1 do site Noticias de Hoje!/ esta do js*/
#TituloSite{
color: #fff;
text-decoration: underline;
text-align: center;
}
/*h1 das div da noticia destaque e noticia/ esta no js*/
#Ntitulo{
color: #a52a2a;
text-decoration: underline;
text-align: center;
}
/*Divs de todas as noticias/ esta no js*/
#destaque, #Ncards, #ERRO {
margin: 20px;
padding: 10px;
border: 1px solid #000;
text-align: center;
background-color: #f9f9f9;
border-radius: 20px;
}
/*Esta é a imagem/ esta no js*/
#imagem {
width: 50%;
height: 50%;
}
/*Este é a data da publicacão e o autor/ esta no js*/
p {
font-size: 10px;
color: #787878;
text-align: left;
}
/*Resumo das noticias secundarias*/
#Nresumo{
text-align: left;
}
/*Este é o link (Clique aqui...)/ esta no js*/
a{
color:#a52a2a;
}
/*Este é o H3 que está no footer/ esta no html*/
#Palavrasfooter {
padding: 50px;
color: #fff;
}