27 lines
329 B
CSS
27 lines
329 B
CSS
|
.dashboard .sotw {
|
||
|
padding: 0;
|
||
|
|
||
|
h2,
|
||
|
p,
|
||
|
audio {
|
||
|
grid-column: 1;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
position: relative;
|
||
|
font-size: 1.5rem;
|
||
|
font-weight: 600;
|
||
|
margin: .5rem 0;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 1rem;
|
||
|
font-weight: 400;
|
||
|
margin: .5rem .1rem 1rem .1rem;
|
||
|
}
|
||
|
|
||
|
audio {
|
||
|
width: 100%;
|
||
|
height: fit-content;
|
||
|
}
|
||
|
}
|