26 lines
489 B
CSS
26 lines
489 B
CSS
.save__controls {
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 10px;
|
|
z-index: 4;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.save__controls button {
|
|
margin-left: 5px;
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
color: white;
|
|
-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
|
|
box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.save__controls button:hover {
|
|
opacity: 0.8;
|
|
transform: scale(105%);
|
|
transition: 250ms all ease-in-out;
|
|
}
|