-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
91 lines (80 loc) · 3.11 KB
/
estilo.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
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Heebo:[email protected]&family=Hubot+Sans:ital,wght@0,200..900;1,200..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Markazi+Text:[email protected]&family=Mountains+of+Christmas:wght@400;700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Parkinsans:[email protected]&family=Passion+One:wght@400;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shadows+Into+Light&family=Space+Grotesk:[email protected]&family=Sriracha&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Heebo:[email protected]&family=Hubot+Sans:ital,wght@0,200..900;1,200..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Markazi+Text:[email protected]&family=Mountains+of+Christmas:wght@400;700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Parkinsans:[email protected]&family=Passion+One:wght@400;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shadows+Into+Light&family=Space+Grotesk:[email protected]&family=Sriracha&display=swap');
:root {
--fonte1: Verdana, Geneva, Tahoma, sans-serif;
--fonte2: "Passion One", serif;
--fonte3: "Sriracha", cursive;
}
* {
margin: 0;
padding: 0;
}
html, body {
font-family: var(--fonte1);
min-height: 100vh;
background-color: darkgray;
}
header {
background-color: black;
color: white;
text-align: center;
}
header > h1 {
font-family: var(--fonte2);
padding-top: 50px;
font-variant: small-caps;
font-size: 10vw;
}
header > p {
padding-bottom: 50px;
}
header, a footer a {
color: white;
text-decoration: none;
font-weight: bolder;
}
a:hover {
text-decoration: underline;
}
section {
font-family: var(--fonte3);
padding-left: 30px;
padding-top: 10vh;
padding-bottom: 10vh;
line-height: 2em;
font-size: 3.2vw;
}
section > p {
padding-bottom: 2em;
}
section.normal {
background-color: #fff;
color: black;
}
section.imagem {
background-color: #424242;
color: white;
box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.422);
background-size: cover;
background-attachment: fixed;
}
section.imagem > p {
text-shadow: 1px 1px 0px black;
display: inline-block;
padding: 5px;
background-color: rgba(0, 0, 0, 0.504);
}
section#img01 {
background-image: url(imagens/background001.jpg);
background-position: right center;
}
section#img02 {
background-image: url(imagens/background002.jpg);
}
footer {
background-color: black;
text-align: center;
color: white;
padding: 10px;
}