-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (84 loc) · 2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Barrio&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
:root {
--fonte-padrao: Verdana, Tahoma, sans-serif;
--fonte-titulo: 'Barrio', cursive;
--font-conteudo: 'Comic Neue', cursive;
}
* {
margin: 0px;
padding: 0px;
font-size: 1em;
}
html, body {
min-height: 100vh; /*visualização mínima do corpo do site */
background-color: darkgray;
font-family: var(--fonte-padrao);
}
header {
background-color: black;
color: white;
text-align: center;
}
header > h1 {
padding-top: 50px;
/*text-transform: uppercase; para fontes Maiúsculas*/
font-variant: small-caps ;
font-family: var(--fonte-titulo);
font-size: 7vw; /*vw: viewport width*/
}
header > p {
padding-bottom: 50px;
}
header a, footer a {
color: white;
text-decoration: none;
font-weight: bolder;
}
header a:hover, footer a:hover {
text-decoration: underline;
}
section {
padding-top: 5vh;
padding-bottom: 2vh;
line-height: 2em;
padding-left: 50px;
font-family: var(--font-conteudo);
font-size: 2vw;
}
section.normal > p {
padding-bottom: 2em;
}
section.normal {
background-color: white;
color: black;
}
section.imagem {
padding-top: 7vh;
padding-bottom: 7vh;
background-color: black;
color: white;
/*box-shadow: inset 4px 4px 8px 0px rgba(0, 0, 0, 0.317);*/
background-attachment: fixed;
}
section.imagem > p {
display: initial;
background-color: rgba(0, 0, 0, 0.779);
background-size: cover;
/*text-shadow: 1px 1px 0px black;*/
}
section#img01 {
background-image: url(imagens/background001.jpg);
background-position: right center;
}
section#img02 {
background-image: url(imagens/background002.jpg);
}
footer {
background-color: black;
color: white;
text-align: center;
padding: 8px;
font-size: 0.6em;
}