75 lines
1.1 KiB
CSS
75 lines
1.1 KiB
CSS
/* You can add global styles to this file, and also import other style files */
|
|
|
|
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
|
|
@import '~bootstrap/dist/css/bootstrap.min.css';
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
a {
|
|
text-decoration: underline;
|
|
cursor: auto;
|
|
}
|
|
|
|
body {
|
|
width: 60%;
|
|
margin: 0 auto;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.header {
|
|
z-index: 100;
|
|
display: block;
|
|
position: sticky;
|
|
top: 0;
|
|
margin: 0 auto;
|
|
padding-bottom: 0.5em;
|
|
height: fit-content;
|
|
background: white;
|
|
}
|
|
|
|
.content {
|
|
padding-top: 1em;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
/* On screens that are 992px or less, set the background color to blue */
|
|
@media screen and (max-width: 992px) {
|
|
body {
|
|
width: 90%;
|
|
}
|
|
}
|
|
|
|
.router-wrapper {
|
|
}
|
|
|
|
.center {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.padding-0{
|
|
padding-right:0;
|
|
padding-left:0;
|
|
}
|
|
|
|
.margin-auto {
|
|
margin: auto;
|
|
}
|
|
|
|
.overflow-break {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.white-space-no-wrap {
|
|
white-space:nowrap;
|
|
}
|
|
|
|
.vert-align-mid {
|
|
vertical-align: middle;
|
|
}
|