Arlon : fix border bottom, add selection color, fix logo margin (mobile)

This commit is contained in:
Daniel Muyshond 2020-10-23 10:19:06 +02:00
parent 6cb01eea4b
commit f7de9e72d4
1 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,27 @@
h1#logo a img {
max-height: 109px;
@charset "UTF-8";
/* Custom selection color because that can be done and it's cool */
::selection {
color: white;
background-color: $primary-color;
}
/* 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 adjustmts */
h1#logo a img {
max-height: 109px;
}
@media screen and (max-width: 320px) {
h1#logo a img {
margin-top: 10px;
}
}