36 lines
405 B
CSS
36 lines
405 B
CSS
|
body {
|
||
|
background-color: #111;
|
||
|
overflow: hidden;
|
||
|
text-align:center;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
body,
|
||
|
html {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
.zdog-canvas {
|
||
|
background: transparent;
|
||
|
/* cursor: move; */
|
||
|
}
|
||
|
|
||
|
.zdog-svg {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.container{
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
.container path {
|
||
|
}
|
||
|
|
||
|
path {
|
||
|
mix-blend-mode: screen;
|
||
|
|
||
|
}
|