- borde_id: STRING (?)
- created_at: TIMESTAMP
- updated_at: TIMESTAMP
- type: ObjectID del POSTTYPE
- title: STRING
- description: STRING
- content: STRING
- link: STRING (enlace donde se puede consultar el POST en Borde)
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
$color-background: #0B665F; | |
$color-text: #FFE0D1; | |
$color-primary-0: #136F62; // Main Primary color */ | |
$color-primary-1: #86C4BC; | |
$color-primary-2: #358D81; | |
$color-primary-3: #004B41; |
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
* { | |
outline: 1px solid #def; | |
} | |
/* RESETS: */ | |
ul, li { | |
margin: 0; | |
padding: 0; |
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
<div class="texto container h-100"> | |
<!-- .col-md-5>h1{Título}+h4>lorem9 --> | |
<div class="col-md-5"> | |
<h1>Título</h1> | |
<h4> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis! | |
</h4> | |
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
/* Combinadores */ | |
/* sólo las .cajas que sean hijas directa de .contenedor */ | |
.contenedor > .caja { | |
/*bgc*/ | |
background-color: green; | |
} | |
.contenedor > .caja > .caja { |
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
<!-- html:5 --> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Ejemplo Position</title> | |
<link rel="stylesheet" href="css/estilos-position.css"> | |
</head> |
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
( | |
( | |
Server.default.options.memSize= 512000*20; | |
Server.default.options.numWireBufs= 512; | |
s = Server.local; | |
s.boot; | |
); | |
~path = thisProcess.nowExecutingPath.dirname; | |
s.waitForBoot({ | |
(~path ++"/data_definitiva.scd").load; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Introducción a Javascript</title> | |
</head> |
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
/* un comentario, no afecta nada */ | |
/* | |
selector { | |
propiedad1: valor1; | |
propiedad2: valor2; | |
} | |
*/ |