- Phy Ladies Madrid Meetup - Twitter - Backend
- Django Girls Meetup - Twitter - Backend
- VueJS Meetup - Twitter - Frontend
- Node Girls Meetup - Twitter - Backend
- RLadies Meetup - Twitter - Data
- WiMLDS Meetup - Twitter - Data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ejemplo 1 - named export: lib.js | |
export const sqrt = Math.sqrt; | |
export function square(x) { | |
return x * x; | |
} | |
export function diag(x, y) { | |
return sqrt(square(x) + square(y)); | |
} | |
// Ejemplo 1 - named export: main.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main class="main post" id="anchor" role="main"> | |
Content... | |
</main> | |
<a id="topBtn" class="btn-fixed" href="#anchor"> | |
Lleva a la parte superior de la página. | |
</a> | |
<script> | |
// When the user scrolls down 500px from the top of the document, show the button |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add ellipsis at the end of a line to avoid text overflow | |
// @author Ignacio Villanueva | |
// @param {String}: $width | |
@mixin ellipsis($width: 100%) { | |
max-width: $width; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Custom properties to Sass fallback | |
// @params {String}: $customProp, $renderedValue | |
// Sass Variables | |
$color-base: #000000; | |
$color-base-darkest: #0b0b0b; | |
$color-base-darker: lighten($color-base, 20); | |
$color-base-dark: lighten($color-base, 40); | |
$color-base-light: lighten($color-base, 60); | |
$color-base-lighter: lighten($color-base, 80); |