Make buttons stand out with some shading.

This commit is contained in:
Shpuld Shpuldson 2017-06-21 17:15:45 +03:00
parent 8e5d17a659
commit bf84a87821
3 changed files with 24 additions and 12 deletions

View file

@ -33,9 +33,13 @@ button{
border: none;
border-radius: 5px;
cursor: pointer;
border-top: 1px solid rgba(255, 255, 255, 0.2);
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 2px black;
font-size: 14px;
&:hover {
opacity: 0.8;
box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
}
}