59 lines
1 KiB
CSS
59 lines
1 KiB
CSS
@import '../static/fonts.css';
|
|
|
|
html {
|
|
}
|
|
body {
|
|
font-family: 'Moderustic';
|
|
background-color: #ddfafa;
|
|
box-sizing: border-box;
|
|
margin: 0 auto;
|
|
min-height: 100%;
|
|
padding: 1em;
|
|
width: 100%;
|
|
font-size: 1.15em;
|
|
border: double 3px #ddd;
|
|
border-top: none;
|
|
border-bottom: none;
|
|
}
|
|
h1 {
|
|
padding-left: 0;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #4054ad;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
color: #000;
|
|
text-decoration: underline;
|
|
}
|
|
a:visited {
|
|
color: #437fad;
|
|
}
|
|
.y-accordions,
|
|
.y-accordion-header-button {
|
|
background-color: #ddd;
|
|
}
|
|
.yaccordion .y-accordians .y-accordion-header-button {
|
|
background-color: #eee;
|
|
}
|
|
/* modal styles */
|
|
.y-modal .y-modal-container {
|
|
background-color: #eee;
|
|
border: solid 3px #3a8ea5;
|
|
border-radius: 15px;
|
|
box-shadow: 5px 5px 3px #6a6d6a;
|
|
width: 90%;
|
|
margin: auto auto;
|
|
max-width: none;
|
|
height: auto;
|
|
}
|
|
.y-modal .y-modal-container .y-modal-header {
|
|
text-align: center;
|
|
width: 100%;
|
|
background-color: #999;
|
|
}
|
|
.y-modal .y-modal-container .y-modal-header .y-modal-title {
|
|
font-size: 1.5em;
|
|
margin: auto;
|
|
}
|