2018-10-31 16:03:29 +00:00
|
|
|
/*------- GLOBAL ------*/
|
|
|
|
|
2018-11-02 15:00:59 +00:00
|
|
|
header {
|
2018-11-05 09:52:30 +00:00
|
|
|
background-color: #333;
|
2018-10-31 16:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*------- MENU ------*/
|
|
|
|
|
|
|
|
#menuMobile{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menuTrigger{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
2018-11-05 09:52:30 +00:00
|
|
|
.boxTitle{
|
|
|
|
background: #000;
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boxItem{
|
|
|
|
width: 69%;
|
|
|
|
}
|
|
|
|
|
2018-11-05 09:55:46 +00:00
|
|
|
.title {
|
|
|
|
color: green;
|
|
|
|
padding: 20px 55px 20px 0;
|
2018-11-05 09:56:31 +00:00
|
|
|
}
|
2018-11-05 09:55:46 +00:00
|
|
|
|
2018-11-05 09:52:30 +00:00
|
|
|
.boxItem a{
|
|
|
|
font-family: "Lato", sans-serif;
|
|
|
|
display: inline-block;
|
|
|
|
color: #6a6;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 2.3vh;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*header .menu.desktop {
|
2018-11-02 15:00:59 +00:00
|
|
|
background: #333;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 100%;
|
|
|
|
font-size: 1.15em;
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #8e8;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #6a6;
|
|
|
|
}
|
2018-11-05 09:52:30 +00:00
|
|
|
}*/
|
2018-10-31 16:03:29 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
|
2018-11-05 09:52:30 +00:00
|
|
|
.menuDesktop {
|
2018-11-02 15:00:59 +00:00
|
|
|
display: none;
|
2018-10-31 16:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#menuTriggerMobile{
|
|
|
|
cursor:pointer;
|
|
|
|
padding: 10px 20px;
|
|
|
|
transition:1000ms;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menuMobile{
|
|
|
|
z-index:1;
|
|
|
|
display:block;
|
|
|
|
height:100%;
|
|
|
|
position:fixed;
|
|
|
|
transition:1000ms;
|
|
|
|
background-color:#000;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.strip1, .strip2, .strip3 {
|
|
|
|
width:35px;
|
|
|
|
height:5px;
|
|
|
|
background-color:#4d0000;
|
|
|
|
transition:400ms;
|
|
|
|
margin:6px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cross .strip1 {
|
|
|
|
-webkit-transform:rotate(-45deg) translate(-9px, 6px);
|
|
|
|
transform:rotate(-45deg) translate(-9px, 6px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.cross .strip2 {
|
|
|
|
opacity:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cross .strip3 {
|
|
|
|
-webkit-transform:rotate(45deg) translate(-8px, -8px);
|
|
|
|
transform:rotate(45deg) translate(-8px, -8px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menuItem{
|
|
|
|
padding:40px 20px;
|
|
|
|
width:calc(100% - 40px);
|
|
|
|
transition:500ms;
|
|
|
|
font-size:4.5vh;
|
|
|
|
}
|
2018-11-02 15:00:59 +00:00
|
|
|
}
|