19 lines
231 B
CSS
19 lines
231 B
CSS
*, *:before, *:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background: #fefefe;
|
|
}
|
|
|
|
path {
|
|
stroke: rebeccapurple;
|
|
fill: transparent;
|
|
stroke-width: 1.5px;
|
|
stroke-linecap: round;
|
|
}
|