162 lines
3.0 KiB
SCSS
162 lines
3.0 KiB
SCSS
#webContent {
|
|
margin-left: 80px;
|
|
transition: margin 400ms ease-in-out;
|
|
|
|
&.webcontent-collapsed {
|
|
margin-left: 280px !important;
|
|
}
|
|
}
|
|
|
|
#sidebar {
|
|
|
|
color: white;
|
|
background-color: #04385c;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-shrink: 0;
|
|
|
|
position: fixed;
|
|
height: 100%;
|
|
z-index: 3;
|
|
padding: 1rem 0;
|
|
|
|
transition: width 400ms ease-in-out;
|
|
overflow: hidden;
|
|
|
|
.sidebar-collapse-button {
|
|
|
|
display: inline-block;
|
|
color: white;
|
|
border: none;
|
|
background: none;
|
|
transition: transform 200ms ease-in-out;
|
|
|
|
}
|
|
|
|
&.sidebar-enlarged {
|
|
width: 280px !important;
|
|
|
|
.sidebar-collapse-button { transform: rotate(-180deg); }
|
|
|
|
a.nav-link {
|
|
text-align: start !important;
|
|
|
|
i.bi {
|
|
margin: 0 1rem 0 .5rem !important;
|
|
}
|
|
|
|
span.sidebar-item-text {
|
|
display: inline !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:not(.sidebar-enlarged) {
|
|
width: 80px;
|
|
}
|
|
|
|
#sidebar-brand {
|
|
|
|
max-width: 120px;
|
|
align-self: center;
|
|
display: flex;
|
|
align-items: center;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
padding: 0 .5rem;
|
|
|
|
}
|
|
|
|
ul.sidebar-items {
|
|
|
|
flex-direction: column;
|
|
margin-bottom: auto;
|
|
|
|
li.nav-item {
|
|
|
|
a.nav-link {
|
|
|
|
color: inherit;
|
|
transition: all 200ms;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
|
|
&:hover { background-color: rgba(0, 0, 0, 0.15); }
|
|
|
|
i.bi {
|
|
// transition: all 200ms ease-in-out;
|
|
// margin: 0 auto;
|
|
}
|
|
|
|
span.sidebar-item-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.card-badge-container {
|
|
position: relative;
|
|
|
|
.card-badge {
|
|
width: 60px;
|
|
height: 60px;
|
|
|
|
position: absolute;
|
|
top: -30px;
|
|
right: -30px;
|
|
|
|
background-color: #04385c;
|
|
border-bottom: 30px;
|
|
border-left: 30px;
|
|
border-right: 30px;
|
|
|
|
transform: rotate(45deg);
|
|
-webkit-transform: rotate(45deg);
|
|
}
|
|
}
|
|
|
|
#newVenueTabBtns {
|
|
|
|
border-radius: 50rem;
|
|
overflow: hidden;
|
|
width: fit-content;
|
|
|
|
.nav-item > .nav-link {
|
|
border-radius: 1rem !important;
|
|
|
|
color: #04385c;
|
|
|
|
&.active {
|
|
color: white;
|
|
background-color: #04385c;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.btn-facing-left {
|
|
border-top-left-radius: 1.2rem !important;
|
|
border-bottom-left-radius: 1.2rem !important;
|
|
border-top-right-radius: 0.8rem !important;
|
|
border-bottom-right-radius: 0.8rem !important;
|
|
}
|
|
|
|
.btn-facing-right {
|
|
border-top-left-radius: 0.8rem !important;
|
|
border-bottom-left-radius: 0.8rem !important;
|
|
border-top-right-radius: 1.2rem !important;
|
|
border-bottom-right-radius: 1.2rem !important;
|
|
}
|
|
|
|
#venueModal .modal-content {
|
|
min-height: 550px;
|
|
} |