├── .vscode └── settings.json ├── 01-Introduccion ├── comentarios │ ├── index.html │ └── style.css ├── css │ └── style.css └── index.html ├── 02-herencia cascada especificidad ├── index.html └── style.css ├── 03-Box model ├── Box Model Curso.png ├── elementos │ ├── index.html │ └── style.css ├── index.html ├── pacman │ ├── index.html │ └── style.css └── style.css ├── 04-Colores-Fondos ├── images │ ├── circulo_cromatico.png │ ├── cody.png │ ├── cody.svg │ ├── cody_confundido.png │ ├── futuro.svg │ └── tablet.jpg ├── index.html └── style.css ├── 05-Fuentes ├── CODY.png ├── index.html └── style.css ├── 06-Unidades-medida ├── index.html └── style.css ├── 07-Position ├── index.html ├── sticky │ ├── index.html │ └── style.css └── style.css ├── 08-Media-Queries ├── index.html └── style.css ├── 09-Card ├── img │ └── tenis.jpg ├── index.html └── style.css ├── 10-Flexbox ├── img │ ├── Column-reverse.png │ ├── Column.png │ ├── Row-reverse.png │ └── Row.png ├── index.html └── style.css ├── 11-Landing-Page ├── illustration.svg ├── index.html └── style.css ├── 12-Custom-Properties ├── index.html └── style.css ├── 13-GRID ├── grid1.png ├── grid2.png ├── grid3.png ├── grid4.png ├── grid5.png ├── img │ ├── image1.jpg │ ├── image2.jpg │ ├── image3.jpg │ ├── image4.jpg │ ├── image5.jpg │ └── image6.jpg ├── index.html └── style.css ├── 14-Shadow-radius ├── index.html └── style.css ├── 15-Selectores ├── index.html └── style.css ├── 16-Transform ├── Flujo del navegador (1).png ├── index.html └── style.css ├── 17-Transiciones ├── index.html └── style.css ├── 18-Animaciones ├── index.html └── style.css ├── 19-Room-homepage-master ├── .gitignore ├── README-template.md ├── README.md ├── design │ ├── active-states.jpg │ ├── desktop-design-slide-1.jpg │ ├── desktop-design-slide-2.jpg │ ├── desktop-design-slide-3.jpg │ ├── desktop-preview.jpg │ ├── mobile-design.jpg │ └── mobile-navigation.jpg ├── images │ ├── desktop-image-hero-1.jpg │ ├── desktop-image-hero-2.jpg │ ├── desktop-image-hero-3.jpg │ ├── favicon-32x32.png │ ├── icon-angle-left.svg │ ├── icon-angle-right.svg │ ├── icon-arrow.svg │ ├── icon-close.svg │ ├── icon-hamburger.svg │ ├── image-about-dark.jpg │ ├── image-about-light.jpg │ ├── logo.svg │ ├── mobile-image-hero-1.jpg │ ├── mobile-image-hero-2.jpg │ └── mobile-image-hero-3.jpg ├── index.html └── style-guide.md ├── Formulario ├── .vscode │ └── settings.json ├── index.html └── style.css └── room-homepage-master ├── .gitignore ├── README-template.md ├── README.md ├── css └── style.css ├── design ├── active-states.jpg ├── desktop-design-slide-1.jpg ├── desktop-design-slide-2.jpg ├── desktop-design-slide-3.jpg ├── desktop-preview.jpg ├── mobile-design.jpg └── mobile-navigation.jpg ├── images ├── desktop-image-hero-1.jpg ├── desktop-image-hero-2.jpg ├── desktop-image-hero-3.jpg ├── favicon-32x32.png ├── icon-angle-left.svg ├── icon-angle-right.svg ├── icon-arrow.svg ├── icon-close.svg ├── icon-hamburger.svg ├── image-about-dark.jpg ├── image-about-light.jpg ├── logo.svg ├── mobile-image-hero-1.jpg ├── mobile-image-hero-2.jpg └── mobile-image-hero-3.jpg ├── index.html └── style-guide.md /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /01-Introduccion/comentarios/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Comentarios 8 | 9 | 10 | 11 | 12 |

Hola mundo!

13 | 14 | 15 | -------------------------------------------------------------------------------- /01-Introduccion/comentarios/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Aquí va un selector de tipo 3 | 4 | */ 5 | 6 | 7 | h1{ 8 | color: crimson; 9 | font-size: 60px; 10 | text-align: center; 11 | } -------------------------------------------------------------------------------- /01-Introduccion/css/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | 4 | Selector universal 5 | 6 | *{ 7 | color: red; 8 | font-size: 30px; 9 | } 10 | 11 | Selector de tipo 12 | 13 | p{ 14 | color: orange; 15 | font-size: 30px; 16 | } 17 | 18 | Selector de clase 19 | 20 | .titulo{ 21 | color: brown; 22 | font-size: 30px; 23 | border: 1px solid black; 24 | } 25 | 26 | .negrita{ 27 | font-weight: bold; 28 | } 29 | 30 | Selector de ID 31 | 32 | #titulo{ 33 | color: steelblue; 34 | font-size: 50px; 35 | } */ 36 | 37 | 38 | /* 39 | combinador de descendientes 40 | 41 | .abuelito .titulo{ 42 | color: red; 43 | font-size: 40px; 44 | } 45 | 46 | 47 | combinador de hijos directos 48 | .abuelito>.titulo{ 49 | color: blue; 50 | } 51 | 52 | */ -------------------------------------------------------------------------------- /01-Introduccion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Introducción CSS 8 | 9 | 10 | 11 | 12 |
13 |
14 |

Soy el primer H2

15 |
16 |

Soy el primer H3

17 |
18 | 19 |

Soy el segundo H2

20 |

Soy el tercer H2

21 | 22 | 23 | -------------------------------------------------------------------------------- /02-herencia cascada especificidad/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Herencia Cascada y Especificidad 8 | 9 | 10 | 11 | 12 |

Hola mundo

13 |

Hola mundo x2

14 |

Soy un parrafo

15 | Soy un botón 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /02-herencia cascada especificidad/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | font-family: cursive; 3 | color: tomato; 4 | border: 2px solid #000; 5 | } 6 | 7 | h1{ 8 | border: inherit; 9 | } 10 | 11 | input{ 12 | font-family: inherit; 13 | } 14 | 15 | 16 | /* 1 - Selector de tipo, Pseudoelementos ::*/ 17 | /* 10 - Selector de clase, Pseudoclases :, []*/ 18 | /* 100 - Selector de ID */ -------------------------------------------------------------------------------- /03-Box model/Box Model Curso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/03-Box model/Box Model Curso.png -------------------------------------------------------------------------------- /03-Box model/elementos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 | 12 | 18 | 19 | Soy un botón 20 | 21 | -------------------------------------------------------------------------------- /03-Box model/elementos/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0; 4 | } 5 | 6 | body{ 7 | font-size: 25px; 8 | } 9 | 10 | 11 | .block{ 12 | background-color: teal; 13 | 14 | color: white; 15 | padding: 30px; 16 | width: 300px; 17 | margin: 0 auto; 18 | margin-bottom: 30px; 19 | } 20 | 21 | .inline{ 22 | font-size: 20px; 23 | display: inline-block; 24 | background-color: crimson; 25 | color: white; 26 | margin-bottom: 40px; 27 | width: 200px; 28 | height: 50px; 29 | } 30 | 31 | .button{ 32 | display: inline-block; 33 | background-color: steelblue; 34 | color: white; 35 | text-decoration: none; 36 | font-family: 'Arial'; 37 | padding: 15px 40px; 38 | 39 | border-radius: 30px; 40 | /* margin: 50px; */ 41 | 42 | width: 300px; 43 | margin: 0 auto; 44 | } -------------------------------------------------------------------------------- /03-Box model/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Box Model 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |

Hola mundo

