20 lines
323 B
CSS
20 lines
323 B
CSS
|
.wrapper {
|
||
|
margin: auto;
|
||
|
max-width: 25em;
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 2em;
|
||
|
}
|
||
|
|
||
|
.desc {
|
||
|
line-height: 1.4;
|
||
|
}
|
||
|
|
||
|
.url {
|
||
|
font-family: monospace;
|
||
|
background-color: rgba(255, 255, 255, 0.11);
|
||
|
padding: 0.1em 0.4em;
|
||
|
border-radius: 4px;
|
||
|
}
|