Files
aklive2d/template/assets/style.css
2022-01-24 23:35:28 -05:00

73 lines
1.1 KiB
CSS

html {
-ms-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
height: 100%;
width: 100%;
overflow: hidden;
}
body {
margin: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
touch-action: none;
-ms-touch-action: none;
}
#dev {
position: fixed;
left: 0;
top: 0;
background-color: white;
}
#widget-wrapper {
display: flex;
align-items: center;
}
#widget-wrapper, #container, #fallback {
width: 100%;
height: 100%;
}
.hide {
display: none;
}
#fallback.show {
display: unset;
margin: auto;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100%;
}
.logo {
position: fixed;
left: 0;
top: 0;
z-index: -1;
}
.invert-filter {
filter: invert(1);
opacity: 0.3;
}
.website-settings {
position: fixed;
left: 0;
top: 0;
background-color: white;
user-select: auto;
z-index: 999;
display: none;
}