37 lines
675 B
CSS
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
|
|
}
|