bootstrap content with vertical right person menu

This commit is contained in:
2021-03-20 23:36:27 +01:00
parent 3da8f89d3c
commit fe2f107ddc
7 changed files with 172 additions and 152 deletions

View File

@@ -6,6 +6,10 @@ h1, h2, .h1, .h2 {
font-weight: $headings-font-weight + 200;
}
.open_sansbold {
}
html, body {
min-height: 100%;
height: 100%;
@@ -26,8 +30,11 @@ nav.navbar {
display: flex;
align-items: center;
}
.nav-item a {
}
.dropdown-menu {
.dropdown-item {
width: 120%;
i {
float: right;
}
@@ -38,29 +45,6 @@ nav.navbar {
#content_conainter {
position: relative;
min-height: calc(100% - 195px);
&::before {
bottom: 0;
content: "";
left: 0;
opacity: .1;
position: absolute;
right: 0;
top: 0;
z-index: -1;
background-image: url(/build/images/desert.2a25b6fc.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
background-position: 50%;
}
}
.container-fluid::after {
content: "";
display: table;
clear: both;
border-spacing: 0;
}
.footer {

View File

@@ -449,9 +449,9 @@ $btn-link-disabled-color: $gray-600 !default;
$btn-block-spacing-y: .5rem !default;
// Allows for customizing button radius independently from global border radius
$btn-border-radius: $border-radius !default;
$btn-border-radius-lg: $border-radius-lg !default;
$btn-border-radius-sm: $border-radius-sm !default;
$btn-border-radius: 0 !default;
$btn-border-radius-lg: 0 !default;
$btn-border-radius-sm: 0 !default;
$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;