17 lines
194 B
CSS
17 lines
194 B
CSS
|
body {
|
||
|
display: -webkit-box;
|
||
|
display: flex;
|
||
|
height: 100vh;
|
||
|
background-color: #123;
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
margin: auto;
|
||
|
width: 100%;
|
||
|
max-width: 100vh;
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
circle {
|
||
|
fill: none;
|
||
|
}
|