diff options
Diffstat (limited to 'rannak/mangud/kaitseliitlane/salakood/style.css')
-rw-r--r-- | rannak/mangud/kaitseliitlane/salakood/style.css | 152 |
1 files changed, 152 insertions, 0 deletions
diff --git a/rannak/mangud/kaitseliitlane/salakood/style.css b/rannak/mangud/kaitseliitlane/salakood/style.css new file mode 100644 index 0000000..537477f --- /dev/null +++ b/rannak/mangud/kaitseliitlane/salakood/style.css @@ -0,0 +1,152 @@ +* { + box-sizing: border-box; +} + +body{ + background-color: #212121 !important; +} + +.moveOn{ + display: inline-block; + border: none; + padding: 6px 12px; + margin-botton: 0; + font-size: 1rem; + font-weight: normal; + text-align: center; + cursor: pointer; + border-radius: 4px; + background-color: #4BB543; + color: white; +} + +button:disabled{ + opacity: 0.5; + 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; +} + +.modalHeaderWrapper{ + text-align: center; + margin: 0 !important; + width: 100% !important; +} + + + +.closeModalButton { + border-radius: 50px; +} + +.modalButton{ + position: absolute; + top: 0; + 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; +} + +.modalButton:hover{ + background-color: rgba(0,136,169,0.8) !important; +} + + +/* Input Box styles */ + +input { + width: 7ch; +} + +.inputBox{ + margin-top: 10px !important; +} + +.subBtn{ + display: inline-block; + border: none; + padding: 3px 6px; + margin-botton: 0; + font-size: .95rem; + font-weight: normal; + text-align: center; + cursor: pointer; + border-radius: 2px; + color: white; + background-color: #93bdbd; +} + +.subDisabled{ + cursor: not-allowed; +} + + +/* Koodi Styles*/ + +.infoWrapper{ + color: white; + margin: 1rem; +} + + + +/* Main */ + +.main { + display: flex; + justify-content: center; + align-items: center; +} + +td { + border: 4px solid white !important; + width: 4rem !important; + height: 4rem !important; + font-weight: bold; +} + + + +.done { + color: #bd1393; +} + +.selected { + background: lime; +} + + + + + + +@media screen and (min-width: 1900px) { + .main { + margin-top: 5rem; + } +} |