-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
217 lines (172 loc) · 4.63 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
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
*{ /*Retirar a margin e o padding que já vem com o navegador */
margin: 0;
padding: 0; /*preenchimento interno */
box-sizing: border-box; /*medido atraves da borda */
}
:root{
--text-color: white;
--bg-url: url(./assets/bg-mobile.jpg);
--stroke-color: rgba(255,255,255,0.5) ;
--surface-color: rgba(255,255,255,0.05);
--surface-color-hover:rgba(0,0,0,0.02);
--highlight-color: rgba(255, 255, 255, 0.2);
--switch-bg-url: url(./assets/moon-stars.svg);
}
.light{
--text-color: black;
--bg-url: url(./assets/bg-mobile-light.jpg);
--stroke-color: rgba(0,0,0,0.5) ;
--surface-color: rgba(0,0,0,0.05);
--surface-color-hover:rgba(0,0,0,0.02);
--highlight-color: rgba(0,0,0,0.1);
--switch-bg-url: url(./assets/sun.svg);
}
body{
/* imagem para colocar como 'papel' */
/* background-image: url(./assets/Mobile\ -\ 1080x1920.jpg);
/* Essa imagem se repete? Senão use isso, assim ficaram uma imagem só */
/* background-repeat: no-repeat;
imagem ao centro
background-position: center;
ampliar a imagem de acordo com o tamanho de tela.
background-size:cover ; */
background: var(--bg-url) no-repeat top center/cover ;
height: 100vh;
}
body * { /*Significa que irá ser aplicado para todos os seletores dentro do body */
font-family: 'Inter', sans-serif;
color: var(--text-color)
}
#container{
width: 100%; /* largura */
max-width: 580px; /* largura maxima*/
/* height: 712px;altura */
/* border : 1px solid red; bordar: tamanho da borda, estilo e cor da borda */
padding: 0 24px;
/* margin-top: 56px; distancia de cima, dando um espaço de 56px entre a caixa e o navegador */
margin: 56px auto 0px auto;
}
#profile{
/* width: 360px; */
/* height: 192px; */
/* border: 1px solid red; */
/* margin: auto; */
text-align: center;
padding: 24px;
}
#profile img{
/* Em elementos de img não se aplica o 'margin', antes se usar o display block que vai abrindo a caixa para os elementos de baixo. */
width: 112px;
}
#name{
font-weight: 500; /* Peso do texto */
line-height: 24px; /* Altura da linha */
margin-top: 8px; /*distancia de cima, dando um espaço de 8px entre a foto e o ig */
}
/* switch */
#switch{
position: relative;
width: 64px;
margin: 4px auto; /* A maneira de centralizar o elemento, quando se está utilizando display block */
}
#switch button{
width: 32px;
height: 32px;
background: white var(--switch-bg-url) no-repeat center;
border: 0;
border-radius: 50%;
position: absolute; /*posicionamento absoluto faz uma sobposição de camadas */
top: 50%;
left: 0;
z-index: 1;/* faz com que se alinhe que o andar de cima */
transform: translateY(-50%);
animation: slide-back .2s;
}
.light #switch button{
animation: slide-in 0.4s forwards;
}
#switch button:hover{
outline: 8px solid var(--highlight-color);
}
#switch span{
display: block;
width: 64px;
height: 24px;
background: var(--surface-color);
border: 1px solid var(--stroke-color);
-webkit-backdrop-filter: blur(4px);
border-radius: 9999px;
}
/* links */
ul{
list-style: none; /* retirar os simbolos de lista */
display: flex; /*organizar os elementos de forma que eles se encaixem na caixa*/
flex-direction: column; /* organizar os elementos em coluna */
gap: 16px; /* espaços entre os elementos */
padding: 24px 0px;
}
ul li a{
display: flex;
align-items: center; /*centralizar os elementos no meio da caixa*/
justify-content: center; /*centraliza os elementos no meio da linha*/
padding: 16px 24px;
background: var(--surface-color);
border: 1px solid var(--stroke-color) ;
border-radius:8px ;/* tipo de borda */
-webkit-backdrop-filter: blur (4px);
text-decoration: none; /*Retirar a linha que está debaixo do texto*/
font-weight:bold; /* Negrito */
transition: background .4s;
}
/* pseudo selector */
ul li a:hover{
background: var(--surface-color-hover);
border: 1.5px solid var(--text-color);
}
#social-links{
display: flex;
padding: 24px 0;
justify-content: center;
font-size: 24px;
}
#social-links a{
display: flex;
align-items: center;
justify-content: center;
padding: 16px;
transition: background .2s;border-radius: 50%;
}
#social-links a:hover{
background: var(--highlight-color);
}
footer{
padding: 24px 0px;
text-align: center;
font-size: 14px;
}
/* media queries */
@media (min-width:700px){
:root {
--bg-url: url(./assets/bg-desktop.jpg);
}
.light{
--bg-url: url(./assets/bg-desktop-light.jpg);
}
}
/* animation */
@keyframes slide-in {
from{
left: 0;
}
to{
left: 50%;
}
}
@keyframes slide-back{
from{
left: 50%;
}
to{
left: 0;
}
}