add shadows and make button contrast better

This commit is contained in:
hippoz 2020-10-04 23:29:30 +03:00
parent d6d22f7d08
commit 28facf6593

View file

@ -10,6 +10,11 @@ body {
width: 400px;
background: #d1d1d1;
border-radius: 8px;
-webkit-box-shadow: 2px -2px 38px 1px rgba(0,0,0,0.59);
-moz-box-shadow: 2px -2px 38px 1px rgba(0,0,0,0.59);
box-shadow: 2px -2px 38px 1px rgba(0,0,0,0.59);
}
.navigation-card {
@ -27,7 +32,7 @@ body {
.button-default {
text-decoration: none;
border: 2px solid #818181;
border: 2px solid #606060;
background-color: #d1d1d1;
border-radius: 5px;
padding: 5px;
@ -35,13 +40,13 @@ body {
white-space: nowrap;
margin-top: 2px;
margin-bottom: 2px;
color: #818181;
color: #606060;
cursor: pointer;
}
.button-default:hover {
color: #d1d1d1;
background-color: #818181;
background-color: #606060;
}
@media screen and (max-width: 768px) {