You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

231 lines
3.7 KiB

* {
margin: 0;
padding: 0;
border: 0;
}
body{
background: #FFFFFF;
}
.kommi{
width: 500px;
position: fixed;
bottom: 10px;
padding: 20px;
}
/*html {*/
/* scroll-behavior: smooth;*/
/* font-family: Helvetica, sans-serif, Arial;*/
/*}*/
/*body {*/
/* margin: 0 auto;*/
/* !*background-color: #222;*!*/
/* background: black;*/
/*}*/
/*Paguina*/
/**{*/
/* margin: 0;*/
/* padding: 0;*/
/* box-sizing: border-box;*/
/* list-style: none;*/
/* text-decoration: none;*/
/*}*/
/* ====== Header viejo ====== */
/*.header{*/
/* width: 100%;*/
/* height: 80px;*/
/* display: block;*/
/* background-color: white;*/
/*}*/
/*.inner_header{*/
/* !*width: 1000px;*!*/
/* width: min(90%, 1000%);*/
/* !*margin-inline: auto;*!*/
/* !*border: 3px solid hotpink;*!*/
/* height: 100%;*/
/* display: block;*/
/* margin: 0 auto;*/
/* background-color: white ;*/
/*}*/
/*.logo_container{*/
/* height: 100%;*/
/* display: table;*/
/* float: left;*/
/*}*/
/*.logo_container h1{*/
/* color: black;*/
/* height: 100%;*/
/* display: table-cell;*/
/* vertical-align: middle;*/
/* font-family: "Montserrat";*/
/* font-size: 32px;*/
/* font-weight: 200;*/
/*}*/
/*.logo_container h1 span{*/
/* font-weight: 800;*/
/*}*/
/*.navigation{*/
/* float: right;*/
/* !*height: 100%;*!*/
/* margin-right: 20px;*/
/*}*/
/*.navigation a{*/
/* height: 100%;*/
/* display: table;*/
/* float: left;*/
/* padding: 0px 20px;*/
/*}*/
/*.navigation a:hover{*/
/* background: black;*/
/*}*/
/*.navigation a:last-child{*/
/* padding-right: 0;*/
/*}*/
/*.navigation a li {*/
/* display: table-cell;*/
/* vertical-align: middle;*/
/* height: 100%;*/
/* color: black;*/
/* font-family: "Montserrat";*/
/* font-size: 16px;*/
/*}*/
/* ====== End Header viejo ====== */
/*====== Logo =======*/
/*label.logo {*/
/* position: fixed;*/
/* !*background: #111111;*!*/
/* !*color: #ffff00;*!*/
/* !*font-size: 35px;*!*/
/* !*line-height: 80px;*!*/
/* !*!*padding: 0 100px;*!*!*/
/* !*font-weight: bold;*!*/
/*}*/
nav ul {
float: right;
margin-right: 20px;
/*background: yellow;*/
}
/* menu interactivo*/
nav ul li {
display: inline-block;
line-height: 80px;
margin: 0 5px;
background: #FFFFFF;
}
nav ul li a {
color: #000000;
font-size: 17px;
padding: 7px 13px;
border-radius: 3px;
text-transform: uppercase;
}
/* ==== Hover Nav bottons ==== */
a.active, a:hover {
/*background: #111111;*/
background: whitesmoke;
transition: .5s;
}
.checkbtn {
font-size: 30px;
color: #FFFFFF;
float: right;
line-height: 80px;
margin-right: 40px;
cursor: pointer;
display: none;
}
#check {
display: none;
}
/* ===== boton menu interactivo ===== */
@media (max-width: 952px) {
label.logo {
font-size: 30px;
padding-left: 50px;
}
nav ul li a {
font-size: 16px;
}
}
@media (max-width: 858px) {
.checkbtn {
display: block;
}
ul {
position: fixed;
width: 100%;
height: 100vh;
background: #FFFFFF;
top: 80px;
left: -100%;
text-align: center;
transition: all .5s;
}
nav ul li {
display: block;
margin: 50px;
line-height: 30px;
}
nav ul li a {
font-size: 20px;
}
a:hover, a.active {
background: none;
color: #0082e6;
}
#check:checked ~ ul {
left: 0;
}
}
/*Linea negra abajo del menu*/
a:hover {
text-decoration: underline;
/*color: #77dd11;*/
color: black;
}
/*====== Menu Navegacion 2end =======*/