Skip to content

Instantly share code, notes, and snippets.

@furenku
Created February 6, 2016 20:31
Show Gist options
  • Save furenku/11e2c160b54133d39508 to your computer and use it in GitHub Desktop.
Save furenku/11e2c160b54133d39508 to your computer and use it in GitHub Desktop.
header,
footer,
section,
div,
li {
outline: 1px dotted #0af;
}
body {
background-color: #eee;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height:100%;
}
.scrollH {
overflow-y: auto;
}
#header {
height:15vh;
}
.main {
height: 75vh;
}
#footer {
height: 10vh;
}
/* HOME */
#home_imagen_fondo {
width: 100%;
height:100%;
position: absolute;
z-index: -1;
}
.cortina {
/*
w100%
h100%
posa
t0
l0
zi0
op0.75
bgc
*/
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 0;
opacity: 0.75;
background-color: #fff;
}
#home_imagen_fondo img {
width: 100%;
height:75vh;
}
#home_titulo_texto {
width:50vw;
margin-left: 25vw;
height: 30vh;
margin-top: 22vh;
text-align: center;
}
#home_titulo h1 {
font-size: 100px;
text-transform: uppercase;
}
<div id="home_imagen_fondo">
<img src="http://lorempixel.com/1200/500/sports" alt="">
<!-- #cortina_fondo.cortina -->
<div id="cortina_fondo" class="cortina"></div>
</div>
<div id="home_titulo_texto">
<div id="home_titulo">
<h1>
Blog
</h1>
</div>
<div id="home_texto">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
</div>
</div>
<!-- #blog -->
<div id="blog">
<!-- #entrada_$.entrada.cols-6>.imagen>img^+.contenido>(h4{Título de Entrada $}+img[src=http://fakeimg.pl/600x350]+.fecha{1 de marzo, 2016}+p{lorem10}+button{Ver Más}) -->
<div id="entrada_1" class="entrada cols-6">
<div class="imagen"><img src="http://fakeimg.pl/600x900" alt=""></div>
<div class="contenido">
<h4>Título de Entrada 1</h4>
<img src="http://fakeimg.pl/600x350" alt="">
<div class="fecha">1 de marzo, 2016</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, officia.</p>
<button>Ver Más</button>
</div>
</div>
</div><!-- #blog -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment