31 lines
751 B
SCSS
31 lines
751 B
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;
|
|
padding: .5rem;
|
|
.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;
|
|
&:hover {
|
|
color: $blue-400;
|
|
}
|
|
}
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
//Custom Mixins
|
|
|
|
//Blue gradient background mixin
|
|
@mixin blue-gradient {
|
|
background: linear-gradient(270deg, $blue-500 0%, $blue-700 100%);
|
|
}
|