homefront/src/styles.scss
2018-11-14 22:40:11 -05:00

117 lines
1.8 KiB
SCSS

/* You can add global styles to this file, and also import other style files */
@import url('https://fonts.googleapis.com/css?family=Archivo|Material+Icons');
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
@import url('https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons.min.css');
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar {
width: 8px;
background-color: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: #555;
}
html, body {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
font-family: 'Archivo', sans-serif;
background-color: #2F323A;
}
.center {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.off-center {
position: fixed;
left: calc(50% - 75px);
top: 75%;
}
.mat-list-item {
height: auto !important;
color: #9CA4B6 !important;
&.active {
background-color: #262930 !important;
color: #1CA8DD !important;
}
}
.text-muted {
color: #7f7f7f !important;
}
.mat-divider {
color: #9CA4B6 !important;
}
.bg-primary {
background-color: #f8f8f8 !important;
}
.bg-secondary {
background-color: #2F323A !important;
}
.scale-150 {
transform: scale(1.5);
}
.scale-200 {
transform: scale(2);
}
.scale-300 {
transform: scale(3);
}
.scale-500 {
transform: scale(5);
}
.material-icons {
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
}
.mat-stroked-button:not([disabled]) {
border-color: #ffffff !important;
}
.mat-form-field label {
color: #ffffff !important;
}
.flex-grow-0 {
flex-grow: 0;
}
.flex-grow-1 {
flex-grow: 1;
}
.flex-grow-2 {
flex-grow: 2;
}
.flex-grow-3 {
flex-grow: 3;
}