1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00
tobspr_shapez.io/src/css/states/mobile_warning.scss

49 lines
1.1 KiB
SCSS
Raw Normal View History

2020-05-23 07:13:42 +00:00
#state_MobileWarningState {
display: flex;
align-items: center;
background: #333438 !important;
@include S(padding, 20px);
box-sizing: border-box;
2020-05-23 07:19:56 +00:00
justify-content: center;
flex-direction: column;
2020-05-23 07:13:42 +00:00
.logo {
width: 80%;
max-width: 200px;
margin-bottom: 10px;
}
p {
color: #aaacaf;
display: block;
margin-bottom: 13px;
font-size: 16px;
line-height: 20px;
2020-05-23 07:19:56 +00:00
max-width: 300px;
text-align: left;
2020-05-23 07:13:42 +00:00
a {
color: $colorBlueBright;
}
}
.standaloneLink {
2020-05-23 07:19:56 +00:00
width: 200px;
2020-05-23 07:13:42 +00:00
height: 80px;
2020-05-23 07:19:56 +00:00
min-height: 40px;
2020-06-07 10:56:02 +00:00
background: uiResource("get_on_steam.png") center center / contain no-repeat;
2020-05-23 07:13:42 +00:00
overflow: hidden;
display: block;
text-indent: -999em;
cursor: pointer;
2020-05-23 07:19:56 +00:00
margin-top: 10px;
2020-05-23 07:13:42 +00:00
pointer-events: all;
transition: all 0.12s ease-in;
transition-property: opacity, transform;
transform: skewX(-0.5deg);
&:hover {
transform: skewX(-1deg) scale(1.02);
opacity: 0.9;
}
}
}