mirror of
https://github.com/mjrode/WhatToWatch.git
synced 2025-12-30 18:19:46 -06:00
60 lines
734 B
CSS
60 lines
734 B
CSS
.no-bottom-margin {
|
|
margin-bottom: 0px;
|
|
}
|
|
.min-button-width {
|
|
min-width: 15em;
|
|
}
|
|
.margin-spacing {
|
|
margin: 3em 0;
|
|
}
|
|
|
|
.padding-bottom-5 {
|
|
padding-bottom: 5em;
|
|
}
|
|
|
|
.margin-left {
|
|
margin-left: 3em;
|
|
}
|
|
|
|
.abs {
|
|
position: absolute;
|
|
}
|
|
|
|
.flex-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.code {
|
|
padding: 1rem;
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.margin-bottom-button {
|
|
margin-bottom: 2em
|
|
}
|
|
|
|
.hide-mobile {
|
|
@media (max-width: 480px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.hide-desktop {
|
|
@media not all and (max-width: 480px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.Button:hover {
|
|
background-color: rgb(98, 87, 113);
|
|
}
|
|
|
|
.large-card-height{
|
|
height: auto !important;
|
|
}
|
|
|
|
|
|
.robots{
|
|
font-family: "Roboto", "Helvetica", "Arial", sans-serif
|
|
} |