/* * libreevent - navstyle.css * * Created by Janis Hutz 06/17/2023, Licensed under the GPL V3 License * https://janishutz.com, development@janishutz.com * * */ .side-nav-container { min-height: 100vh; width: 100%; background-color: rgb(30, 30, 82); } .side-nav-item { width: 90%; padding: 3% 5%; display: block; background-color: rgb(30, 30, 82); color: white; text-decoration: none; cursor: pointer; transition: 1s; } .side-nav-subitem { width: 85%; padding: 2% 5% 2% 10%; display: block; background-color: rgb(26, 26, 71); color: white; text-decoration: none; cursor: pointer; transition: 1s; } .side-dropdown { display: none; } .side-nav-item:hover, .side-nav-subitem:hover, .active { background-color: #648cab; transition: 0.4s; }