2020-12-02 20:48:03 +00:00
|
|
|
/**
|
|
|
|
* This file is for overriding some default bootstrap styles.
|
|
|
|
*
|
|
|
|
* > NOTE THAT THIS FILE AFFECTS GLOBAL STYLES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// lesshint-disable
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
// lesshint-enable
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: @main-font;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get rid of weird background on <a>s with button styles
|
|
|
|
.btn, [type='button'] {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override heading font styles
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-family: @header-font;
|
|
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
font-family: @header-font;
|
|
|
|
font-weight: 700;
|
|
|
|
padding-top: 18px;
|
|
|
|
padding-bottom: 19px;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 23px;
|
|
|
|
border-radius: 10px;
|
|
|
|
|
2021-03-23 08:56:15 +00:00
|
|
|
&.btn-link {
|
|
|
|
color: #ffffff;
|
|
|
|
font-weight: 400;
|
|
|
|
font-family: @navigation-font;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
2020-12-02 20:48:03 +00:00
|
|
|
&.btn-sm {
|
|
|
|
padding-top: 9px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-primary {
|
|
|
|
background-color: #EF7182;
|
|
|
|
border-color: #EF7182;
|
|
|
|
&:hover {
|
|
|
|
background-color: darken(#EF7182, 10%);
|
|
|
|
border-color: darken(#EF7182, 10%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.btn-info {
|
|
|
|
background-color: #6B6CFA;
|
|
|
|
border-color: #6B6CFA;
|
|
|
|
&:hover {
|
|
|
|
background-color: darken(#6B6CFA, 10%);
|
|
|
|
border-color: darken(#6B6CFA, 10%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
2021-03-23 08:56:15 +00:00
|
|
|
|
|
|
|
.dropdown:hover > .dropdown-menu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.dropdown:hover > .btn {
|
|
|
|
color: #6a67fe;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
2021-03-23 09:36:35 +00:00
|
|
|
left: 16px !important;//lesshint-disable-line importantRule
|
2021-03-23 08:56:15 +00:00
|
|
|
min-width: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
.dropdown-item:hover {
|
|
|
|
background-color: #f1f0ff;
|
|
|
|
font-weight: @bold;
|
|
|
|
}
|
|
|
|
// Bolding text when the tab is active causes a layout shift
|
|
|
|
// so we add a hidden pseudo element with the same text string
|
|
|
|
.dropdown-item:before {
|
|
|
|
content: attr(data-text);
|
|
|
|
height: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
overflow: hidden;
|
|
|
|
user-select: none;
|
|
|
|
pointer-events: none;
|
|
|
|
font-weight: @bold;
|
|
|
|
}
|