20 lines
315 B
CSS
20 lines
315 B
CSS
main {
|
|
font-family: Candara;
|
|
background-image: linear-gradient(to bottom, #b69fe1, rgb(40, 34, 79));
|
|
color: white;
|
|
background-size: cover;
|
|
}
|
|
|
|
#items-table {
|
|
font-family: Candara;
|
|
font-size: 20px;
|
|
color: aliceblue;
|
|
}
|
|
|
|
@media screen and (max-width: 576px) {
|
|
|
|
|
|
#items-table {
|
|
font-size: min(10vw, 25px);
|
|
}
|
|
} |