diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2023-02-05 20:43:17 +0200 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2023-02-05 20:43:17 +0200 |
commit | 209b1915b0f1879d0055ea17f76464dddcf8089b (patch) | |
tree | a7b4077a0c239dba3f0e40b6463e2fb368b65eb3 /rannak/mangud/kaitseliitlane/salakood/style.css | |
parent | ea90f1c8a5fb5b666113ee21f81a5530127a0517 (diff) |
Hinnad mäng for Arimees + fonts
Diffstat (limited to 'rannak/mangud/kaitseliitlane/salakood/style.css')
-rw-r--r-- | rannak/mangud/kaitseliitlane/salakood/style.css | 88 |
1 files changed, 53 insertions, 35 deletions
diff --git a/rannak/mangud/kaitseliitlane/salakood/style.css b/rannak/mangud/kaitseliitlane/salakood/style.css index 8a084d2..5da43dc 100644 --- a/rannak/mangud/kaitseliitlane/salakood/style.css +++ b/rannak/mangud/kaitseliitlane/salakood/style.css @@ -3,13 +3,22 @@ src: url('fonts/28DaysLater.ttf'); } +@font-face { + font-family: 'fontUno'; + src: url('fonts/mrsmonster.ttf'); +} + + * { box-sizing: border-box; } body{ - background-color: #212121 !important; + background-color: #4D5157; +} +h1 { + color: #154734; } .moveOn{ @@ -31,30 +40,20 @@ button:disabled{ cursor: not-allowed; } -/* Retsept Lõpus*/ - -.retsept { - margin-top: 5%; - width:60%; - color: #AFFF80; - text-align: center; - font-size: 1.2rem; -} - /* Modal Stuff */ .avatar { border-radius: 20px; - width: 100% !important; - max-width: 15rem !important; + width: 100%; + max-width: 15rem; } .modalHeaderWrapper{ text-align: center; - margin: 0 !important; - width: 100% !important; + margin: 0; + width: 100%; } @@ -69,17 +68,17 @@ button:disabled{ right: 0; padding: 6px; padding: 9px 25px; - background-color: rgba(0,136,169,1) !important; - border: none !important; - border-radius: 50px !important; - cursor: pointer !important; - transition: all 0.3 ease 0 !important; - margin: 3% !important; - font-size: 1.2rem !important; + background-color: rgba(0,136,169,1); + border: none; + border-radius: 50px; + cursor: pointer; + transition: all 0.3 ease 0; + margin: 3%; + font-size: 1.2rem; } .modalButton:hover{ - background-color: rgba(0,136,169,0.8) !important; + background-color: rgba(0,136,169,0.8); } @@ -90,7 +89,7 @@ input { } .inputBox{ - margin-top: 10px !important; + margin-top: 10px; } .subBtn{ @@ -117,13 +116,24 @@ input { .infoWrapper{ color: white; margin: 1rem; + font-size: 1.4rem; +} + +.infoWrapper .infoTxt { + font-size: 1.1rem; } -span, h6, table, h1{ +span, h6, table, h1, h2{ font-family:'fontUno'; } +h2 { + color: white; + margin-left: 7%; +} + + /* Main */ .main { @@ -142,36 +152,44 @@ span, h6, table, h1{ } td { - width: 4rem !important; - height: 4rem !important; + width: 4rem; + height: 4rem; font-weight: bold; - border-radius: 20px !important; + border-radius: 20px; } + /* Responsivness */ @media screen and (max-width: 1700px) { td { - width: 3rem !important; - height: 3rem !important; + width: 4.5rem; + height: 4.5rem; + font-size: 1.5rem; } - .main {margin-top: 4rem;} + h2 {margin-top: 4rem;} + .infoWrapper{font-size: 1.6rem;} } @media screen and (max-width: 1500px) { td { - width: 2rem !important; - height: 2rem !important; + width: 4rem; + height: 4rem; + font-size: 1.4rem; } + + .infoWrapper{font-size: 1.5rem;} } @media screen and (min-width: 1900px) { - .main { - margin-top: 5rem; + h2{ + margin-top: 5.5rem; } + .infoWrapper{font-size: 1.7rem;} + id {font-size: 1.6rem;} } |