16 |
17 | 18 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /03-Box model/pacman/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | PACMAN 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /03-Box model/pacman/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | .pacman{ 7 | width: 100px; 8 | margin: 80px; 9 | border-bottom: 100px solid yellow; 10 | border-top: 100px solid yellow; 11 | border-left: 100px solid yellow; 12 | border-right: 100px solid transparent; 13 | 14 | border-radius: 50%; 15 | } -------------------------------------------------------------------------------- /03-Box model/style.css: -------------------------------------------------------------------------------- 1 | .caja{ 2 | background-color: steelblue; 3 | color: white; 4 | font-size: 20px; 5 | font-family: Arial; 6 | width: 200px; 7 | height: 200px; 8 | 9 | /* padding: 30px; */ 10 | padding-top:30px; 11 | padding-right:50px; 12 | padding-bottom:70px; 13 | padding-left:100px; 14 | 15 | /* padding: top right bottom left; */ 16 | 17 | padding:30px; 18 | 19 | 20 | 21 | 22 | /* border-width:top right bottom left ; */ 23 | border-width:15px; 24 | 25 | 26 | 27 | /* border-top-style:dotted; 28 | border-right-style: dashed; 29 | border-bottom-style: solid; 30 | border-left-style:double ; */ 31 | 32 | /* border-style: top rigth bottom left; */ 33 | 34 | border-style:dotted ; ; 35 | 36 | /* 37 | dotted 38 | dashed 39 | solid 40 | double 41 | groove 42 | ridge 43 | */ 44 | 45 | 46 | /* border-top-color:crimson ; 47 | border-right-color: black; 48 | border-bottom-color: brown; 49 | border-left-color: purple; */ 50 | 51 | /* border-color: top rigth bottom left; */ 52 | 53 | border-color: crimson ; 54 | 55 | /* border:color width style; */ 56 | 57 | 58 | } 59 | 60 | .caja1{ 61 | margin: 0 auto; 62 | display: block; 63 | } 64 | 65 | .main{ 66 | background-color: steelblue; 67 | color: white; 68 | margin-bottom: 80px; 69 | /* margin-top: 40px; */ 70 | padding: .1px; 71 | } 72 | 73 | .main-title{ 74 | margin-top: 40px; 75 | margin-bottom: 40px; 76 | } 77 | 78 | .footer{ 79 | color: white; 80 | background-color: slateblue; 81 | margin-top: 50px; 82 | } -------------------------------------------------------------------------------- /04-Colores-Fondos/images/circulo_cromatico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/04-Colores-Fondos/images/circulo_cromatico.png -------------------------------------------------------------------------------- /04-Colores-Fondos/images/cody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/04-Colores-Fondos/images/cody.png -------------------------------------------------------------------------------- /04-Colores-Fondos/images/cody.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 75 | 76 | 77 | 78 | 79 | 80 | 84 | 86 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 153 | 154 | 155 | 156 | 158 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 172 | 174 | 175 | 176 | 177 | 178 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | -------------------------------------------------------------------------------- /04-Colores-Fondos/images/cody_confundido.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/04-Colores-Fondos/images/cody_confundido.png -------------------------------------------------------------------------------- /04-Colores-Fondos/images/futuro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 80 | 81 | 82 | 83 | 84 | 85 | 87 | 88 | 89 | 90 | 91 | 92 | 94 | 95 | 96 | 97 | 98 | 99 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 126 | 127 | 128 | 129 | 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 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 232 | 233 | 234 | 235 | 236 | 237 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 368 | 369 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 443 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 455 | 457 | 458 | 459 | 460 | 461 | 462 | 464 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 476 | 477 | 478 | 479 | 480 | 481 | -------------------------------------------------------------------------------- /04-Colores-Fondos/images/tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/04-Colores-Fondos/images/tablet.jpg -------------------------------------------------------------------------------- /04-Colores-Fondos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Colores & Fondos 8 | 9 | 10 | 11 | 12 | 13 |
14 |

Hola mundo!

