﻿
/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */

/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* ############################################################ */


nav {

overflow:hidden;
color:#DFDFDF;/* Schriftfarbe im Menü */
text-shadow:0 0 1px black;
padding:0;margin:0;
}

#menu  {display:table;
position:absolute;
top:250px; left:50%;
margin-top:-150px;/* -150px statt -140px weil oben noch der jquery-bildanzeiger drin ist */
margin-left:-140px;
width:280px;height:280px;
background:transparent;
padding:0rem;
background:rgba(255,0,0,.5);
border-top:solid 1px #2F2F2F;
border-bottom:solid 1px #1F1F1F;
}

#menu ul {height:100%;width:100%;
display:table-cell;vertical-align:middle;
padding:0 ;
margin:0;
}

#menu  li {list-style-type : none;display:block;
padding: .4rem .2rem ;
margin:0;
font-size:1.7rem;
}

#menu li span {cursor:pointer;
}

#menu  li span:hover {letter-spacing:1px;
color: white;
}






/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN */
/* ############################################################ */

/* ==================================== ab 360 pixel ================================== */
@media (min-width: 360px) {

.section-content label.button-close,
.section-content label.button-open  {
margin-right:-180px;
}

}


/* ==================================== ab 480 pixel ================================== */
@media (min-width: 480px) {

#menu  {
height:200px;
margin-top:-110px;/* -110px statt -100px weil oben noch der jquery-bildanzeiger drin ist */
}

#menu  li {padding:0rem .2rem }

}


/* ==================================== ab 760 pixel ================================== */
@media (min-width: 760px) {

#menu  {
height:320px;
width:320px;
margin-top:-160px;
margin-left:-160px;
}

#menu  li {padding: .4rem .2rem ; }

.section-content label.button-close,
.section-content label.button-open  {
margin-right:-205px;
}


}