Path: blob/main/src/css/CustomNight.module.css
270 views
.golden_freddy {1width: 100vw;2height: 100vh;3background-image: url("../media/Textures/golden_freddy.webp");4background-color: #000;5background-size: contain;6background-position: center;7background-repeat: no-repeat;8}910.custom_night_container {11overflow: auto;12font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;13color: white;14backdrop-filter: blur(7px) brightness(0.5);1516display: flex;17flex-direction: column;18justify-content: space-evenly;19height: 100vh;20}2122.github_icon {23width: fit-content;24height: fit-content;25position: absolute;26bottom: 2%;27right: 2%;28cursor: pointer;29transition: transform 200ms 50ms;30}3132.github_icon a {33width: fit-content;34height: fit-content;35}3637.github_icon:hover {38transform: scale(1.2);39transition: transform 200ms 50ms;40}4142.custom_night_container h1 {43font-weight: 400;44margin-left: 30px;45opacity: 0.8;46}4748.animatronics_container {49display: flex;50justify-content: space-evenly;51}5253.animatronic {54display: flex;55flex-direction: column;56align-items: center;57}5859.animatronic img {60max-width: 200px;61width: 20vw;62}6364.animatronic > span {65font-size: 20pt;66margin-bottom: 15px;67}6869.range_buttons {70display: flex;71justify-content: space-between;72align-items: center;73margin-top: 25px;74font-size: 1.5rem;75font-family: "Consolas";76width: 100%;77}7879.range_buttons button {80border-radius: 5px;81width: 50px;82outline: none;83background-color: var(--button-color);84color: inherit;85font-weight: bolder;86border: none;87font-size: inherit;88cursor: pointer;89transition: transform 200ms 50ms;90}9192.range_buttons button:not(:disabled):hover,93.range_buttons button:not(:disabled):focus-within {94transform: scale(1.15);95transition: transform 200ms 50ms;96}9798.range_buttons button:disabled {99cursor: default;100opacity: 0.8;101}102103.start_screen {104font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;105/* height: 100vh; */106display: flex;107align-self: center;108justify-content: space-evenly;109flex-wrap: wrap;110align-items: center;111}112113.start_screen span {114flex: 100%;115margin-bottom: 15px;116font-size: 12.5pt;117}118119.ready_button {120font-weight: 800;121padding: auto 10px;122123font-size: 17pt;124}125126.start_screen button:not(.ready_button) {127font-size: 15pt;128}129130.start_screen button:not(.ready_button)[data-selected="false"] {131opacity: 0.6;132}133134.start_screen button:not(.ready_button)[data-selected="true"]:before {135content: "▶ ";136}137138.start_screen button {139border-radius: 6.5px;140/* width: 100px; */141cursor: pointer;142height: 100%;143outline: none;144color: white;145background-color: var(--button-color);146border: none;147}148149.footer {150opacity: 0.8;151height: 50px;152text-align: center;153}154155.footer p {156margin-top: 0;157}158159@media screen and (min-width: 750px) {160.custom_night_container h1 {161margin-bottom: 30px;162}163.start_screen {164width: 50%;165}166.start_screen button {167margin-top: 10px;168height: 50px;169}170171.range_buttons button {172height: 50px;173}174175.footer {176margin-top: 50px;177}178}179180@media screen and (max-width: 750px) {181.custom_night_container h1 {182/* margin-bottom: 2%; */183margin-top: 2%;184font-size: 15pt;185}186187.start_screen {188width: 90%;189}190.ready_button {191margin: 1.2% auto 1% auto;192}193194.start_screen button {195font-size: 10pt !important;196height: 35px;197}198199.range_buttons {200margin-top: 15px;201max-height: 30px;202}203204.footer {205margin: 1% 0px 1% 0px;206}207}208209210