Difference between revisions of "Template:Goettingen/CSS"

Line 373: Line 373:
  
  
 
/***** NOTEBOOK *****/
 
 
/* Wrapper for the menu */
 
.notebook_wrapper {
 
width:100%;
 
margin: auto;
 
text-align:left;
 
 
}
 
 
/* styling for the menu items */
 
.notebook_item {
 
width:95%;
 
 
margin: 0 5px 0 5px;
 
padding:10px;
 
border-bottom: 1px solid #d3d3d3;
 
color:#000000;
 
cursor: pointer;
 
}
 
 
 
 
/* when hovering on a menu item */
 
.notebook_item:hover {
 
color:#000000;
 
background-color: #e7e7e7;
 
}
 
 
/* when menu item is active */
 
.notebook_item:focus {
 
color:#000000;
 
background-color: #e7e7e7;
 
}
 
 
/* decoration icon for the menu buttons*/
 
.icon {
 
float:right;
 
font-size:16px;
 
font-weight:bold;
 
}
 
 
/* this is the icon for when the content is collapsed */
 
.plus::before {
 
content: "▾";
 
}
 
/* this is the icon for when the content is expanded */
 
.less::before {
 
content: "▾";
 
}
 
 
/* styling for the ul that creates the buttons */
 
ul.notebook_items {
 
width:100%;
 
margin-left:0px;
 
padding:0px;
 
list-style: none;
 
}
 
 
/* styling for the li that are the menu items */
 
.notebook_items li {
 
width:90%;
 
margin-top:-2px;
 
padding: 15px 0px 15px 15px ;
 
display:block;
 
border-bottom: 1px solid #d3d3d3;
 
text-align:left;
 
font-weight:bold;
 
text-decoration:none;
 
color:#000000;
 
list-style-type:none;
 
cursor:pointer;
 
-webkit-transition: all 0.4s ease;
 
-moz-transition: all 0.4s ease;
 
-ms-transition: all 0.4s ease;
 
-o-transition: all 0.4s ease; transition: all 0.4s ease;
 
}
 
 
.notebook_item a {
 
width: 100%;
 
margin-left: -20px;
 
padding: 11px 90px 12px 20px;
 
text-decoration: none;
 
color:black;
 
}
 
 
 
/* styling for the submenus */
 
.notebook_submenu {
 
width:90%;
 
min-width:200px;
 
display: none;
 
cursor:pointer;
 
color: #000000;
 
 
}
 
 
/* moving the margin for the submenu ul list */
 
ul.notebook_submenu {
 
width: 100%;
 
margin: 10px 0px -11px 0px;
 
list-style: none;
 
}
 
 
/*styling for the submenu buttons */
 
.notebook_submenu li {
 
width: 90%;
 
margin-left: 10px;
 
margin-bottom: 0px;
 
}
 
 
 
/* hover state for the submenu buttons */
 
.notebook_submenu li a {
 
width: 100%;
 
padding: 5px 0px;
 
display: inline-block;
 
/* border-bottom: 1px solid #d3d3d3; */
 
text-decoration:none;
 
color: #000000;
 
}
 
 
 
 
.notebook_submenu li a:hover  {
 
background-color:#d8d8d8;
 
color:#000000;
 
}
 
 
.notebook_content {
 
width:104%;
 
background-color:#ffffff;
 
color:#000000;
 
padding: 10px;
 
margin:0 0 1px 0;
 
}
 
  
  

Revision as of 13:00, 7 October 2016