-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
210 lines (181 loc) · 3.92 KB
/
style.css
File metadata and controls
210 lines (181 loc) · 3.92 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
@font-face{
font-family: 'Android';
src: url(pacote-projeto-d010/fontes/idroid.otf) format('opentype');
font-weight: normal;
}
:root{
--cor0: #ebe5c5;
--cor1: #83e1ad;
--cor2: #3ddc84;
--cor3: #2fa866;
--cor4: #1a5c37;
--cor5: #063d1e;
--fonte-padrao: Arial, Verdana, Helvetica, sans-serif;
--fonte-destaque: 'Bebas neue', cursive;
--fonte-android: 'Android', cursive;
}
*{
margin: 0px;
padding: 0px;
}
body{
background-color: var(--cor0);
font-family: var(--fonte-padrao);
}
a.externo::after{
content:'\00A0\1F517';
}
p {
margin: 15px 0px;
}
header{
background-image: : linear-gradient(to bottom, var(--cor3), var(--cor5));
/*background-color: var(--cor4);*/
min-height: 150px;
text-align: center;
padding-top: 40px;
}
header>h1{
color:white;
font-family: var(--fonte-destaque);
font-size: 3em;
font-weight: normal;
margin-bottom: 20px;
text-shadow: 2px 2px 0px black;
}
header > p{
font-family: var(--fonte-padrao);
font-size: 1.2em;
color: white;
max-width: 600px;
padding-right: 10px;
padding-left: 10px;
margin-bottom: 20px;
margin: auto;
text-shadow: 2px 2px 0px black;
}
header.p{
color:white
}
nav{
background-color: var(--cor5);
padding: 10px;
box-shadow: 0px 0px 10px black;
}
nav > a{
color: var(--cor1);
padding: 10px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition-duration: .5s;
}
nav > a:hover{
background-color: var(--cor2);
color: var(--cor5);
}
main{
min-width: 300px;
max-width: 1000px;
margin: auto;
margin-bottom: 30px;/*Voce pode configurar especificamente apenas um lado, pois nesse caso iria afetar todas as extremidades*/
background-color: white;
padding: 20px;
box-shadow: 0px 0px 10px black;
}
main h1{
color: var(--cor5);
font-family: var(--fonte-android);
font-weight: normal;
font-size: 1.8em;
}
main h2{
font-family: var(--fonte-android);
color: var(--cor4);
font-weight: normal;
font-size: 1.3em;
background-image: linear-gradient(to right, var(--cor1), transparent);
text-indent: 8px;
}
main img{
width: 100%; /*espreme e se adapta*/
}
div.video{
background-color: var(--cor5);
margin-bottom: 30px;
margin: 0px, -20px, 30px -20px;
padding: 20px;
padding-bottom: 50%;
/*Como posicionar e centralizar*/
position: relative;
}
div.video > iframe{
position: absolute;
top: 5%;
left: 5%;
width: 90%;
height:90% ;
}
main img.pequena{
max-width: 350px;
display: block;
margin: auto;
}
aside{
background-color: var(--cor1);
padding: 10px;
border-radius: 10px;
box-shadow: 3px 3px 8px black;
}
aside > h3{
background-color: var(--cor4);
/*color: white;*/
padding: 10px;
border-radius: -10px, -10px, 0px, -10px;
box-shadow: 10px 10px 0px 0px;
}
aside > ul{
list-style-type: '\2714\00a0\00';
list-style-position: inside;
columns: 2;
}
main p{
margin: 15px 0px;
text-align: justify;
text-indent: 30px;
font-size: 1em;
line-height: 2em;
}
main strong{
color: var(--cor4);
font-weight: bold;
}
main a{
text-decoration: none;
font-weight: bold;
color: var(--cor5);
background-color: var(cor--1);
padding: 2px 6px;
}
main a:hover{
text-decoration: underline;
color: var(--cor4);
}
main img.pequena{
max-width: 350px;
width: 50%;
display: block;
margin: auto;
}
footer{
backgrpund-color: var(--cor5);
color: white;
text-align: center;
font-size: 0.8em;
padding: 5px;
}
footer > p > a{
color: white;
font-weight: bold;
text-decoration: none;
}