[U] btn active/hover styling
This commit is contained in:
parent
e426f6f6f1
commit
66d4e416ee
1 changed files with 12 additions and 0 deletions
|
|
@ -71,6 +71,18 @@ body {
|
|||
padding-top: 8px;
|
||||
}
|
||||
|
||||
#app .btn:hover, #app .btn:active {
|
||||
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .3);
|
||||
-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .3);
|
||||
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .3);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#app .btn:active {
|
||||
background-color: white;
|
||||
color: rgba(0, 0, 0, .3);
|
||||
}
|
||||
|
||||
#app .floatBtn {
|
||||
position: fixed;
|
||||
top: 50vh;
|
||||
|
|
|
|||
Loading…
Reference in a new issue