[MTELEWANA-8] use amaranth font for titles + add 'default' custom lines

This commit is contained in:
Daniel Muyshond 2020-11-09 08:44:30 +01:00
parent fa2d4c62ba
commit 2851fc6ec0
1 changed files with 22 additions and 11 deletions

View File

@ -1,23 +1,34 @@
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Amaranth:wght@700&display=swap');
/* titles main website */
#content h2::before {
background: $primary-color none repeat scroll 0 0;
bottom: 0;
content: "";
display: block;
float: left;
height: 0.75em;
margin-right: 0.4em;
margin-top: 0.15em;
right: 100%;
width: 4px;
#content h2 {
font-family: 'Amaranth', sans-serif;
}
#content h2 {
font-size: 22px;
}
/* Custom selection color because that can be done and it's cool */
::selection {
color: white;
background-color: $primary-color;
}
/* darker cell links hover for better contrast/accessibility */
div#account-management ul > li > a:hover::after,
div.wcsformsofcategorycell ul > li > a:hover::after,
div.wcscurrentdraftscell ul > li > a:hover::after,
div.wcscurrentformscell ul > li > a:hover::after {
background: #0993cc;
}
/* remove annoying border I can't remove with EO vars at the moment */
div.links-list ul > li:not(:last-child) {
border-bottom: 0;
}
/* logo optim */
h1#logo {
padding-top: 9px;