| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- * {
- margin: 0;
- padding: 0;
- }
- html {
- color: #FFF;
- background-color: #111;
- }
- body {
- display: flex;
- width: 100%;
- height: 100vh;
- }
- .hs {
- display: block;
- box-sizing: border-box;
- width: 100%;
- height: 16px;
- }
- .vs {
- display: block;
- box-sizing: border-box;
- width: 16px;
- height: 100%;
- }
- .container {
- display: flex;
- flex-direction: column;
- justify-items: stretch;
- width: 300px;
- margin: auto auto;
- }
- .error-container {
- display: flex;
- flex-direction: column;
- width: 100%;
- margin: 16px;
- }
- .hero-logo {
- display: block;
- box-sizing: border-box;
- margin: 0 auto;
- width: 66%;
- height: 66%;
- }
- .hero-label {
- display: block;
- width: 100%;
- text-align: center;
- font-size: 24pt;
- font-weight: 700;
- }
- .auth-logo {
- display: block;
- box-sizing: border-box;
- margin: 0 auto;
- width: 50%;
- height: 50%;
- }
- .auth-label {
- display: block;
- width: 100%;
- text-align: center;
- font-size: 20pt;
- font-weight: 700;
- }
- .button {
- display: block;
- width: 100%;
- aspect-ratio: 4 / 1;
- border: none;
- border-radius: 4px;
- color: #FFF;
- background-color: #50A0F0;
- font-size: 16pt;
- font-weight: 700;
- }
- .button:focus {
- color: #EEE;
- background-color: #4595E5;
- outline-color: #70C0F0;
- outline-width: 2px;
- }
- .button:hover {
- color: #EEE;
- background-color: #4595E5;
- }
- .button:active {
- color: #CCC;
- background-color: #3585D5;
- }
- .text-input {
- display: block;
- margin: auto;
- width: 100%;
- aspect-ratio: 4 / 1;
- border: none;
- border-radius: 4px;
- background-color: #FFF;
- font-size: 16pt;
- font-weight: 700;
- }
- .text-input::placeholder {
- color: #777;
- }
- .text-input:focus {
- background-color: #FFF;
- outline-color: #70C0F0;
- outline-width: 2px;
- }
- @media screen and (max-width: 600px) {
- .hs {
- height: 12px;
- }
-
- .vs {
- width: 12px;
- }
-
- .container {
- width: 256px;
- }
-
- .hero-label {
- font-size: 20pt;
- }
- .auth-label {
- font-size: 18pt;
- }
- .button {
- font-size: 12pt;
- }
- .text-input {
- font-size: 12pt;
- }
- }
- @media screen and (max-width: 400px) {
- .hs {
- height: 10px;
- }
-
- .vs {
- width: 10px;
- }
-
- .container {
- width: 192px;
- }
-
- .hero-label {
- font-size: 18pt;
- }
- .auth-label {
- font-size: 16pt;
- }
- .button {
- font-size: 10pt;
- }
- .text-input {
- font-size: 10pt;
- }
- }
- @media screen and (max-width: 240px) {
- .hs {
- height: 8px;
- }
-
- .vs {
- width: 8px;
- }
- .container {
- width: 128px;
- }
-
- .hero-label {
- font-size: 16pt;
- }
- .auth-label {
- font-size: 14pt;
- }
- .button {
- font-size: 8pt;
- }
- .text-input {
- font-size: 8pt;
- }
- }
|