Attempt to improve the way the site looks in MSEdge a bit.

This commit is contained in:
flash 2018-11-18 21:58:26 +01:00
parent e9bda13078
commit 84c5bcacaa
6 changed files with 9 additions and 9 deletions

View file

@ -11,7 +11,7 @@
padding: 1px 4px; padding: 1px 4px;
&:nth-child(odd) { &:nth-child(odd) {
background-color: #0009; background-color: fade(#000, 60%);
} }
} }

View file

@ -1,10 +1,10 @@
.forum__category { .forum__category {
border-radius: 2px; border-radius: 2px;
background-color: #1119; background-color: fade(#111, 60%);
transition: background-color .2s, box-shadow .2s; transition: background-color .2s, box-shadow .2s;
&:nth-child(even) { &:nth-child(even) {
background-color: #19191999; background-color: fade(#191919, 60%);
} }
&:hover { &:hover {

View file

@ -1,14 +1,14 @@
.forum__topic { .forum__topic {
border-radius: 2px; border-radius: 2px;
background-color: #1119; background-color: fade(#111, 60%);
transition: background-color .2s, box-shadow .2s; transition: background-color .2s, box-shadow .2s;
&:nth-child(even) { &:nth-child(even) {
background-color: #19191999; background-color: fade(#191919, 60%);
} }
&:hover { &:hover {
background-color: #2229; background-color: fade(#222, 60%);
box-shadow: 0 1px 4px #222; box-shadow: 0 1px 4px #222;
} }

View file

@ -15,7 +15,7 @@
} }
&__avatar { &__avatar {
--avatar-checked-colour: #0002; --avatar-checked-colour: fade(#000, 13%);
display: flex; display: flex;

View file

@ -9,7 +9,7 @@
--background-image: initial; --background-image: initial;
--background-colour: #111; --background-colour: #111;
--background-colour-translucent: #111E; --background-colour-translucent: fade(#111, 93%);
--background-pattern: url('/images/clouds.png') fixed; --background-pattern: url('/images/clouds.png') fixed;
--text-colour: #fff; --text-colour: #fff;

View file

@ -60,7 +60,7 @@
code { code {
padding: .2em .4em; padding: .2em .4em;
margin: 0; margin: 0;
background-color: #000A; background-color: fade(#000, 67%);
border-radius: 2px; border-radius: 2px;
} }