Files
Website/resources/css/app.scss
2023-03-01 09:38:37 +10:00

98 lines
1.6 KiB
SCSS

@import "variables.scss";
@import "utils.scss";
@import "data-table.scss";
@import "tinymce.scss";
@import "prism.css";
* {
box-sizing: border-box;
}
html {
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
html,
body {
font-family: $font-family;
font-size: $font-size;
color: $font-color;
min-height: 100vh;
}
// Who knows why ion-icon randomally sets this to hidden.....
ion-icon {
visibility: visible;
}
#app {
display: flex;
flex-direction: column;
min-height: 100vh;
}
a,
a:visited {
color: $primary-color;
text-decoration: none;
transition: color 0.1s, underline 0.1s;
&:hover {
color: $primary-color-dark;
text-decoration: underline;
}
}
h1 {
text-align: center;
font-weight: 800;
}
p {
line-height: 1.5rem;
margin-top: 0;
}
code {
display: block;
font-size: 0.8rem;
background-color: #eee;
padding: 1rem;
border: 1px solid #ddd;
white-space: pre-wrap;
overflow-x: auto;
max-height: 30rem;
margin-bottom: 1rem;
}
/* Page Errors */
.sm-page-error {
display: flex;
flex-direction: column;
.sm-error-number {
display: flex;
justify-content: center;
align-items: center;
font-size: 30vw;
font-weight: 600;
color: #295b7e;
img {
height: 25vw;
margin: 0 0.5rem 0 1rem;
}
}
.sm-error-content {
text-align: center;
font-size: 120%;
h2 {
margin-top: 0;
margin-bottom: 0.5rem;
}
}
}