15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /04-Colores-Fondos/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | .title{ 7 | margin: 70px; 8 | color:hotpink; 9 | color: rgba(255, 105, 180, 0.502); 10 | color: #e05bd5; 11 | color: hsl(200, 100%, 30%); 12 | /* rgb -> Red Green Blue */ 13 | /* hsl -> Hue Saturation Lightness */ 14 | } 15 | 16 | .background{ 17 | 18 | height: 600px; 19 | /* margin: 50px 0; */ 20 | background-color: #4682b4; 21 | /* background-image: url('images/cody.png'); */ 22 | /* background-repeat: no-repeat; 23 | background-size: 100px; 24 | background-position:center; */ 25 | background-image: linear-gradient(rgba(255, 105, 180, 0.527), rgba(70, 131, 180, 0.534)), url('images/tablet.jpg'); 26 | background-size: cover; 27 | background-position: center; 28 | /* top, left, bottom, right center */ 29 | padding: .1px; 30 | } 31 | 32 | h2{ 33 | margin-top: 100px; 34 | color: #fff; 35 | font-size: 60px; 36 | text-align: center; 37 | } -------------------------------------------------------------------------------- /05-Fuentes/CODY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/05-Fuentes/CODY.png -------------------------------------------------------------------------------- /05-Fuentes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Fuentes 9 | 10 | 11 | 12 | 15 | 16 | 17 | 18 | 19 |
20 | 21 |

Hola mundo

22 |

Lorem ipsum, dolor sit amet consectetur adipisicing elit. Rem expedita 23 | voluptatum 24 | blanditiis consequatur nostrum inventore impedit tenetur, cum officia eos.

25 |

Lorem ipsum, dolor sit amet consectetur adipisicing elit. Rem expedita voluptatum 26 | blanditiis consequatur nostrum inventore impedit tenetur, cum officia eos.

27 |
28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /05-Fuentes/style.css: -------------------------------------------------------------------------------- 1 | 2 | *{ 3 | margin: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | body{ 8 | font-family: 'Raleway', sans-serif; 9 | } 10 | 11 | .card{ 12 | width: 80%; 13 | max-width: 500px; 14 | margin: 0 auto; 15 | margin-top: 80px; 16 | background-color: slateblue; 17 | color: #fff; 18 | padding: 40px 20px; 19 | 20 | /* height: 500px; */ 21 | } 22 | 23 | .img{ 24 | width: 200px; 25 | display: block; 26 | margin: 0 auto; 27 | } 28 | 29 | .title{ 30 | /* line-height: 500px; */ 31 | text-align: center; 32 | 33 | /* letter-spacing: -4px; */ 34 | /* word-spacing:-20px ; */ 35 | /* hyphens:auto ; */ 36 | 37 | /* width: 150px; */ 38 | 39 | overflow-wrap:break-word ; 40 | /* text-align: start; */ 41 | font-weight: 900; 42 | font-style: italic; 43 | 44 | font-size:50px; 45 | 46 | border: 1px solid #fff; 47 | 48 | /* 50px * 2 = 100px */ 49 | } 50 | 51 | .paragraph{ 52 | text-transform: uppercase; 53 | font-weight: 400; 54 | font-style: italic; 55 | 56 | font-size: 16px; 57 | line-height: 2; 58 | } 59 | 60 | .paragraph--first{ 61 | text-transform: lowercase; 62 | margin-top: 10px; 63 | margin-bottom: 20px; 64 | 65 | font-weight: 300; 66 | font-style: italic; 67 | } 68 | 69 | -------------------------------------------------------------------------------- /06-Unidades-medida/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Unidades de medida 8 | 9 | 10 | 11 | 12 |
13 | 14 |
15 | 19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /06-Unidades-medida/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | 7 | body{ 8 | font-family: Arial; 9 | /* height: 300px; */ 10 | } 11 | 12 | .container{ 13 | background-color: slateblue; 14 | color: #fff; 15 | /* min-height: 100px; */ 16 | /* padding: 30px ; */ 17 | /* font-size: 16px; */ 18 | /* vw */ 19 | /* width: 100%; */ 20 | /* vh */ 21 | /* height:100vh; */ 22 | 23 | width: 100%; 24 | height: 100vh; 25 | 26 | } 27 | 28 | .item{ 29 | height: 100px; 30 | background-color: tomato; 31 | width: 50%; 32 | height: 50%; 33 | } 34 | 35 | .title{ 36 | margin-bottom: 20px; 37 | border: 1px solid #fff; 38 | 39 | } 40 | 41 | .primero{ 42 | /* font-size: 1.5rem; */ 43 | } 44 | 45 | .segundo, .tercero{ 46 | /* font-size: 24px; */ 47 | } 48 | 49 | .cuarto{ 50 | /* font-size: 2em; */ 51 | /* 16px * 2 = 32px */ 52 | 53 | /* 1em = 32px */ 54 | 55 | /* padding: 2em 0; */ 56 | 57 | /* 16px * 2 = 32px */ 58 | } -------------------------------------------------------------------------------- /07-Position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Position 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /07-Position/sticky/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Sticky 9 | 10 | 11 | 12 | 13 | 14 |

Bienvenido al posicionamiento Sticy

15 | 16 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quibusdam optio, officia, quam animi veniam deleniti 17 | exercitationem obcaecati odio unde ullam error distinctio quidem ad dicta impedit saepe magnam perferendis 18 | ipsum. Atque in provident, consequatur accusamus molestiae at consequuntur doloremque distinctio et quae soluta 19 | corporis, impedit facilis quia, deserunt quam aliquid enim repudiandae. Non, omnis culpa. Maxime, nesciunt 20 | ratione quisquam consequatur rem natus, accusantium nihil voluptatem fuga magnam ipsa tempore ipsam, quidem 21 | impedit numquam voluptas deleniti omnis aliquid doloremque odio aliquam placeat molestias! Natus praesentium 22 | impedit ex quis, iste, ad iure veritatis recusandae itaque aspernatur vitae architecto in vel, voluptates eum? 23 |

24 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quibusdam optio, officia, quam animi veniam deleniti 25 | exercitationem obcaecati odio unde ullam error distinctio quidem ad dicta impedit saepe magnam perferendis 26 | ipsum. Atque in provident, consequatur accusamus molestiae at consequuntur doloremque distinctio et quae soluta 27 | corporis, impedit facilis quia, deserunt quam aliquid enim repudiandae. Non, omnis culpa. Maxime, nesciunt 28 | ratione quisquam consequatur rem natus, accusantium nihil 29 |

30 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quibusdam optio, officia, quam animi veniam deleniti 31 | exercitationem obcaecati odio unde ullam error distinctio quidem ad dicta impedit saepe magnam perferendis 32 | ipsum. Atque in provident, consequatur accusamus molestiae at consequuntur doloremque distinctio et quae soluta 33 | corporis, impedit facilis quia, deserunt quam aliquid enim repudiandae. Non, omnis culpa. Maxime, nesciunt 34 | ratione quisquam consequatur rem natus, accusantium nihil 35 |

36 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quibusdam optio, officia, quam animi veniam deleniti 37 | exercitationem obcaecati odio unde ullam error distinctio quidem ad dicta impedit saepe magnam perferendis 38 | ipsum. Atque in provident, consequatur accusamus molestiae at consequuntur doloremque distinctio et quae soluta 39 | corporis, impedit facilis quia, deserunt quam aliquid enim repudiandae. Non, omnis culpa. Maxime, nesciunt 40 | ratione quisquam consequatur rem natus, accusantium nihil 41 |

42 | 43 | 44 |
45 |
46 |
47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /07-Position/sticky/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | } 4 | 5 | body{ 6 | font-family: Arial; 7 | min-height: 300vh; 8 | } 9 | 10 | .container{ 11 | width: 200vw; 12 | height: 300px; 13 | background-color: aquamarine; 14 | } 15 | 16 | 17 | .sticky{ 18 | width: 140px; 19 | height: 140px; 20 | background-color: slateblue; 21 | position: sticky; 22 | 23 | 24 | left: 40px; 25 | } -------------------------------------------------------------------------------- /07-Position/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | 7 | body{ 8 | font-family: Arial; 9 | } 10 | 11 | .element{ 12 | margin: 80px auto; 13 | width: 50%; 14 | height: 200px; 15 | background-color: royalblue; 16 | } 17 | 18 | 19 | @media (min-width:600px){ 20 | 21 | 22 | .element{ 23 | background-color: crimson; 24 | } 25 | 26 | } 27 | 28 | @media (min-width:900px){ 29 | 30 | 31 | .element{ 32 | background-color: #000; 33 | } 34 | 35 | } 36 | 37 | 38 | 39 | /* @media (max-width: 800px){ 40 | 41 | 42 | .element{ 43 | background-color: crimson; 44 | } 45 | 46 | } 47 | 48 | 49 | @media (max-width: 500px){ 50 | 51 | 52 | .element{ 53 | background-color: blueviolet; 54 | } 55 | 56 | } */ 57 | 58 | 59 | -------------------------------------------------------------------------------- /08-Media-Queries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Position 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 |
Relative
16 |
Absolute
17 |
Fixed
18 | 19 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /08-Media-Queries/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | body{ 7 | font-family: Arial; 8 | min-height: 500vh; 9 | } 10 | 11 | .container{ 12 | width: 90%; 13 | height: 500px; 14 | border: 2px solid #000; 15 | margin: 80px auto; 16 | position: relative; 17 | 18 | } 19 | 20 | .position{ 21 | width: 150px; 22 | height: 100px; 23 | font-size: 1.3rem; 24 | line-height: 100px; 25 | text-align: center; 26 | color: #fff; 27 | 28 | /* z-index: ; */ 29 | } 30 | 31 | .static{ 32 | background-color: midnightblue; 33 | } 34 | 35 | .relative{ 36 | background-color: tomato; 37 | position: relative; 38 | /* top: ; 39 | left: ; 40 | bottom: ; 41 | right: ; */ 42 | /* top: 100px; */ 43 | /* right: -100px; */ 44 | /* left: -100px; */ 45 | /* bottom: -100px; */ 46 | /* 47 | top: 300px; 48 | left: 200px; */ 49 | z-index: 10; 50 | } 51 | 52 | .absolute{ 53 | position: absolute; 54 | background-color: purple; 55 | top: 60px; 56 | left: 40px; 57 | /* position: absolute; 58 | top: 0; 59 | right: 0; */ 60 | z-index: 100; 61 | } 62 | 63 | .fixed{ 64 | background-color: royalblue; 65 | position: fixed; 66 | top: 100px; 67 | left: 80px; 68 | z-index: 50; 69 | } -------------------------------------------------------------------------------- /09-Card/img/tenis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/09-Card/img/tenis.jpg -------------------------------------------------------------------------------- /09-Card/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Cards 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 |
18 |

Producto #1

19 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod, quae repudiandae. Animi, voluptates deleniti laudantium quas placeat eius officia earum amet rerum maiores temporibus explicabo perferendis eaque id sunt? Exercitationem!

20 | Quiero saber más 21 |
22 |
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /09-Card/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | body{ 7 | font-family: 'Arial'; 8 | } 9 | 10 | .card{ 11 | width: 350px; 12 | margin: 80px auto; 13 | box-shadow: 0 0 3px; 14 | border-radius: 1em; 15 | } 16 | 17 | .card-img{ 18 | width: 100%; 19 | display: block; 20 | border-radius: 1em 1em 0 0; 21 | } 22 | 23 | .card-container{ 24 | border-radius: 0 0 1em 1em; 25 | padding: 40px 15px; 26 | text-align: center; 27 | } 28 | 29 | 30 | .card-title{ 31 | margin-bottom: 10px; 32 | } 33 | 34 | .card-paragraph{ 35 | line-height: 1.5; 36 | text-align: start; 37 | } 38 | 39 | .card-button{ 40 | display: inline-block; 41 | background-color: #CC021C; 42 | color: #fff; 43 | text-decoration: none; 44 | padding: 1em 2em; 45 | margin-top: 1em; 46 | border-radius: 2em; 47 | } -------------------------------------------------------------------------------- /10-Flexbox/img/Column-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/10-Flexbox/img/Column-reverse.png -------------------------------------------------------------------------------- /10-Flexbox/img/Column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/10-Flexbox/img/Column.png -------------------------------------------------------------------------------- /10-Flexbox/img/Row-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/10-Flexbox/img/Row-reverse.png -------------------------------------------------------------------------------- /10-Flexbox/img/Row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/10-Flexbox/img/Row.png -------------------------------------------------------------------------------- /10-Flexbox/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Flexbox 8 | 9 | 10 | 11 | 12 |
13 |
#1
14 |
#2
15 |
#3
16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /10-Flexbox/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | body{ 7 | font-family: 'Arial'; 8 | } 9 | 10 | .flex{ 11 | width: 400px; 12 | height: 600px; 13 | margin: 80px auto; 14 | outline: 3px solid #000; 15 | 16 | display: flex; 17 | /* flex-direction: column-reverse; */ 18 | /* row | row-reverse | colunmn | column-reverse */ 19 | 20 | /* flex-wrap: wrap-reverse; */ 21 | 22 | 23 | /* justify-content: space-evenly; */ 24 | /* align-items: baseline; */ 25 | /* flex-wrap: wrap; */ 26 | 27 | /* align-content: space-evenly; */ 28 | } 29 | 30 | .element{ 31 | color: #fff; 32 | font-size: 2rem; 33 | text-align: center; 34 | line-height: 100px; 35 | 36 | width: 400px; 37 | height: 100px; 38 | 39 | /* flex-shrink: 1; */ 40 | /* 200 / 4 = 50px*/ 41 | } 42 | 43 | .element1{ 44 | background-color: crimson; 45 | } 46 | 47 | .element2{ 48 | background-color: purple; 49 | } 50 | 51 | .element3{ 52 | background-color: steelblue; 53 | align-self: center; 54 | } -------------------------------------------------------------------------------- /11-Landing-Page/illustration.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11-Landing-Page/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Landing Page 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 | 23 |
24 | 25 |
26 |

¡Hola! Bienvenido a Codigo Facilito

27 |

Aprende desarrollo web con HTML5, CSS y JavaScript. Backend con Python. React, Go, 28 | Laravel. Desarrollo móvil con Android, Flutter y mucho más. Desde tu casa.

29 | Aprende Ahora 30 |
31 |
32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /11-Landing-Page/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | body{ 7 | font-family: 'Poppins', sans-serif; 8 | } 9 | 10 | .hero{ 11 | background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 12 | height: 100vh; 13 | min-height: 650px; 14 | } 15 | 16 | .hero-container{ 17 | height: 100%; 18 | width: 90%; 19 | max-width: 1200px; 20 | overflow: hidden; 21 | margin: 0 auto; 22 | display: flex; 23 | flex-direction: column; 24 | justify-content: center; 25 | } 26 | 27 | .hero-texts{ 28 | color: #fff; 29 | } 30 | 31 | .hero-title{ 32 | font-size: 2rem; 33 | } 34 | 35 | .hero-copy{ 36 | line-height: 1.5; 37 | margin: .5em 0; 38 | } 39 | 40 | .hero-cta{ 41 | background-color: #fff; 42 | text-decoration: none; 43 | color: #667EEA; 44 | padding: 1em 2em; 45 | display: inline-block; 46 | } 47 | 48 | .hero-pic{ 49 | width: 90%; 50 | max-width: 400px; 51 | margin:0 auto; 52 | margin-bottom: 40px; 53 | 54 | } 55 | 56 | .hero-img{ 57 | 58 | width: 100%; 59 | display: block; 60 | } 61 | 62 | @media (min-width:768px){ 63 | .hero-container{ 64 | flex-direction: row; 65 | align-items: center; 66 | justify-content: space-between; 67 | } 68 | 69 | .hero-texts{ 70 | width: 50%; 71 | } 72 | 73 | .hero-pic{ 74 | width: 45%; 75 | margin-bottom: 0; 76 | order: 1; 77 | } 78 | 79 | .hero-title{ 80 | font-size: 2.5rem; 81 | } 82 | 83 | .hero-copy{ 84 | margin: .7em 0 1em; 85 | } 86 | } -------------------------------------------------------------------------------- /12-Custom-Properties/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Custom Properties 8 | 9 | 10 | 11 | 12 |
13 |

Bienvenido a Cody

14 | 15 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Error voluptate aliquid neque, optio impedit officia qui eos iste reprehenderit, molestias beatae suscipit omnis pariatur quas perferendis. Illo nostrum possimus ipsa.

16 |
17 | 18 | Hola mundo 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /12-Custom-Properties/style.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --bordes-colors:7px dashed black; 3 | --color-principal: black; 4 | 5 | --padding-botones:15px 30px; 6 | 7 | --gradientes: linear-gradient(royalblue, hotpink); 8 | } 9 | 10 | *{ 11 | box-sizing: border-box; 12 | } 13 | 14 | body{ 15 | font-family: Arial; 16 | } 17 | 18 | .container{ 19 | --color-principal: royalblue; 20 | --fuentes: cursive; 21 | } 22 | 23 | .title{ 24 | border: var(--bordes-colors); 25 | color:var(--color-principal); 26 | font-family: var(--fuentes); 27 | } 28 | 29 | .btn{ 30 | border: var(--bordes-colors); 31 | display: inline-block; 32 | padding: var(--padding-botones); 33 | /* background-image:var(--gradientes); */ 34 | background-color: var(--color-principal); 35 | color: #fff; 36 | text-decoration: none; 37 | } 38 | 39 | .paragraph{ 40 | border: var(--bordes-colors); 41 | color:var(--color-principal); 42 | font-family: var(--fuentes); 43 | } -------------------------------------------------------------------------------- /13-GRID/grid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/grid1.png -------------------------------------------------------------------------------- /13-GRID/grid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/grid2.png -------------------------------------------------------------------------------- /13-GRID/grid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/grid3.png -------------------------------------------------------------------------------- /13-GRID/grid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/grid4.png -------------------------------------------------------------------------------- /13-GRID/grid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/grid5.png -------------------------------------------------------------------------------- /13-GRID/img/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/img/image1.jpg -------------------------------------------------------------------------------- /13-GRID/img/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/img/image2.jpg -------------------------------------------------------------------------------- /13-GRID/img/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/img/image3.jpg -------------------------------------------------------------------------------- /13-GRID/img/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/img/image4.jpg -------------------------------------------------------------------------------- /13-GRID/img/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/img/image5.jpg -------------------------------------------------------------------------------- /13-GRID/img/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/13-GRID/img/image6.jpg -------------------------------------------------------------------------------- /13-GRID/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | GRID 9 | 10 | 11 | 12 | 13 | 14 |
15 |
#1
16 |
#2
17 |
#3
18 |
#4
19 |
#5
20 |
#6
21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /13-GRID/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | box-sizing: border-box; 4 | } 5 | 6 | 7 | body{ 8 | font-family: 'Arial'; 9 | } 10 | 11 | .container{ 12 | width: 90%; 13 | /* height: 600px; */ 14 | /* outline: 2px solid; */ 15 | margin: 40px auto; 16 | display: grid; 17 | 18 | 19 | grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); 20 | grid-auto-rows: 250px; 21 | gap: 10px; 22 | 23 | /* grid-template-areas: 24 | "nav nav nav nav nav" 25 | "main main main side side" 26 | "main main main side side" 27 | "main main main side side" 28 | "footer footer footer footer ."; */ 29 | 30 | 31 | } 32 | 33 | .item{ 34 | color: #fff; 35 | font-size: 2em; 36 | display: flex; 37 | align-items: center; 38 | justify-content: center; 39 | background-size: cover; 40 | background-position: center; 41 | } 42 | 43 | .item1{ 44 | background-color: slateblue; 45 | background-image: url("img/image1.jpg"); 46 | /* grid-column: 1/4; 47 | grid-row: 1/3; */ 48 | 49 | /* grid-area: nav; */ 50 | } 51 | 52 | .item2{ 53 | background-color: deeppink; 54 | background-image: url("img/image2.jpg"); 55 | /* grid-column: 4/6; 56 | grid-row: 1/5; */ 57 | /* grid-area: main; */ 58 | } 59 | 60 | .item3{ 61 | background-image: url("img/image3.jpg"); 62 | /* grid-column: 1/-1; 63 | grid-row: 5/6; */ 64 | /* grid-area: footer; */ 65 | } 66 | 67 | .item4{ 68 | background-image: url("img/image4.jpg"); 69 | /* grid-column: 1/3; 70 | grid-row: 3/5; */ 71 | /* grid-area: side; */ 72 | } 73 | 74 | .item5{ 75 | background-image: url("img/image5.jpg"); 76 | /* grid-row: 3/5; */ 77 | } 78 | 79 | .item6{ 80 | background-image: url("img/image6.jpg"); 81 | /* grid-row: 3/5; */ 82 | } 83 | 84 | -------------------------------------------------------------------------------- /14-Shadow-radius/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Shadow y Radius 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /14-Shadow-radius/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0; 4 | } 5 | 6 | .element{ 7 | margin: 100px; 8 | width: 200px; 9 | height: 200px; 10 | background-color: slateblue; 11 | 12 | /* box-shadow:100px 200px 10px blue, 100px 100px; */ 13 | border-radius: 50px 100px ; 14 | 15 | /* border-top-left-radius: 50px; 16 | border-top-right-radius: 100px; 17 | border-bottom-right-radius: 10px; 18 | border-bottom-left-radius: 30px; */ 19 | } -------------------------------------------------------------------------------- /15-Selectores/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Selectores 8 | 9 | 10 | 11 | 12 |
Hola mundo
13 | 14 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /15-Selectores/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0; 4 | } 5 | 6 | body{ 7 | font-family: Arial; 8 | } 9 | 10 | .button{ 11 | margin: 50px; 12 | display: block; 13 | color: #fff; 14 | text-decoration: none; 15 | padding: 20px 0; 16 | text-align: center; 17 | width: 200px; 18 | transition: .3s all; 19 | } 20 | 21 | 22 | 23 | .btn-blue{ 24 | background-color: slateblue; 25 | } 26 | 27 | /* .btn-blue:active{ 28 | font-size: 30px; 29 | } */ 30 | 31 | 32 | .btn-red{ 33 | background-color: crimson; 34 | } 35 | 36 | /* .btn-red:hover{ 37 | transform: scale(1.2); 38 | } */ 39 | 40 | .btn-tomato{ 41 | background-color: tomato; 42 | } 43 | 44 | /* .elemento_referencia + .hermano_siguiete{ 45 | 46 | } */ 47 | 48 | /* .btn-blue:hover ~ .button{ 49 | transform: translate(100%); 50 | } */ 51 | 52 | 53 | 54 | 55 | 56 | /* 57 | .element:target{ 58 | transform: translate(100%); 59 | } */ 60 | 61 | .input{ 62 | display:block; 63 | margin: 20px; 64 | padding: 16px; 65 | font-size: inherit; 66 | font-family: inherit; 67 | } 68 | 69 | /* .input:focus + .label{ 70 | background-color: aqua; 71 | } */ 72 | 73 | 74 | .label{ 75 | 76 | background-color: crimson; 77 | color: #fff; 78 | } 79 | 80 | .check{ 81 | display: inline-block; 82 | margin-top: 20px; 83 | margin-bottom: 20px; 84 | margin-left: 20px; 85 | } 86 | 87 | .check:checked + .label{ 88 | background-color: green; 89 | 90 | } 91 | 92 | .element{ 93 | width: max-content; 94 | padding: 20px; 95 | background-color: steelblue; 96 | color: #fff; 97 | font-size: 30px; 98 | margin: 60px; 99 | 100 | } 101 | 102 | .element::before{ 103 | content: ""; 104 | display: block; 105 | background-color: green; 106 | width: 300px; 107 | height: 200px; 108 | } 109 | 110 | 111 | .element::after{ 112 | content: ""; 113 | display: block; 114 | padding: 16px; 115 | background-color: crimson; 116 | width: 300px; 117 | height: 500px; 118 | } -------------------------------------------------------------------------------- /16-Transform/Flujo del navegador (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/16-Transform/Flujo del navegador (1).png -------------------------------------------------------------------------------- /16-Transform/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Selectores 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /16-Transform/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0; 4 | } 5 | 6 | .element:hover{ 7 | 8 | } 9 | 10 | 11 | .element{ 12 | width: 200px; 13 | height: 200px; 14 | background-color: steelblue; 15 | margin: 60px; 16 | /* transition: 1s; */ 17 | 18 | /* transform: scaleX(2) rotate(90deg) ; */ 19 | 20 | 21 | /* transform: translate(100px, 200px); */ 22 | /* transform: rotate(130deg); */ 23 | 24 | /* transform: scale(2,1); */ 25 | 26 | /* transform: skewX(40deg) ; */ 27 | 28 | 29 | 30 | 31 | /* 32 | 0 360 deg 33 | 0 400 grad 34 | 0 6.28 rad 35 | 0 1 turn 36 | */ 37 | 38 | } 39 | 40 | .element2{ 41 | background-color: tomato; 42 | transform: unset; 43 | } -------------------------------------------------------------------------------- /17-Transiciones/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Selectores 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /17-Transiciones/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0; 4 | } 5 | 6 | .element{ 7 | width: 200px; 8 | height: 200px; 9 | background-color: #000; 10 | margin: 60px; 11 | border-radius: 50%; 12 | 13 | /* animation-name: mover; 14 | animation-duration: 1s; 15 | animation-timing-function: ease; 16 | animation-iteration-count: infinite; 17 | animation-direction:alternate; */ 18 | /* animation-delay: 3s; */ 19 | /* animation-fill-mode: both; */ 20 | 21 | /* animation: name duration timing-function delay iteration-count direction fill-mode; */ 22 | 23 | animation: infinite ease-in alternate 2s both 2s mover ; 24 | } 25 | 26 | /* .element:hover{ 27 | animation-play-state: running; 28 | } */ 29 | 30 | @keyframes mover { 31 | 0%{ 32 | transform: translate(0) scale(.5); 33 | background-color: crimson; 34 | } 35 | 25%{ 36 | transform: translate(100%); 37 | background-color: salmon; 38 | } 39 | 50%{ 40 | transform: translate(100%, 100%); 41 | background-color: slateblue; 42 | } 43 | 75%{ 44 | transform: translate(0, 100%); 45 | background-color: teal; 46 | } 47 | 100%{ 48 | transform: translate(100%, 100%); 49 | } 50 | } 51 | 52 | @keyframes crecer { 53 | 0%{ 54 | transform: scaleY(1); 55 | } 56 | 20%{ 57 | transform: scaleY(1.2); 58 | } 59 | 30%{ 60 | transform: scaleY(2); 61 | } 62 | 60%{ 63 | transform: scaleY(1.5); 64 | } 65 | 100%{ 66 | transform: scaleY(2.3); 67 | } 68 | } 69 | 70 | @keyframes cambia-color { 71 | from{ 72 | background-color: #000; 73 | } 74 | 75 | to{ 76 | background-color: steelblue; 77 | } 78 | } 79 | 80 | 81 | -------------------------------------------------------------------------------- /18-Animaciones/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Selectores 8 | 9 | 10 | 11 | 12 |
13 | 14 |
15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /18-Animaciones/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | box-sizing: border-box; 3 | margin: 0; 4 | } 5 | 6 | 7 | 8 | .element{ 9 | width: 200px; 10 | height: 200px; 11 | background-color: steelblue; 12 | margin: 60px; 13 | 14 | /* transition-property: all; 15 | transition-duration:0s; 16 | transition-timing-function:ease; 17 | transition-delay: 0s; */ 18 | 19 | transition:ease-in transform 1s 2s ; 20 | 21 | /* */ 22 | } 23 | 24 | 25 | .container:hover .element{ 26 | background-color: #000; 27 | transform: translate(200px); 28 | } -------------------------------------------------------------------------------- /19-Room-homepage-master/.gitignore: -------------------------------------------------------------------------------- 1 | # Avoid accidental Sketch file upload 2 | ############################################### 3 | ## Please do not remove line 5 - thanks! 🙂 ## 4 | ############################################### 5 | *.sketch 6 | 7 | # Avoid accidental XD or Figma upload if you convert the design file 8 | ####################################################### 9 | ## Please do not remove lines 11 and 12 - thanks! 🙂 ## 10 | ####################################################### 11 | *.xd 12 | *.fig 13 | 14 | # Avoid your project being littered with annoying .DS_Store files! 15 | .DS_Store 16 | 17 | .prettierignore -------------------------------------------------------------------------------- /19-Room-homepage-master/README-template.md: -------------------------------------------------------------------------------- 1 | # Frontend Mentor - Room homepage solution 2 | 3 | This is a solution to the [Room homepage challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/room-homepage-BtdBY_ENq). Frontend Mentor challenges help you improve your coding skills by building realistic projects. 4 | 5 | ## Table of contents 6 | 7 | - [Overview](#overview) 8 | - [The challenge](#the-challenge) 9 | - [Screenshot](#screenshot) 10 | - [Links](#links) 11 | - [My process](#my-process) 12 | - [Built with](#built-with) 13 | - [What I learned](#what-i-learned) 14 | - [Continued development](#continued-development) 15 | - [Useful resources](#useful-resources) 16 | - [Author](#author) 17 | - [Acknowledgments](#acknowledgments) 18 | 19 | **Note: Delete this note and update the table of contents based on what sections you keep.** 20 | 21 | ## Overview 22 | 23 | ### The challenge 24 | 25 | Users should be able to: 26 | 27 | - View the optimal layout for the site depending on their device's screen size 28 | - See hover states for all interactive elements on the page 29 | - Navigate the slider using either their mouse/trackpad or keyboard 30 | 31 | ### Screenshot 32 | 33 | ![](./screenshot.jpg) 34 | 35 | Add a screenshot of your solution. The easiest way to do this is to use Firefox to view your project, right-click the page and select "Take a Screenshot". You can choose either a full-height screenshot or a cropped one based on how long the page is. If it's very long, it might be best to crop it. 36 | 37 | Alternatively, you can use a tool like [FireShot](https://getfireshot.com/) to take the screenshot. FireShot has a free option, so you don't need to purchase it. 38 | 39 | Then crop/optimize/edit your image however you like, add it to your project, and update the file path in the image above. 40 | 41 | **Note: Delete this note and the paragraphs above when you add your screenshot. If you prefer not to add a screenshot, feel free to remove this entire section.** 42 | 43 | ### Links 44 | 45 | - Solution URL: [Add solution URL here](https://your-solution-url.com) 46 | - Live Site URL: [Add live site URL here](https://your-live-site-url.com) 47 | 48 | ## My process 49 | 50 | ### Built with 51 | 52 | - Semantic HTML5 markup 53 | - CSS custom properties 54 | - Flexbox 55 | - CSS Grid 56 | - Mobile-first workflow 57 | - [React](https://reactjs.org/) - JS library 58 | - [Next.js](https://nextjs.org/) - React framework 59 | - [Styled Components](https://styled-components.com/) - For styles 60 | 61 | **Note: These are just examples. Delete this note and replace the list above with your own choices** 62 | 63 | ### What I learned 64 | 65 | Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge. 66 | 67 | To see how you can add code snippets, see below: 68 | 69 | ```html 70 |

Some HTML code I'm proud of

71 | ``` 72 | ```css 73 | .proud-of-this-css { 74 | color: papayawhip; 75 | } 76 | ``` 77 | ```js 78 | const proudOfThisFunc = () => { 79 | console.log('🎉') 80 | } 81 | ``` 82 | 83 | If you want more help with writing markdown, we'd recommend checking out [The Markdown Guide](https://www.markdownguide.org/) to learn more. 84 | 85 | **Note: Delete this note and the content within this section and replace with your own learnings.** 86 | 87 | ### Continued development 88 | 89 | Use this section to outline areas that you want to continue focusing on in future projects. These could be concepts you're still not completely comfortable with or techniques you found useful that you want to refine and perfect. 90 | 91 | **Note: Delete this note and the content within this section and replace with your own plans for continued development.** 92 | 93 | ### Useful resources 94 | 95 | - [Example resource 1](https://www.example.com) - This helped me for XYZ reason. I really liked this pattern and will use it going forward. 96 | - [Example resource 2](https://www.example.com) - This is an amazing article which helped me finally understand XYZ. I'd recommend it to anyone still learning this concept. 97 | 98 | **Note: Delete this note and replace the list above with resources that helped you during the challenge. These could come in handy for anyone viewing your solution or for yourself when you look back on this project in the future.** 99 | 100 | ## Author 101 | 102 | - Website - [Add your name here](https://www.your-site.com) 103 | - Frontend Mentor - [@yourusername](https://www.frontendmentor.io/profile/yourusername) 104 | - Twitter - [@yourusername](https://www.twitter.com/yourusername) 105 | 106 | **Note: Delete this note and add/remove/edit lines above based on what links you'd like to share.** 107 | 108 | ## Acknowledgments 109 | 110 | This is where you can give a hat tip to anyone who helped you out on this project. Perhaps you worked in a team or got some inspiration from someone else's solution. This is the perfect place to give them some credit. 111 | 112 | **Note: Delete this note and edit this section's content as necessary. If you completed this challenge by yourself, feel free to delete this section entirely.** 113 | -------------------------------------------------------------------------------- /19-Room-homepage-master/README.md: -------------------------------------------------------------------------------- 1 | # Frontend Mentor - Room homepage 2 | 3 | ![Design preview for the Room homepage coding challenge](./design/desktop-preview.jpg) 4 | 5 | ## Welcome! 👋 6 | 7 | Thanks for checking out this front-end coding challenge. 8 | 9 | [Frontend Mentor](https://www.frontendmentor.io) challenges help you improve your coding skills by building realistic projects. 10 | 11 | **To do this challenge, you need a basic understanding of HTML, CSS and JavaScript.** 12 | 13 | ## The challenge 14 | 15 | Your challenge is to build out this e-commerce homepage and get it looking as close to the design as possible. 16 | 17 | You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go. 18 | 19 | Your users should be able to: 20 | 21 | - View the optimal layout for the site depending on their device's screen size 22 | - See hover states for all interactive elements on the page 23 | - Navigate the slider using either their mouse/trackpad or keyboard 24 | 25 | Want some support on the challenge? [Join our Slack community](https://www.frontendmentor.io/slack) and ask questions in the **#help** channel. 26 | 27 | ## Where to find everything 28 | 29 | Your task is to build out the project to the designs inside the `/design` folder. You will find both a mobile and a desktop version of the design. 30 | 31 | The designs are in JPG static format. Using JPGs will mean that you'll need to use your best judgment for styles such as `font-size`, `padding` and `margin`. 32 | 33 | If you would like the design files (we provide Sketch & Figma versions) to inspect the design in more detail, you can [subscribe as a PRO member](https://www.frontendmentor.io/pro). 34 | 35 | You will find all the required assets in the `/images` folder. The assets are already optimized. 36 | 37 | There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts. 38 | 39 | ## Building your project 40 | 41 | Feel free to use any workflow that you feel comfortable with. Below is a suggested process, but do not feel like you need to follow these steps: 42 | 43 | 1. Initialize your project as a public repository on [GitHub](https://github.com/). Creating a repo will make it easier to share your code with the community if you need help. If you're not sure how to do this, [have a read-through of this Try Git resource](https://try.github.io/). 44 | 2. Configure your repository to publish your code to a web address. This will also be useful if you need some help during a challenge as you can share the URL for your project with your repo URL. There are a number of ways to do this, and we provide some recommendations below. 45 | 3. Look through the designs to start planning out how you'll tackle the project. This step is crucial to help you think ahead for CSS classes to create reusable styles. 46 | 4. Before adding any styles, structure your content with HTML. Writing your HTML first can help focus your attention on creating well-structured content. 47 | 5. Write out the base styles for your project, including general content styles, such as `font-family` and `font-size`. 48 | 6. Start adding styles to the top of the page and work down. Only move on to the next section once you're happy you've completed the area you're working on. 49 | 50 | ## Deploying your project 51 | 52 | As mentioned above, there are many ways to host your project for free. Our recommend hosts are: 53 | 54 | - [GitHub Pages](https://pages.github.com/) 55 | - [Vercel](https://vercel.com/) 56 | - [Netlify](https://www.netlify.com/) 57 | 58 | You can host your site using one of these solutions or any of our other trusted providers. [Read more about our recommended and trusted hosts](https://medium.com/frontend-mentor/frontend-mentor-trusted-hosting-providers-bf000dfebe). 59 | 60 | ## Create a custom `README.md` 61 | 62 | We strongly recommend overwriting this `README.md` with a custom one. We've provided a template inside the [`README-template.md`](./README-template.md) file in this starter code. 63 | 64 | The template provides a guide for what to add. A custom `README` will help you explain your project and reflect on your learnings. Please feel free to edit our template as much as you like. 65 | 66 | Once you've added your information to the template, delete this file and rename the `README-template.md` file to `README.md`. That will make it show up as your repository's README file. 67 | 68 | ## Submitting your solution 69 | 70 | Submit your solution on the platform for the rest of the community to see. Follow our ["Complete guide to submitting solutions"](https://medium.com/frontend-mentor/a-complete-guide-to-submitting-solutions-on-frontend-mentor-ac6384162248) for tips on how to do this. 71 | 72 | Remember, if you're looking for feedback on your solution, be sure to ask questions when submitting it. The more specific and detailed you are with your questions, the higher the chance you'll get valuable feedback from the community. 73 | 74 | ## Sharing your solution 75 | 76 | There are multiple places you can share your solution: 77 | 78 | 1. Share your solution page in the **#finished-projects** channel of the [Slack community](https://www.frontendmentor.io/slack). 79 | 2. Tweet [@frontendmentor](https://twitter.com/frontendmentor) and mention **@frontendmentor**, including the repo and live URLs in the tweet. We'd love to take a look at what you've built and help share it around. 80 | 3. Share your solution on other social channels like LinkedIn. 81 | 4. Blog about your experience building your project. Writing about your workflow, technical choices, and talking through your code is a brilliant way to reinforce what you've learned. Great platforms to write on are [dev.to](https://dev.to/), [Hashnode](https://hashnode.com/), and [CodeNewbie](https://community.codenewbie.org/). 82 | 83 | We provide templates to help you share your solution once you've submitted it on the platform. Please do edit them and include specific questions when you're looking for feedback. 84 | 85 | The more specific you are with your questions the more likely it is that another member of the community will give you feedback. 86 | 87 | ## Got feedback for us? 88 | 89 | We love receiving feedback! We're always looking to improve our challenges and our platform. So if you have anything you'd like to mention, please email hi[at]frontendmentor[dot]io. 90 | 91 | This challenge is completely free. Please share it with anyone who will find it useful for practice. 92 | 93 | **Have fun building!** 🚀 94 | -------------------------------------------------------------------------------- /19-Room-homepage-master/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/design/active-states.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/design/desktop-design-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/design/desktop-design-slide-1.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/design/desktop-design-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/design/desktop-design-slide-2.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/design/desktop-design-slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/design/desktop-design-slide-3.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/design/desktop-preview.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/design/mobile-design.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/design/mobile-navigation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/design/mobile-navigation.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/desktop-image-hero-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/desktop-image-hero-1.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/desktop-image-hero-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/desktop-image-hero-2.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/desktop-image-hero-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/desktop-image-hero-3.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/favicon-32x32.png -------------------------------------------------------------------------------- /19-Room-homepage-master/images/icon-angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19-Room-homepage-master/images/icon-angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19-Room-homepage-master/images/icon-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19-Room-homepage-master/images/icon-close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19-Room-homepage-master/images/icon-hamburger.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19-Room-homepage-master/images/image-about-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/image-about-dark.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/image-about-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/image-about-light.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /19-Room-homepage-master/images/mobile-image-hero-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/mobile-image-hero-1.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/mobile-image-hero-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/mobile-image-hero-2.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/images/mobile-image-hero-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/19-Room-homepage-master/images/mobile-image-hero-3.jpg -------------------------------------------------------------------------------- /19-Room-homepage-master/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Frontend Mentor | Room homepage 10 | 11 | 12 | 16 | 17 | 18 | Home 19 | Shop 20 | About 21 | Contact 22 | 23 | Discover innovative ways to decorate 24 | 25 | We provide unmatched quality, comfort, and style for property owners across the country. 26 | Our experts combine form and function in bringing your vision to life. Create a room in your 27 | own style with our collection and make your property a reflection of you and what you love. 28 | 29 | Shop now 30 | 31 | We are available all across the globe 32 | 33 | With stores all over the world, it's easy for you to find furniture for your home or place of business. 34 | Locally, we’re in most major cities throughout the country. Find the branch nearest you using our 35 | store locator. Any questions? Don't hesitate to contact us today. 36 | 37 | Shop now 38 | 39 | Manufactured with the best materials 40 | 41 | Our modern furniture store provide a high level of quality. Our company has invested in advanced technology 42 | to ensure that every product is made as perfect and as consistent as possible. With three decades of 43 | experience in this industry, we understand what customers want for their home and office. 44 | 45 | Shop now 46 | 47 | About our furniture 48 | 49 | Our multifunctional collection blends design and function to suit your individual taste. 50 | Make each room unique, or pick a cohesive theme that best express your interests and what 51 | inspires you. Find the furniture pieces you need, from traditional to contemporary styles 52 | or anything in between. Product specialists are available to help you create your dream space. 53 | 54 |
55 | Challenge by Frontend Mentor. 56 | Coded by Your Name Here. 57 |
58 | 59 | 60 | -------------------------------------------------------------------------------- /19-Room-homepage-master/style-guide.md: -------------------------------------------------------------------------------- 1 | # Front-end Style Guide 2 | 3 | ## Layout 4 | 5 | The designs were created to the following widths: 6 | 7 | - Mobile: 375px 8 | - Desktop: 1440px 9 | 10 | ## Colors 11 | 12 | ### Primary 13 | 14 | - Dark Gray: hsl(0, 0%, 63%) 15 | - Black: hsl(0, 0%, 0%) 16 | - White: hsl(0, 0%, 100%) 17 | - Very Dark Gray: hsl(0, 0%, 27%) 18 | 19 | ## Typography 20 | 21 | ### Body Copy 22 | 23 | - Font size: 12px 24 | 25 | ### Font 26 | 27 | - Family: [Spartan](https://fonts.google.com/specimen/Spartan) 28 | - Weights: 500, 600, 700 29 | -------------------------------------------------------------------------------- /Formulario/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Formulario/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Formulario 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 |

Inicia Sesión

19 |

¿Aún no tienes una cuenta? Entra aquí

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 | -------------------------------------------------------------------------------- /Formulario/style.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --main-color: #3866f2; 3 | } 4 | 5 | *{ 6 | margin: 0; 7 | box-sizing: border-box; 8 | } 9 | 10 | body{ 11 | font-family: 'Roboto', sans-serif; 12 | background-color: #e5e5f7; 13 | display: flex; 14 | align-items: center; 15 | min-height: 100vh; 16 | } 17 | 18 | 19 | .form{ 20 | background-color: #fff; 21 | width: 90%; 22 | max-width: 400px; 23 | margin: 0 auto; 24 | padding: 4.5em 3em; 25 | border-radius: 10px; 26 | box-shadow: 0 5px 10px -5px rgb(0, 0, 0, .3); 27 | text-align: center; 28 | } 29 | 30 | .form__title{ 31 | font-size: 2rem; 32 | margin-bottom: .5em; 33 | } 34 | 35 | .form__paragraph{ 36 | font-weight: 300; 37 | } 38 | 39 | .form__link{ 40 | font-weight: 400; 41 | color: #000; 42 | } 43 | 44 | .form__container{ 45 | margin-top: 3em; 46 | display: grid; 47 | gap: 2.5em; 48 | } 49 | 50 | .form__group{ 51 | position: relative; 52 | --color: #5757577e; 53 | } 54 | 55 | .form__input{ 56 | width: 100%; 57 | background:none; 58 | font-family: inherit; 59 | font-size: 1rem; 60 | color: #706c6c; 61 | padding: .6em .3em; 62 | border: none; 63 | outline: none; 64 | border-bottom: 1px solid var(--color); 65 | } 66 | 67 | .form__input:not(:placeholder-shown) + .form__label, 68 | .form__input:focus + .form__label{ 69 | transform: translateY(-12px) scale(.7); 70 | transform-origin:top left ; 71 | --color: #3866f2; 72 | } 73 | 74 | .form__label{ 75 | color: var(--color); 76 | cursor: pointer; 77 | position: absolute; 78 | top: 0; 79 | left: 5px; 80 | transform: translateY(10px); 81 | transition: transform .5s, color .3s; 82 | } 83 | 84 | .form__submit{ 85 | background-color: var(--main-color); 86 | color: #fff; 87 | font-family: inherit; 88 | font-size: 1rem; 89 | padding: .8em 0; 90 | border: none; 91 | border-radius: .5em; 92 | } 93 | 94 | .form__line{ 95 | position: absolute; 96 | bottom: 0; 97 | left: 0; 98 | width: 100%; 99 | height: 1px; 100 | background-color: var(--main-color); 101 | transform: scale(0); 102 | transform-origin: left bottom; 103 | transition: transform .4s; 104 | } 105 | 106 | .form__input:not(:placeholder-shown) ~ .form__line, 107 | .form__input:focus ~ .form__line{ 108 | transform: scale(1); 109 | } -------------------------------------------------------------------------------- /room-homepage-master/.gitignore: -------------------------------------------------------------------------------- 1 | # Avoid accidental Sketch file upload 2 | ############################################### 3 | ## Please do not remove line 5 - thanks! 🙂 ## 4 | ############################################### 5 | *.sketch 6 | 7 | # Avoid accidental XD or Figma upload if you convert the design file 8 | ####################################################### 9 | ## Please do not remove lines 11 and 12 - thanks! 🙂 ## 10 | ####################################################### 11 | *.xd 12 | *.fig 13 | 14 | # Avoid your project being littered with annoying .DS_Store files! 15 | .DS_Store 16 | 17 | .prettierignore -------------------------------------------------------------------------------- /room-homepage-master/README-template.md: -------------------------------------------------------------------------------- 1 | # Frontend Mentor - Room homepage solution 2 | 3 | This is a solution to the [Room homepage challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/room-homepage-BtdBY_ENq). Frontend Mentor challenges help you improve your coding skills by building realistic projects. 4 | 5 | ## Table of contents 6 | 7 | - [Overview](#overview) 8 | - [The challenge](#the-challenge) 9 | - [Screenshot](#screenshot) 10 | - [Links](#links) 11 | - [My process](#my-process) 12 | - [Built with](#built-with) 13 | - [What I learned](#what-i-learned) 14 | - [Continued development](#continued-development) 15 | - [Useful resources](#useful-resources) 16 | - [Author](#author) 17 | - [Acknowledgments](#acknowledgments) 18 | 19 | **Note: Delete this note and update the table of contents based on what sections you keep.** 20 | 21 | ## Overview 22 | 23 | ### The challenge 24 | 25 | Users should be able to: 26 | 27 | - View the optimal layout for the site depending on their device's screen size 28 | - See hover states for all interactive elements on the page 29 | - Navigate the slider using either their mouse/trackpad or keyboard 30 | 31 | ### Screenshot 32 | 33 | ![](./screenshot.jpg) 34 | 35 | Add a screenshot of your solution. The easiest way to do this is to use Firefox to view your project, right-click the page and select "Take a Screenshot". You can choose either a full-height screenshot or a cropped one based on how long the page is. If it's very long, it might be best to crop it. 36 | 37 | Alternatively, you can use a tool like [FireShot](https://getfireshot.com/) to take the screenshot. FireShot has a free option, so you don't need to purchase it. 38 | 39 | Then crop/optimize/edit your image however you like, add it to your project, and update the file path in the image above. 40 | 41 | **Note: Delete this note and the paragraphs above when you add your screenshot. If you prefer not to add a screenshot, feel free to remove this entire section.** 42 | 43 | ### Links 44 | 45 | - Solution URL: [Add solution URL here](https://your-solution-url.com) 46 | - Live Site URL: [Add live site URL here](https://your-live-site-url.com) 47 | 48 | ## My process 49 | 50 | ### Built with 51 | 52 | - Semantic HTML5 markup 53 | - CSS custom properties 54 | - Flexbox 55 | - CSS Grid 56 | - Mobile-first workflow 57 | - [React](https://reactjs.org/) - JS library 58 | - [Next.js](https://nextjs.org/) - React framework 59 | - [Styled Components](https://styled-components.com/) - For styles 60 | 61 | **Note: These are just examples. Delete this note and replace the list above with your own choices** 62 | 63 | ### What I learned 64 | 65 | Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge. 66 | 67 | To see how you can add code snippets, see below: 68 | 69 | ```html 70 |

Some HTML code I'm proud of

71 | ``` 72 | ```css 73 | .proud-of-this-css { 74 | color: papayawhip; 75 | } 76 | ``` 77 | ```js 78 | const proudOfThisFunc = () => { 79 | console.log('🎉') 80 | } 81 | ``` 82 | 83 | If you want more help with writing markdown, we'd recommend checking out [The Markdown Guide](https://www.markdownguide.org/) to learn more. 84 | 85 | **Note: Delete this note and the content within this section and replace with your own learnings.** 86 | 87 | ### Continued development 88 | 89 | Use this section to outline areas that you want to continue focusing on in future projects. These could be concepts you're still not completely comfortable with or techniques you found useful that you want to refine and perfect. 90 | 91 | **Note: Delete this note and the content within this section and replace with your own plans for continued development.** 92 | 93 | ### Useful resources 94 | 95 | - [Example resource 1](https://www.example.com) - This helped me for XYZ reason. I really liked this pattern and will use it going forward. 96 | - [Example resource 2](https://www.example.com) - This is an amazing article which helped me finally understand XYZ. I'd recommend it to anyone still learning this concept. 97 | 98 | **Note: Delete this note and replace the list above with resources that helped you during the challenge. These could come in handy for anyone viewing your solution or for yourself when you look back on this project in the future.** 99 | 100 | ## Author 101 | 102 | - Website - [Add your name here](https://www.your-site.com) 103 | - Frontend Mentor - [@yourusername](https://www.frontendmentor.io/profile/yourusername) 104 | - Twitter - [@yourusername](https://www.twitter.com/yourusername) 105 | 106 | **Note: Delete this note and add/remove/edit lines above based on what links you'd like to share.** 107 | 108 | ## Acknowledgments 109 | 110 | This is where you can give a hat tip to anyone who helped you out on this project. Perhaps you worked in a team or got some inspiration from someone else's solution. This is the perfect place to give them some credit. 111 | 112 | **Note: Delete this note and edit this section's content as necessary. If you completed this challenge by yourself, feel free to delete this section entirely.** 113 | -------------------------------------------------------------------------------- /room-homepage-master/README.md: -------------------------------------------------------------------------------- 1 | # Frontend Mentor - Room homepage 2 | 3 | ![Design preview for the Room homepage coding challenge](./design/desktop-preview.jpg) 4 | 5 | ## Welcome! 👋 6 | 7 | Thanks for checking out this front-end coding challenge. 8 | 9 | [Frontend Mentor](https://www.frontendmentor.io) challenges help you improve your coding skills by building realistic projects. 10 | 11 | **To do this challenge, you need a basic understanding of HTML, CSS and JavaScript.** 12 | 13 | ## The challenge 14 | 15 | Your challenge is to build out this e-commerce homepage and get it looking as close to the design as possible. 16 | 17 | You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go. 18 | 19 | Your users should be able to: 20 | 21 | - View the optimal layout for the site depending on their device's screen size 22 | - See hover states for all interactive elements on the page 23 | - Navigate the slider using either their mouse/trackpad or keyboard 24 | 25 | Want some support on the challenge? [Join our Slack community](https://www.frontendmentor.io/slack) and ask questions in the **#help** channel. 26 | 27 | ## Where to find everything 28 | 29 | Your task is to build out the project to the designs inside the `/design` folder. You will find both a mobile and a desktop version of the design. 30 | 31 | The designs are in JPG static format. Using JPGs will mean that you'll need to use your best judgment for styles such as `font-size`, `padding` and `margin`. 32 | 33 | If you would like the design files (we provide Sketch & Figma versions) to inspect the design in more detail, you can [subscribe as a PRO member](https://www.frontendmentor.io/pro). 34 | 35 | You will find all the required assets in the `/images` folder. The assets are already optimized. 36 | 37 | There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts. 38 | 39 | ## Building your project 40 | 41 | Feel free to use any workflow that you feel comfortable with. Below is a suggested process, but do not feel like you need to follow these steps: 42 | 43 | 1. Initialize your project as a public repository on [GitHub](https://github.com/). Creating a repo will make it easier to share your code with the community if you need help. If you're not sure how to do this, [have a read-through of this Try Git resource](https://try.github.io/). 44 | 2. Configure your repository to publish your code to a web address. This will also be useful if you need some help during a challenge as you can share the URL for your project with your repo URL. There are a number of ways to do this, and we provide some recommendations below. 45 | 3. Look through the designs to start planning out how you'll tackle the project. This step is crucial to help you think ahead for CSS classes to create reusable styles. 46 | 4. Before adding any styles, structure your content with HTML. Writing your HTML first can help focus your attention on creating well-structured content. 47 | 5. Write out the base styles for your project, including general content styles, such as `font-family` and `font-size`. 48 | 6. Start adding styles to the top of the page and work down. Only move on to the next section once you're happy you've completed the area you're working on. 49 | 50 | ## Deploying your project 51 | 52 | As mentioned above, there are many ways to host your project for free. Our recommend hosts are: 53 | 54 | - [GitHub Pages](https://pages.github.com/) 55 | - [Vercel](https://vercel.com/) 56 | - [Netlify](https://www.netlify.com/) 57 | 58 | You can host your site using one of these solutions or any of our other trusted providers. [Read more about our recommended and trusted hosts](https://medium.com/frontend-mentor/frontend-mentor-trusted-hosting-providers-bf000dfebe). 59 | 60 | ## Create a custom `README.md` 61 | 62 | We strongly recommend overwriting this `README.md` with a custom one. We've provided a template inside the [`README-template.md`](./README-template.md) file in this starter code. 63 | 64 | The template provides a guide for what to add. A custom `README` will help you explain your project and reflect on your learnings. Please feel free to edit our template as much as you like. 65 | 66 | Once you've added your information to the template, delete this file and rename the `README-template.md` file to `README.md`. That will make it show up as your repository's README file. 67 | 68 | ## Submitting your solution 69 | 70 | Submit your solution on the platform for the rest of the community to see. Follow our ["Complete guide to submitting solutions"](https://medium.com/frontend-mentor/a-complete-guide-to-submitting-solutions-on-frontend-mentor-ac6384162248) for tips on how to do this. 71 | 72 | Remember, if you're looking for feedback on your solution, be sure to ask questions when submitting it. The more specific and detailed you are with your questions, the higher the chance you'll get valuable feedback from the community. 73 | 74 | ## Sharing your solution 75 | 76 | There are multiple places you can share your solution: 77 | 78 | 1. Share your solution page in the **#finished-projects** channel of the [Slack community](https://www.frontendmentor.io/slack). 79 | 2. Tweet [@frontendmentor](https://twitter.com/frontendmentor) and mention **@frontendmentor**, including the repo and live URLs in the tweet. We'd love to take a look at what you've built and help share it around. 80 | 3. Share your solution on other social channels like LinkedIn. 81 | 4. Blog about your experience building your project. Writing about your workflow, technical choices, and talking through your code is a brilliant way to reinforce what you've learned. Great platforms to write on are [dev.to](https://dev.to/), [Hashnode](https://hashnode.com/), and [CodeNewbie](https://community.codenewbie.org/). 82 | 83 | We provide templates to help you share your solution once you've submitted it on the platform. Please do edit them and include specific questions when you're looking for feedback. 84 | 85 | The more specific you are with your questions the more likely it is that another member of the community will give you feedback. 86 | 87 | ## Got feedback for us? 88 | 89 | We love receiving feedback! We're always looking to improve our challenges and our platform. So if you have anything you'd like to mention, please email hi[at]frontendmentor[dot]io. 90 | 91 | This challenge is completely free. Please share it with anyone who will find it useful for practice. 92 | 93 | **Have fun building!** 🚀 94 | -------------------------------------------------------------------------------- /room-homepage-master/css/style.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --dark-gray: hsl(0, 0%, 63%); 3 | --black: hsl(0, 0%, 0%); 4 | --white: hsl(0, 0%, 100%); 5 | --very-dark-gray: hsl(0, 0%, 27%); 6 | } 7 | 8 | *{ 9 | margin: 0; 10 | box-sizing: border-box; 11 | } 12 | 13 | body{ 14 | font-family: 'Spartan', sans-serif; 15 | } 16 | 17 | .container{ 18 | width: 90%; 19 | margin: 0 auto; 20 | padding: 60px 0; 21 | overflow: hidden; 22 | } 23 | 24 | .main{ 25 | max-width: 1400px; 26 | margin: 0 auto; 27 | display: grid; 28 | grid-template-columns: 1fr; 29 | grid-template-rows: repeat(5, max-content); 30 | grid-template-areas: 31 | "main" 32 | "buy" 33 | "image1" 34 | "about" 35 | "image2"; 36 | } 37 | 38 | .main__hero{ 39 | min-height: 500px; 40 | background-image: url("../images/desktop-image-hero-1.jpg"); 41 | background-size: cover; 42 | background-position: center; 43 | grid-area: main; 44 | } 45 | 46 | .main__nav{ 47 | display: flex; 48 | } 49 | 50 | .main__links{ 51 | display: none; 52 | } 53 | 54 | .main__logo{ 55 | margin: 0 auto; 56 | } 57 | 58 | .main__controls{ 59 | grid-area: main; 60 | align-self: end; 61 | justify-self: end; 62 | background-color: var(--black); 63 | display: flex; 64 | width: 100px; 65 | height: 50px; 66 | justify-content: space-around; 67 | align-items: center; 68 | } 69 | 70 | .main__arrows{ 71 | height: 40%; 72 | } 73 | 74 | .main__buy{ 75 | grid-area: buy; 76 | } 77 | 78 | .main__content{ 79 | width: 100%; 80 | height: 100%; 81 | display: flex; 82 | justify-content: center; 83 | align-items: flex-start; 84 | flex-direction: column; 85 | } 86 | 87 | .main__title{ 88 | color: var(--black); 89 | } 90 | 91 | .main__paragraph{ 92 | line-height: 1.5; 93 | margin: 1em 0 2em; 94 | color: var(--dark-gray); 95 | } 96 | 97 | .main__paragraph--about{ 98 | margin: 1em 0 0 0; 99 | } 100 | 101 | .main__cta{ 102 | text-decoration: none; 103 | color: var(--very-dark-gray); 104 | text-transform: uppercase; 105 | letter-spacing: 4px; 106 | } 107 | 108 | .main__arrow{ 109 | margin-left: 20px; 110 | } 111 | 112 | .main__bg{ 113 | grid-area: image1; 114 | min-height: 250px; 115 | height: 100%; 116 | background-image: url("../images/image-about-dark.jpg"); 117 | background-size: cover; 118 | background-position: center; 119 | } 120 | 121 | .main__about{ 122 | grid-area: about; 123 | } 124 | 125 | .main__bg--second{ 126 | grid-area: image2; 127 | background-image: url("../images/image-about-light.jpg"); 128 | } 129 | 130 | @media (min-width:768px){ 131 | .container{ 132 | width: 85%; 133 | padding: 70px 0; 134 | } 135 | 136 | 137 | .main{ 138 | grid-template-columns: repeat(7, 1fr); 139 | grid-template-areas: 140 | "main main main main buy buy buy" 141 | "main main main main buy buy buy" 142 | "main main main main buy buy buy" 143 | "image1 image1 about about about image2 image2" 144 | "image1 image1 about about about image2 image2"; 145 | } 146 | 147 | .main__controls{ 148 | grid-area: buy; 149 | justify-self: start; 150 | } 151 | 152 | .main__hamburguer{ 153 | display: none; 154 | } 155 | 156 | .main__links{ 157 | padding: 0; 158 | display: grid; 159 | grid-auto-flow: column; 160 | gap: 1em; 161 | margin-left: 10%; 162 | } 163 | 164 | .main__list{ 165 | list-style: none; 166 | } 167 | 168 | .main__link{ 169 | color: var(--white); 170 | text-decoration: none; 171 | } 172 | 173 | .main__logo{ 174 | margin: 0; 175 | } 176 | } -------------------------------------------------------------------------------- /room-homepage-master/design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/design/active-states.jpg -------------------------------------------------------------------------------- /room-homepage-master/design/desktop-design-slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/design/desktop-design-slide-1.jpg -------------------------------------------------------------------------------- /room-homepage-master/design/desktop-design-slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/design/desktop-design-slide-2.jpg -------------------------------------------------------------------------------- /room-homepage-master/design/desktop-design-slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/design/desktop-design-slide-3.jpg -------------------------------------------------------------------------------- /room-homepage-master/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/design/desktop-preview.jpg -------------------------------------------------------------------------------- /room-homepage-master/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/design/mobile-design.jpg -------------------------------------------------------------------------------- /room-homepage-master/design/mobile-navigation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/design/mobile-navigation.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/desktop-image-hero-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/desktop-image-hero-1.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/desktop-image-hero-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/desktop-image-hero-2.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/desktop-image-hero-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/desktop-image-hero-3.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/favicon-32x32.png -------------------------------------------------------------------------------- /room-homepage-master/images/icon-angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /room-homepage-master/images/icon-angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /room-homepage-master/images/icon-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /room-homepage-master/images/icon-close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /room-homepage-master/images/icon-hamburger.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /room-homepage-master/images/image-about-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/image-about-dark.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/image-about-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/image-about-light.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /room-homepage-master/images/mobile-image-hero-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/mobile-image-hero-1.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/mobile-image-hero-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/mobile-image-hero-2.jpg -------------------------------------------------------------------------------- /room-homepage-master/images/mobile-image-hero-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codigofacilito/CSSCURSO/eb75fbf8add2ab4ff4dce24e315e39fac620f944/room-homepage-master/images/mobile-image-hero-3.jpg -------------------------------------------------------------------------------- /room-homepage-master/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Landing Page 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 |
20 | 21 | 33 |
34 | 35 |
36 |
37 |

Discover innovative ways to decorate

38 | 39 |

We provide unmatched quality, comfort, and style for property owners across the country. 40 | Our experts combine form and function in bringing your vision to life. Create a room in your 41 | own style with our collection and make your property a reflection of you and what you love. 42 |

43 | 44 | Shop Now 45 |
46 |
47 | 48 |
49 | 50 |
51 | 52 | 53 |
54 |
55 |

About our furniture

56 |

Our multifunctional collection blends design and function to suit your individual taste. 57 | Make each room unique, or pick a cohesive theme that best express your interests and what 58 | inspires you. Find the furniture pieces you need, from traditional to contemporary styles 59 | or anything in between. Product specialists are available to help you create your dream space.

60 |
61 |
62 | 63 |
64 | 65 |
66 | 67 | 68 |
69 |
70 | 71 | 96 | 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /room-homepage-master/style-guide.md: -------------------------------------------------------------------------------- 1 | # Front-end Style Guide 2 | 3 | ## Layout 4 | 5 | The designs were created to the following widths: 6 | 7 | - Mobile: 375px 8 | - Desktop: 1440px 9 | 10 | ## Colors 11 | 12 | ### Primary 13 | 14 | - Dark Gray: hsl(0, 0%, 63%) 15 | - Black: hsl(0, 0%, 0%) 16 | - White: hsl(0, 0%, 100%) 17 | - Very Dark Gray: hsl(0, 0%, 27%) 18 | 19 | ## Typography 20 | 21 | ### Body Copy 22 | 23 | - Font size: 12px 24 | 25 | ### Font 26 | 27 | - Family: [Spartan](https://fonts.google.com/specimen/Spartan) 28 | - Weights: 500, 600, 700 29 | --------------------------------------------------------------------------------