Skip to content

Commit

Permalink
Create desafio02 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
notSagyo committed Jan 23, 2022
1 parent 883f305 commit c7a0af6
Show file tree
Hide file tree
Showing 18 changed files with 144 additions and 235 deletions.
6 changes: 4 additions & 2 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"extends": ["stylelint-config-standard-scss",
"stylelint-config-lost"],
"rules": {
"custom-property-no-missing-var-function": null,
"no-invalid-position-at-import-rule": null,
"at-rule-no-unknown": null,
"custom-property-no-missing-var-function": null,
"declaration-empty-line-before": null,
"indentation": "tab",
"max-empty-lines": null,
"no-invalid-position-at-import-rule": null,
"selector-class-pattern": null,
"selector-list-comma-newline-after": null,
"string-quotes": "single",
"scss/at-rule-no-unknown": true,
Expand Down
117 changes: 92 additions & 25 deletions dist/css/main.css
Original file line number Diff line number Diff line change
@@ -1,42 +1,109 @@
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
/* STYLE RESET -------------------------------------------------------------- */
*, *::before, *::after {
box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b,
u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead,
tr, th, td, main, canvas, embed, footer, header, nav, section, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
font-size: 100%;
vertical-align: baseline;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
text-size-adjust: none;
}

footer, header, nav, section, main {
display: block;
}

blockquote, q {
quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
content: "";
content: none;
}

ol, ul {
list-style: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

a {
text-decoration: none;
color: inherit;
}

input, select, button {
padding: 0;
margin: 0;
font: inherit;
font-size: 100%;
}

/* END STYLE RESET ---------------------------------------------------------- */
body {
padding: 0;
margin: 0;
background-color: black;
color: white;
}

button {
padding: 2px;
}

/* Fondo oscuro para cuidar la vista :) */
color: #f8f9fa;
background-color: #212529;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
a {
color: blue;
}

body {
padding: 0;
margin: 0;
color: #f8f9fa;
background-color: #212529;
font-family: "Josefin Sans", sans-serif;
font-weight: 300;
line-height: 1.25;
}

a, a:visited {
color: coral;
text-decoration: none;
color: coral;
text-decoration: none;
}

.title {
margin: 1rem;

font-size: 5rem;
font-weight: lighter;
line-height: .75;
margin: 1rem;
font-size: 5rem;
line-height: 0.75;
}

.subtitle {
margin: 2rem 1rem;

font-size: 2rem;
font-weight: lighter;
margin: 2rem 1rem;
font-size: 2rem;
}

.desafios {
margin: 2rem 0;
.desafios__title {
margin: 1rem 0;
font-size: 1.5rem;
}

.desafios-title {
margin: 1rem 0;

font-size: 1.5rem;
font-weight: lighter;
.desafio {
font-size: 1.25rem;
}

.desafio { font-size: 1.25rem; }
ul.desafios {
margin: 2rem;
}
24 changes: 0 additions & 24 deletions dist/desafios/desafio01/css/main.css

This file was deleted.

15 changes: 0 additions & 15 deletions dist/desafios/desafio01/index.html

This file was deleted.

162 changes: 0 additions & 162 deletions dist/desafios/desafio01/js/main.js

This file was deleted.

7 changes: 5 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@
<h1 class="title">CoderHouse JS</h1>
<h2 class="subtitle">(Los archivos para los desafíos están en su respectiva carpeta)</h2>
<hr>
<ul>
<h3 class="desafios-title">Navegar al desafío:</h3>
<ul class="desafios">
<h3 class="desafios__title">Navegar al desafío:</h3>
<li>
<a href="desafios/desafio01/" class="desafio">Desafío 01 - Crear un algoritmo utilizando un ciclo (Complementario)</a>
</li>
<li>
<a href="desafios/desafio02/" class="desafio">Desafío 02 - Simulador Interactivo</a>
</li>
</ul>
</body>
</html>
File renamed without changes.
Empty file added dist/pages/cart.html
Empty file.
Empty file added dist/pages/checkout.html
Empty file.
Empty file added dist/pages/contact.html
Empty file.
Empty file added dist/pages/products.html
Empty file.
Empty file added dist/pages/user.html
Empty file.
Loading

0 comments on commit c7a0af6

Please sign in to comment.