63 lines
1.3 KiB
SCSS
63 lines
1.3 KiB
SCSS
// Common/Global Styles
|
|
// Use this file for global styles that don't or won't have their own stylesheet
|
|
body {
|
|
font-size: 16px;
|
|
background-color: #fff;
|
|
|
|
.container-fluid {
|
|
max-width: 576px; //Remove once desktop app is complete
|
|
&.container-shadow {
|
|
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15); //Use instead of Bootstrap's helper
|
|
}
|
|
}
|
|
a {
|
|
color: $blue;
|
|
text-decoration: none;
|
|
border-bottom: 1px solid $blue;
|
|
line-height: 26px;
|
|
padding: 0 0 4px 0;
|
|
font-weight: 500;
|
|
&:hover {
|
|
color: $blue;
|
|
font-weight: 700;
|
|
}
|
|
&.small {
|
|
line-height: 24px;
|
|
}
|
|
&.navigation-link {
|
|
color: $black;
|
|
border-bottom: 1px solid $black;
|
|
line-height: 26px;
|
|
}
|
|
&.footer-link {
|
|
color: $gray-500;
|
|
text-decoration: none;
|
|
border-bottom: 1px solid transparent;
|
|
line-height: 20px;
|
|
padding: 0 0 2px 0;
|
|
font-weight: 400;
|
|
font-size: .75rem;
|
|
&:hover {
|
|
border-bottom: 1px solid $gray-500;
|
|
padding: 0 0 2px 0;
|
|
}
|
|
}
|
|
}
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
.container,
|
|
.container-fluid {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
left: -10000px;
|
|
top: auto;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
// Hide horizontal scrollbar
|