Add Transparency and tint the page red.
This commit is contained in:
parent
70939ea55a
commit
25501bdfca
10
style.css
10
style.css
|
@ -54,11 +54,11 @@ a:hover {
|
|||
}
|
||||
|
||||
#main-container {
|
||||
background-color: #3b3b3b;
|
||||
background-color: rgba(30,25,25,0.75);
|
||||
margin-top: 10px;
|
||||
padding: 5px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
border-radius: 5px;
|
||||
max-height: 50vh;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
|
@ -139,8 +139,8 @@ a:hover {
|
|||
|
||||
.nav-button {
|
||||
display: inline-block;
|
||||
border-bottom: solid 3px #2b2b2b;
|
||||
background-color: #3b3b3b;
|
||||
border-bottom: solid 3px #5b4b4b;
|
||||
background-color: rgba(30,25,25,0);
|
||||
color: #AAA;
|
||||
transition: background 0.15s ease-in-out, border 0.5s ease-in-out, color 0.15s ease-in-out;
|
||||
padding: 10px 5px;
|
||||
|
@ -154,7 +154,7 @@ a:hover {
|
|||
}
|
||||
|
||||
.nav-button:hover {
|
||||
background-color: #4b4b4b;
|
||||
background-color: rgba(90,75,75,0.75);
|
||||
color: #FFF;
|
||||
transition: background 0.15s ease-in-out, color 0.15s ease-in-out;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue