26 lines
349 B
CSS
26 lines
349 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
display: -webkit-box;
|
|
display: flex;
|
|
min-width: 240px;
|
|
height: 100vh;
|
|
background: #FFE3EC;
|
|
padding: 2rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
svg {
|
|
width: 75vmin;
|
|
flex-shrink: 1;
|
|
margin: auto;
|
|
background: #FF8CBA;
|
|
border: 6px solid #FF8CBA;
|
|
border-radius: 24px;
|
|
}
|
|
|
|
line {
|
|
stroke-linecap: round;
|
|
} |