monerod-gui/src/styles.scss

58 lines
784 B
SCSS
Raw Normal View History

2024-09-21 11:37:49 +00:00
/*
body {
min-height: 100vh;
min-height: -webkit-fill-available;
}
*/
$primary: #ff5733;
@import "/node_modules/bootstrap/scss/bootstrap";
2024-09-27 19:45:17 +00:00
.bi {
display: inline-block;
width: 1rem;
height: 1rem;
2024-09-17 18:33:24 +00:00
}
2024-09-27 19:45:17 +00:00
/*
* Sidebar
*/
2024-09-21 11:37:49 +00:00
2024-09-27 19:45:17 +00:00
@media (min-width: 768px) {
.sidebar .offcanvas-lg {
position: -webkit-sticky;
position: sticky;
top: 48px;
}
.navbar-search {
display: block;
}
2024-09-21 11:37:49 +00:00
}
2024-09-27 19:45:17 +00:00
.sidebar .nav-link {
font-size: 1.075rem;
2024-09-27 19:45:17 +00:00
font-weight: 500;
2024-09-21 11:37:49 +00:00
}
2024-09-27 19:45:17 +00:00
.sidebar .nav-link.active {
color: #ffffff;
2024-09-21 11:37:49 +00:00
}
2024-09-27 19:45:17 +00:00
.sidebar-heading {
font-size: .75rem;
2024-09-21 11:37:49 +00:00
}
2024-09-27 19:45:17 +00:00
/*
* Navbar
*/
2024-09-21 11:37:49 +00:00
2024-09-27 19:45:17 +00:00
.navbar-brand {
padding-top: .75rem;
padding-bottom: .75rem;
background-color: rgba(0, 0, 0, .25);
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
2024-09-21 11:37:49 +00:00
}
2024-09-27 19:45:17 +00:00
.navbar .form-control {
padding: .75rem 1rem;
2024-09-17 18:33:24 +00:00
}