-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstilo.css
More file actions
165 lines (158 loc) · 2.99 KB
/
stilo.css
File metadata and controls
165 lines (158 loc) · 2.99 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
@charset "UTF-8";
@font-face {
font-family: "idroid";
src: url(../fontes/idroid.otf)
format(opentype)
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*
#c5ebd6
#83e1ad
#3ddc84
#2fa866
#1a5c37
#063d1e
*/
:root {
--cor0: #c5ebd6;
--cor1: #83e1ad;
--cor2: #3ddc84;
--cor3: #2fa866;
--cor4: #1a5c37;
--cor5: #063d1e;
--font-padrão: arial helvetica sans-serif;
--fonte-destaque: 'bebas-Neue';
--fonte-suporte: 'idroid';
}
* {
margin: 0px;
padding: 0px;
}
body {
background-color: var(--cor0);
font-family: var(--font-padrão);
}
a.external::after {
content:\00A0\1F517;
}
header {
background-color: #1a5c37;
padding-top: 30px;
min-height: 150px;
text-align: center;
}
header h1 {
color: white
font-family var(--fonte-destaque);
font-size: 3em;
margin-bottom: 20px;
text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.322);
}
header > p {
color: white;
font-size: 1.2em;
text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.39);
max-width: 600px;
padding-left: 10px;
padding-right: 10px;
margin: auto;
}
nav {
background-color: var(--cor4);
padding: 10px;
box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.493);
}
nav > a {
color: white;
padding: 10px;
text-decoration: none;
transition-duration: .5s;
}
nav > a:hover {
background-color: #2fa866;
color: #063d1e;
}
main {
background-color: var(--cor0);
margin: auto;
margin-bottom: 30px;
padding: 20px;
max-width: 1000px;
min-width: 300px;
box-shadow: 0px 0px 10px var(--cor2);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
main h1 {
color: var(--cor5)
font-family var(--fonte-destaque);
}
main p {
margin: 15px 0px;
text-align: justify;
text-indent: 30px;
}
main img {
width: 100%;
} main img.pequena {
max-width: 350px;
display: block;
margin: auto;
font-size: 1em;
line-height: 2em;
}
main a {
text-decoration: none;
font-weight: bold;
color: var(--cor5);
background-color: #3ddc84;
padding: 2px 3px;
}
h2 {
color: var(--cor4);
font-family: var(--fonte-suporte);
}
h3 {
background-color: #063d1e;
color: white;
font-family: var(--fonte-suporte);
padding: 10px;
margin: -10px -10px 0px -10px;
border-radius: 10px 10px 0px 10px;
}
div.video {
background-color: #063d1e;
margin: 0px -20px 30px 20px;
padding: 20px;
padding-bottom: 59%;
position: relative;
}
div.video > iframe {
position: absolute;
top: 5%;
left: 5%;
width: 90%;
height: 90%;
}
aside {
background-color: #3ddc84;
padding: 12px;
border-radius: 10px;
box-shadow: 2px 3px 3px 2px rgba(0, 0, 0, 0.445);
}
aside ul {
list-style-position: inside;
columns: 2;
}
footer {
background-color: var(--cor5);
color: white;
text-align: center;
font-size: 0.8;
padding: 6px;
}
footer a {
text-decoration: none;
font-weight: bold;
color: #3ddc84;
}