20 lines
355 B
SCSS
20 lines
355 B
SCSS
body{
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.dancing-letters{
|
|
font-family: sans-serif;
|
|
font-size: 300%;
|
|
font-weight: bold;
|
|
|
|
& > span {
|
|
box-shadow: 0 0 0.25em black;
|
|
color: white;
|
|
display: inline-block;
|
|
margin: 0.25em;
|
|
padding: 0.25em;
|
|
}
|
|
} |