Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
@import './../scss/themes/variables_ars_1.scss';
// Navigation SCSS
.nav-bar {
position: relative;
width: 210px;
height: 100%; // min-height: 800px;
// background-color: $gray-lighter;
background: linear-gradient(to bottom, #dedede, #ccc);
text-align: right;
font-size: $font-size-md;
& ul {
display: block;
}
& li {
height: 37px; // Weird number creates alignment with Page Title DIV
border-bottom: 1px solid $gray-base;
padding: 4px 12px;
display: block;
text-decoration: none;
color: $color-primary;
cursor: pointer;
&:hover {
background-color: $color-primary;
color: #fff;
}
&.active {
position: relative;
background-color: $color-primary;
color: #fff;
}
&.active:after {
// This draws the triangle
position: absolute;
left: 100%;
top: 50%;
margin-top: -18px;
height: 0;
width: 0;
content: " ";
border: solid transparent;
border-left-color: $color-primary;
border-width: 18px;
}
}
}
.exit-links {
position: absolute;
bottom: 0;
width: 210px;
background-color: #bbb;
border-top: 1px solid $gray-base;
border-bottom: 0;
color: $color-primary;
}