Add Transparency and tint the page red.

This commit is contained in:
Dominik V. Salonen 2018-03-19 15:00:17 +01:00
parent 70939ea55a
commit 25501bdfca
1 changed files with 5 additions and 5 deletions

View File

@ -54,11 +54,11 @@ a:hover {
} }
#main-container { #main-container {
background-color: #3b3b3b; background-color: rgba(30,25,25,0.75);
margin-top: 10px; margin-top: 10px;
padding: 5px; padding: 5px;
box-sizing: border-box; box-sizing: border-box;
border-radius: 5px 5px 0px 0px; border-radius: 5px;
max-height: 50vh; max-height: 50vh;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
@ -139,8 +139,8 @@ a:hover {
.nav-button { .nav-button {
display: inline-block; display: inline-block;
border-bottom: solid 3px #2b2b2b; border-bottom: solid 3px #5b4b4b;
background-color: #3b3b3b; background-color: rgba(30,25,25,0);
color: #AAA; color: #AAA;
transition: background 0.15s ease-in-out, border 0.5s ease-in-out, color 0.15s ease-in-out; transition: background 0.15s ease-in-out, border 0.5s ease-in-out, color 0.15s ease-in-out;
padding: 10px 5px; padding: 10px 5px;
@ -154,7 +154,7 @@ a:hover {
} }
.nav-button:hover { .nav-button:hover {
background-color: #4b4b4b; background-color: rgba(90,75,75,0.75);
color: #FFF; color: #FFF;
transition: background 0.15s ease-in-out, color 0.15s ease-in-out; transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
} }