Line 70: | Line 70: | ||
font-weight:bold; | font-weight:bold; | ||
} | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
/************************* SIDE BAR *************************/ | /************************* SIDE BAR *************************/ | ||
Line 433: | Line 373: | ||
+ | /***** NOTEBOOK *****/ | ||
+ | /* Wrapper for the menu */ | ||
+ | .notebook_wrapper { | ||
+ | width:95%; | ||
+ | margin: auto; | ||
+ | text-align:left; | ||
+ | } | ||
+ | |||
+ | /* styling for the menu items */ | ||
+ | .notebook_item { | ||
+ | width:100%; | ||
+ | |||
+ | margin:0px 10px; | ||
+ | padding: auto 10px; | ||
+ | /* border-bottom: 1px solid #d3d3d3; */ | ||
+ | color:#000000; | ||
+ | cursor: pointer; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | .notebook_item a:hover{ | ||
+ | color:#000000; | ||
+ | } | ||
+ | |||
+ | /* when hovering on a menu item */ | ||
+ | .notebook_item:hover { | ||
+ | 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 */ | ||
+ | .submenu { | ||
+ | width:90%; | ||
+ | min-width:200px; | ||
+ | display: none; | ||
+ | font-weight:bold; | ||
+ | cursor:pointer; | ||
+ | color: #000000; | ||
+ | |||
+ | } | ||
+ | |||
+ | /* moving the margin for the submenu ul list */ | ||
+ | ul.submenu { | ||
+ | width: 100%; | ||
+ | margin: 10px 0px -11px 0px; | ||
+ | list-style: none; | ||
+ | } | ||
+ | |||
+ | /*styling for the submenu buttons */ | ||
+ | .submenu li { | ||
+ | width: 90%; | ||
+ | margin-left: 10px; | ||
+ | margin-bottom: 0px; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* hover state for the submenu buttons */ | ||
+ | .submenu li a { | ||
+ | width: 100%; | ||
+ | padding: 5px 0px; | ||
+ | display: inline-block; | ||
+ | /* border-bottom: 1px solid #d3d3d3; */ | ||
+ | text-decoration:none; | ||
+ | color: #000000; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | .submenu li a:hover { | ||
+ | background-color:#d8d8d8; | ||
+ | color:#000000; | ||
+ | } | ||
Revision as of 20:46, 29 August 2016