2026-04-21 11:30:07 +02:00
|
|
|
/*!*
|
|
|
|
|
* This file is part of the SplendidBear Websites' projects.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2026 @ www.splendidbear.org
|
|
|
|
|
*
|
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
|
*/
|
|
|
|
|
|
2026-04-11 20:45:51 +02:00
|
|
|
.back-from-game {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 20px;
|
|
|
|
|
left: 20px;
|
|
|
|
|
|
|
|
|
|
-ms-transform: scale(1);
|
|
|
|
|
-webkit-transform: scale(1);
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
-webkit-transition: all 250ms cubic-bezier(.17, .67, .83, .67);
|
|
|
|
|
transition: all 250ms cubic-bezier(.17, .67, .83, .67);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-from-game img {
|
|
|
|
|
width: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-from-game:hover {
|
|
|
|
|
-ms-transform: scale(1.2);
|
|
|
|
|
-webkit-transform: scale(1.2);
|
|
|
|
|
transform: scale(1.2);
|
|
|
|
|
-webkit-transition: all 250ms cubic-bezier(.17, .67, .83, .67);
|
|
|
|
|
transition: all 250ms cubic-bezier(.17, .67, .83, .67);
|
|
|
|
|
}
|