42 lines
709 B
CSS
Executable File
42 lines
709 B
CSS
Executable File
/*global------------------------------------ */
|
|
div.cont{
|
|
display: -webkit-box; display: -moz-box; display: -ms-flexbox;
|
|
display: -webkit-flex; display: flex;
|
|
}
|
|
/*seccion header------------------------------ */
|
|
section.header{
|
|
justify-content:center;
|
|
-webkit-justify-content:center;
|
|
background-color:black;
|
|
position:relative;
|
|
padding-top:80px;
|
|
min-height:7vh
|
|
}
|
|
article.header{
|
|
flex:4;
|
|
}
|
|
article.header > p {
|
|
font-size:4em;
|
|
color:white;
|
|
font-weight:bold;
|
|
margin-left:20px;
|
|
}
|
|
article.anav{
|
|
flex:1;
|
|
|
|
}
|
|
article.anav p {
|
|
font-size:2em;
|
|
color:white;
|
|
font-weight:bold;
|
|
margin:15px;
|
|
|
|
}
|
|
|
|
article.anav p:hover {
|
|
color:#eaebf2;
|
|
background-color:#330000;
|
|
border-radius:5px;
|
|
|
|
}
|