/* * Copyright (C) 2021 Aravinth Manivannan * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ @import '../../reset'; @import '../../vars'; .secondary-menu { // position: fixed; // width: 14%; // left: 0; // bottom: 0; // top: 0; // right: 0; height: 100%; overflow: auto; background-color: $secondary-backdrop; color: $light-text; } .secondary-menu__lsit{ position: fixed; top: 0; bottom: 0; } .secondary-menu__heading { margin: auto; padding: 20px 5px; display: flex; } .secondary-menu__heading:hover { color: $green; cursor: grab; } .secondary-menu__logo { width: 70px; display: inline-block; } .secondary-menu__brand-name { display: inline-block; margin: auto; font-size: 1.5rem; } .secondary-menu__item { margin: auto; padding: 20px 25px; display: flex; } .secondary-menu__icon { filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%); opacity: 0.8; width: 1rem; margin: auto; margin-right: 10px; } .secondary-menu__item-name { display: inline-block; margin: auto; font-size: 1rem; } .secondary-menu__item-link:hover { color: $green; cursor: grab; filter: invert(58%) sepia(60%) saturate(331%) hue-rotate(76deg) brightness(91%) contrast(92%); } .secondary-menu__item-link { color: inherit; width: 100%; height: 100%; }