fleet/website/assets/styles/bootstrap-overrides.less
RachelElysia d7fbf55131
Website font and schedule button (#676)
* Correct fonts: Nunito and Nunito Sans

* Modify schedule demo button

* Arrow speed

* Add all font weights to website font

* Globalize font size for header, paragraph, footer

* Readable color for dropdown-item:active

Co-authored-by: Rachel Elysia Perkins <rachel@fleetdm.com>
2021-04-28 16:31:43 +09:00

136 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: #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);
}
.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;
}