Sengi-Windows-MacOS-Linux/src/app/components/left-side-bar/left-side-bar.component.scss

63 lines
1.2 KiB
SCSS

@import "variables";
$width-button: 50px;
$height-button: 40px;
.left-bar {
width: $width-button;
height: calc(100%);
background: $color-secondary;
position: relative;
}
.left-bar-link {
color: $font-link-primary;
text-decoration: none;
&:hover {
color: $font-link-primary-hover;
}
}
.left-bar-button {
display: block;
width: $width-button;
height: $height-button;
transition: all .2s;
// outline: 1px dotted greenyellow;
&--status {
padding: 5px 0 0 12px;
}
&--search {
padding: 2px 0 0 12px;
}
&--add {
padding: 0 0 0 16px;
}
&--cog {
padding: 2px 0 0 10px;
position: absolute;
bottom: 5px;
opacity: .2;
transition: all .3s;
filter: alpha(opacity=20);
// color: darken($font-link-primary, 30);
&:hover{
filter: alpha(opacity=100);
opacity: 1;
}
}
}
.add-account {
width: $width-button;
height: 30px;
padding-top: 7px;
&__link {
font-size: 2em;
height: 10px;
margin: 0 15px;
line-height: 0;
}
}