-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
188 lines (157 loc) · 3.29 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
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
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@font-face {
font-family: 'Idroid';
src: url(fontes/idroid.otf) format(opentype);
font-weight: normal;
font-style: normal;
}
/* coisas q nn usei, mas q poderia ter usado se soubesse
* {
Regra para tds os elementos CSS
list-style-position= inside
*/
body {
margin: 0px;
background-color: #84E1AD;
}
#cima {
background-image: linear-gradient(to top, #1A5C38,#3BD37F);
/* background-color: #3BD37F; */
min-height: 160px;
}
#cima > h1 {
font-family: "Bebas Neue", serif;
font: normal 400;
color: white;
text-shadow: 1px 1px 1px black;
text-align: center;
padding: 40px 0px 25px 0px;;
margin: 0px;
}
#cima > p {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
color: white;
text-shadow: 1px 1px 1px black;
padding-top: 10px;
max-width: 600px;
margin: auto;
}
nav {
background-color: #1A5C38;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: white;
box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.342);
}
nav > ul {
list-style: none;
padding: 8px 0px 9px 17px;
display: flex;
margin: auto;
gap: 15px;
}
ul > a {
font-size: 15px;
color: white;
text-decoration: none;
padding: 5px;
}
ul > a:hover {
background-color: #2FA866;
color: #1A5C38;
transition-duration: 0.3s;
padding: 5px;
border-radius: 3px;
}
ul > a:active {
color: #84E1AD;
}
main {
background-color: white;
/* line-height: 1em; */
box-shadow: 0px 0px 10px #1a5c3875;
padding: 1px 11px 1px 11px;
margin: auto;
max-width: 800px;
min-width: 320px;
}
.gradiente {
font-family: 'Idroid';
color: #1A5C38;
background-image: linear-gradient(to right, #C5ECD6, transparent);
}
h2 {
margin-top: 15px;
padding: 0px 1px 0px 1px;
}
article > p {
text-indent: 24px;
font-family: "Open sans", serif;
font-weight: 500;
}
p > a {
background-color: #45f092;
}
#video {
background-color: #1A5C38;
padding: 20px;
margin-bottom: 10px;
position: relative;
padding-bottom: 49.5%;
}
#video > iframe {
position: absolute;
top: 5%;
left: 5%;
width: 90%;
height: 90%;
}
.img {
display: block;
margin: auto;
width: 100%;
}
p > a {
text-decoration: none;
font-weight: 700;
color: #1A5C38;
}
p > a::after {
content: "🔗";
}
aside {
background-color: #C5EBD6;
border-radius: 12px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.329);
}
aside > h3 {
font-family: "Open Sans";
color: white;
font-size: 18px;
background-color: #2FA866;
padding: 6px;
border-radius: 12px 12px 0px 0px;
}
#texto-quadro {
padding: 1px 0px 2px 7px;
font-family: "Open Sans", serif;
font-weight: 500;
}
#texto-quadro p {
text-indent: 24px;
}
#lista > ul {
list-style-type: "\2714\00A0\00A0"; /*Não é compatível com todos os navegadores*/
columns: 2;
}
footer {
padding: 1px;
background-color: #1A5C38;
font-family: "open sans", serif;
font-size: 14px;
text-align: center;
color: white;
}