center control buttons & add a lil hover anim
This commit is contained in:
parent
e9b6ddf1ae
commit
c83218d182
1 changed files with 13 additions and 5 deletions
|
@ -229,8 +229,8 @@ body {
|
|||
.controls button {
|
||||
background: none;
|
||||
border: none;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
color: #ddd;
|
||||
font-size: 18px;
|
||||
cursor: pointer;
|
||||
border-radius: 7px;
|
||||
width: 40px;
|
||||
|
@ -240,8 +240,16 @@ body {
|
|||
box-shadow: #000000 3px 3px 20px !important;
|
||||
border: 2px solid rgba(150, 150, 150, 0.25);
|
||||
text-shadow: #000000 3px 2px 7px !important;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
transition: color 0.1s;
|
||||
}
|
||||
|
||||
.controls button:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
.controls button:active {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue