-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
243 lines (168 loc) · 3.83 KB
/
style.css
File metadata and controls
243 lines (168 loc) · 3.83 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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/*CSS Reset / Normalize*/
/* Hemos disponibilizado el básico de reset de estilos. Si quieren, añadan más informaciones
en las secciones señaladas */
/*Já deixaremos o básico de reset de estilos. Caso queira adicionar mais informações
coloque nas sessões indicadas*/
:root{
/* Inserta la variable de los otros colores inspeccionando el exemplo de figma */
/*Se esforce para trabalhar com variáveis, é uma dica profissional valiosa*/
--cor-de-fundo: #F5f5f5;
--cor-de-link: #000;
}
body {
box-sizing: border-box;
background-color: var(--cor-de-fundo) ;
font-family: 'Raleway';
margin: 0;
padding: 0;
line-height: 1;
align-content: center;
}
ol, ul,li {
list-style: none;
}
a{
text-decoration: none;
color: var(--cor-de-link);
}
/*En este desafío nosostros gustaríamos que ustedes intentaran utilizar la metodología BEM.
Lo que es el BEM?
BEM (Bloque, Elemento, Modificador) es un enfoque basado en componentes para el
desarrollo web. La idea detrás de esto es dividir la interfaz de usuario en bloques
independientes. Esto hace que el desarrollo de la interfaz sea fácil y rápido, incluso
con una interfaz de usuario compleja, y permite la reutilización del código existente sin copiar y pegar.
Enlace de la documentación oficial!
https://en.bem.info/methodology/quick-start/*/
/*Sección Menu*/
.menu{
display: flex;
justify-content: space-between;
margin-left: 20%;
margin-right: 10%;
}
.menu__header {
display: flex;
align-items: center;
gap : 5px;
}
.menu__list{
display: flex;
align-items: flex-end;
gap : 5px;
margin-left: 20%;
margin-right: 20%;
}
/*Sección Title*/
.title__div{
display: flex;
justify-content: space-between;
flex-direction: row-reverse;
margin-left: 20%;
margin-right: 20%;
}
.title__network{
display: flex;
justify-content: flex-start;
margin-left: 20%;
margin-right: 20%;
}
/*Sección About*/
#sobre-mi{
display: flex;
margin-left: 20%;
margin-right: 20%;
}
/*Sección Skills*/
.skills__title {
text-align: center;
margin-left: 20%;
margin-right: 20%;
}
.skills__line{
display: flex;
justify-content: space-between;
margin-left: 20%;
margin-right: 20%;
}
/*Sección Hobbies*/
.hobbies__title{
text-align: center;
margin-left: 20%;
margin-right: 20%;
}
.hobbies__line{
display: flex;
justify-content: space-between;
margin-left: 20%;
margin-right: 20%;
}
/* Experiencia Académica*/
.experience__section__title{
display: flex;
justify-content: flex-start;
margin-left: 20%;
margin-right: 20%;
}
#formacion {
background-color: #eaf2fd;
padding: 20px;
gap: 10px;
margin-left: 20%;
margin-right: 20%;
}
.academic__title{
text-align: center;
}
.academic__courses{
display: flex;
justify-content: space-between;
}
.academic__courses__item__img{
background-color: #ffffff;
}
/* experiencia*/
.experiencie__box{
display: flex;
align-items: center;
margin-left: 20%;
margin-right: 20%;
}
/*Contacto*/
.formcontato__contacto{
display: flex;
align-items: center;
background-color: #eaf2fd;
margin-left: 20%;
margin-right: 20%;
}
.formcontato__form{
display : flex;
flex-direction: column;
gap : 5px;
}
/*footeer*/
section.footer{
}
/* Vamos a desafiarnos trabajando con responsividad?
Utiliza las referencias de los breakpoints @media abajo */
/*Tablet*/
@media (min-width: 768px) {
/* Menú */
/*title*/
/*Skills*/
/*Hobbies*/
/*Formación Académica*/
/*Experiencia Profesional*/
}
/*Mobile*/
@media (min-width: 425px) {
/*Menu*/
/*Titulo*/
/*Sección sobre mi*/
/*Skills*/
/*Hobbies*/
/*Formación Académica*/
/*Experiencia Profesional*/
/*Contacto*/
/*Footer*/
}