fleet/website/assets/styles/bootstrap-overrides.less
gillespi314 5af0d6b870
Update website styling (#715)
* Update website styling

* Convert ellipse margin from rem to px

* Adjust padding to match neighboring card element

* Fix linting errors

* Remove unneeded div
2021-05-07 13:54:29 -05:00

135 lines
2.2 KiB
Plaintext
Vendored

/**
* 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: 800;
}
h1 {
font-size: 48px;
line-height: 56px;
}
h2 {
font-size: 36px;
line-height: 48px;
}
p {
font-size: 18px;
line-height: 28px;
}
footer {
font-size: 14px;
line-height: 24px;
}
.btn {
font-family: @header-font;
font-weight: 700;
padding-top: 18px;
padding-bottom: 19px;
font-size: 20px;
line-height: 23px;
border-radius: 10px;
&.btn-link {
color: #ffffff;
font-weight: 400;
font-family: @navigation-font;
transition: none;
}
&.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: #ff5c83;
border-color: #ff5c83;
&:hover {
background-color: darken(#ff5c83, 10%);
border-color: darken(#ff5c83, 10%);
}
}
&.btn-info {
background-color: #6b6cfa;
border-color: #6b6cfa;
&:hover {
background-color: darken(#6b6cfa, 10%);
border-color: darken(#6b6cfa, 10%);
}
}
}
.card {
box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.05);
}
.dropdown:hover > .dropdown-menu {
display: block;
}
.dropdown:hover > .btn {
color: #6a67fe;
}
.dropdown-menu {
left: 16px !important; //lesshint-disable-line importantRule
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;
}