Homer-Theme/assets/custom.css

45 lines
1.1 KiB
CSS

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Sets the group title to be a bolder font */
.group-title {
font-family: Lato;
font-weight: 800;
}
/* Changes the card title to be a bolder font */
.title {
font-weight: 700;
}
/* Changes the subtitle to be a bolder font */
.subtitle {
font-weight: 500;
}
/* Adds spacing to the bottom of cards */
body #app .card-content {
margin-bottom: 0.75rem;
}
/* Turns the opacity of the cards down to 80% */
body #app .card,
body #app .card:hover,
body #app .message {
opacity: 80%;
}
/* Adds more border radius to the cards */
body .layout-vertical .column div:first-of-type .card {
border-radius: 0.5rem;
}
body .layout-vertical .card {
border-radius: 0.5rem;
}
/* Removes the header */
#bighead {
display: none;
}