76 lines
961 B
SCSS

/* =============
General
============= */
html {
position: relative;
min-height: 100%;
}
body{
margin: 0;
overflow-x: hidden !important;
font-size: $font-size-base;
background-color: $body-bg;
color: $body-color;
min-height: 100vh;
letter-spacing: 0.1px;
line-height: 1.5;
display: flex;
position: relative;
}
.h1,.h2,.h3,.h4,.h5,.h6,
h1,h2,h3,h4,h5,h6 {
color: $gray-700;
margin: 10px 0;
}
h1 {
line-height: 43px;
}
h2 {
line-height: 35px;
}
h3 {
line-height: 30px;
}
h4 {
line-height: 22px;
}
a {
font-family: $font-primary;
color: $gray-700;
&:hover,&:active,&:focus {
outline: 0;
text-decoration: none;
}
}
p {
line-height: 1.6;
font-family: $font-secondary;
font-size: $font-size-base;
font-weight: $font-weight-normal;
}
* {
outline: none !important;
}
.font-weight-semibold{
font-weight: $font-weight-semibold;
}
.nav{
&.nav-pills{
background-color: $gray-100;
}
}