-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (60 loc) · 1.04 KB
/
style.css
File metadata and controls
73 lines (60 loc) · 1.04 KB
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
/*CSS para o cabeçario*/
header {
background: url("Banner-7DaysOfCode.png");
background-repeat: no-repeat;
background-size: cover;
padding: 1em 0;
}
.logo {
width: 30%;
margin: 0 auto;
display: block;
padding: 1em 0;
}
.bloco {
width: 1280px;
margin: 0 auto;
}
nav {
display: flex;
justify-content: center;
padding: 1em 0;
}
nav li {
display: inline;
}
nav a {
color: lightgrey;
text-shadow: 2px 0 black, -2px 0 black, 0 2px black, 0 -2px black, 1px 1px black,
-1px -1px black, 1px -1px black, -1px 1px black;
font-weight: bold;
font-size: 1.8em;
text-decoration: none;
padding: 0 0.5em;
}
nav a:hover {
color: white;
text-decoration: underline;
}
/*Elementos em comum*/
body {
background: #282828;
}
.conteudo {
padding: 2em 0;
}
.largura-conteudo {
width: 1280px;
margin: 0 auto;
}
.titulo-principal {
margin: 0 auto 1em;
padding: 0.2em 0.4em 0.1em;
text-align: center;
font-family: 'Bebas Neue', cursive;
font-size: 3em;
background: yellow;
color: black;
width: fit-content;
}
/*Página Index*/