-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
217 lines (177 loc) · 4.27 KB
/
styles.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
* {
margin: 0;
padding: 0;
box-sizing: border-box; /* respeita a borda das caixas, sem altera-las*/
}
:root {
/* root é usado para determinar um tamanho padrão emt odo site para as fontes, assim não precisando alterar todos os tamanhos quando utilizamos @media, ao alterar o root, todas se alteram na mesma proporção */
font-size: 16px;
}
::-webkit-scrollbar {
/* WebKit é usado para personalizar componentes do navegador, neste caso a scrollbar */
width: 8px;
}
::-webkit-scrollbar-track {
background-color: #2c2c31;
}
::-webkit-scrollbar-thumb {
background-color: #9e9ea0;
}
@keyframes entrada {
/*Animações de entrada do site */
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
body {
background-color: #121215;
color: #eaeaea;
font-family: "Roboto", sans-serif;
display: grid;
/* começando o grid para dividir a tela em profile e timeline */
grid-template-areas: "profile timeline"; /* areas da tela */
grid-template-columns: 1fr 1fr; /* colunas e medidas */
grid-template-rows: 100vh; /* tamanho da linha */
/* vh = altura, fr = fração da página */
}
nav {
padding: 64px;
grid-area: timeline;
overflow-y: scroll; /*quando o conteúdo não caber na vertical, é habilitado o scroll */
animation: entrada 0.7s ease-in-out;
}
.memory {
display: flex; /* Alinha todos os elementos um do lado do outro (flexíveis)*/
flex-direction: column; /* Alinha um em baixo do outro */
gap: 16px; /* espaçamento entre os elementos (tags) */
text-decoration: none; /*serve para remover o underline das frases*/
margin-bottom: 64px; /* espaçamento entre as caixas*/
}
.memory small {
color: #bebebf;
font-size: 0.75rem;
}
.memory h1 {
font-size: 2rem;
color: #eaeaea;
}
.memory img {
width: 100%;
height: 280px;
object-fit: cover; /* mantém a proporção de uma capa, não estica*/
border-radius: 8px;
transition: transform 0.3s ease-in-out;
}
.memory div {
width: 100%;
height: 280px;
overflow: hidden;
border-radius: 8px;
}
.memory:hover img {
/* hover=quando passar o mouse em cima */
transform: scale(1.1);
}
.memory p {
font-size: 1.2rem;
color: #bebebf;
line-height: 28px; /* altura de uma linha para outra*/
}
/* O GRID LAYOUT POSSIBILITA DIVIDIR O NOSSO SITE EM LINHAS E COLUNAS (separar áreas) */
aside {
grid-area: profile;
border-right: 1px solid;
border-image: linear-gradient(#727275, #2c2c31) 1;
background-image: url(./assets/background.svg);
background-position: top right;
background-repeat: no-repeat;
background-size: auto 100%;
}
aside * {
/* Colocando as animações somente nos elementos do aside, sem contar background etc... */
animation: entrada 0.7s ease-in-out;
}
.firstimage img {
margin-top: 25px;
width: 100%;
height: 40px;
margin-left: auto;
margin-right: auto;
}
.centerleft {
margin-top: 300px;
margin-bottom: 250px;
display: flex;
flex-direction: column;
align-items: center; /* centro horizontal */
justify-content: center; /* centro vertical */
gap: 18px;
}
.secondimage img {
transition: transform 0.3s ease-in-out;
}
.secondimage:hover img {
transform: scale(1.05);
}
.centerleft img {
width: 160px;
height: 160px;
border-radius: 50%;
border: 4px solid transparent;
background: linear-gradient(#d39e33, #ed5636, #633bbc) padding-box,
linear-gradient(260deg, #d39e33, #ed5636, #633bbc) border-box;
}
.centerleft p {
font-size: 2rem;
text-align: center;
}
.downleft ul {
list-style: none;
}
.downleft p {
text-align: center;
font-size: 1rem;
}
aside div {
display: flex;
flex-direction: column;
}
.downleft ul {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-top: 24px;
justify-content: center;
}
.redes:hover svg {
transform: scale(1.4);
}
.redes svg {
transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
/* media é utilizado pra quando o dispositivo for menor que 768px, o site obedecer essas instruções */
:root {
font-size: 14px;
}
body {
grid-template-columns: 1fr;
grid-template-rows: 0.2fr 0.8fr;
grid-template-areas:
"profile"
"timeline";
}
aside {
border-right: none;
padding: 32px 12px;
}
nav {
overflow-y: visible;
padding: 22px;
}
}