|
- html, body, div, span, applet, object, iframe,
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
- a, abbr, acronym, address, big, cite, code,
- del, dfn, em, img, ins, kbd, q, s, samp,
- small, strike, strong, sub, sup, tt, var,
- b, u, i, center,
- dl, dt, dd, ol, ul, li,
- fieldset, form, label, legend,
- table, caption, tbody, tfoot, thead, tr, th, td,
- article, aside, canvas, details, embed,
- figure, figcaption, footer, header, hgroup,
- menu, nav, output, ruby, section, summary,
- time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
- }
- /* HTML5 display-role reset for older browsers */
- article, aside, details, figcaption, figure,
- footer, header, hgroup, menu, nav, section {
- display: block;
- }
- body {
- line-height: 1;
- }
- ol, ul {
- list-style: none;
- }
- blockquote, q {
- quotes: none;
- }
- blockquote:before, blockquote:after,
- q:before, q:after {
- content: '';
- content: none;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
-
- body, html {
- height: 100%;
- width: 100%;
- }
-
- body {
- display: flex;
- justify-content: center;
- text-align: center;
- flex-direction: column;
- font-family: sans-serif;
- background-color: #100d1e;
- }
-
- .game {
- font-size: 100px;
- }
-
- .nightly {
- background-color: #5b285f;
- color: #cd79cd;
- }
-
- .box {
- margin: 5vw;
- flex-wrap: center;
- }
-
- .heading {
- font-size: 100px;
- color: #7991cd;
- }
-
- .body {
- font-size: 40px;
- color: #7991cd;
- }
-
- .footer {
- position: sticky;
- top: 95%;
- color: #58678e;
- }
-
- a {
- font-size: 40px;
- color: #b6acd8;
- text-decoration: none;
- }
-
- a:hover {
- color: #726899;
- }
-
- .goodyeet {
- color: #7991cd;
- background-color: #344b85;
- border-width: 3px;
- }
-
- .badyeet {
- color: #cd7984;
- background-color: #752020;
- border-width: 3px;
- }
-
- @media (min-aspect-ratio: 1/1) {
- .button {
- width: 15vw;
- height: 8vw;
- font-size: 3vw;
- }
- }
-
- @media (max-aspect-ratio: 1/1) {
- .button {
- width: 50vw;
- height: 20vw;
- font-size: 10vw;
- }
- }
|