Files
dice-tower/src/main/resources/META-INF/resources/overlay/style.css
Arindy 1eae3a8bbf
All checks were successful
CI / deploy (push) Successful in 4m25s
CI / deploy (pull_request) Successful in 4m28s
creates chatoverlay
2025-02-12 16:06:22 +01:00

37 lines
675 B
CSS

html,
body {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow: hidden;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
perspective: 1000px;
}
#dice-box {
position: relative;
box-sizing: border-box;
width: 100%;
height: 100%;
background: transparent;
background-size: cover;
}
#dice-box canvas {
width: 100%;
height: 100%;
}
.tooltip {
position: fixed;
border-radius: 0.5rem;
padding: 15px;
max-width: 80%;
font-size: 400%;
color: #fff; !important;
background-color: #333333dd; !important
}