diff options
Diffstat (limited to 'rannak/mangud/partorg/sonaragastik/style.css')
-rw-r--r-- | rannak/mangud/partorg/sonaragastik/style.css | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/rannak/mangud/partorg/sonaragastik/style.css b/rannak/mangud/partorg/sonaragastik/style.css new file mode 100644 index 0000000..fa73d76 --- /dev/null +++ b/rannak/mangud/partorg/sonaragastik/style.css @@ -0,0 +1,93 @@ +* { + 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; +} + + + +/* Input Box styles */ + +.messageBox{ + color: #212121; +} + +.subBtn{ + display: inline-block; + border: none; + padding: 3px 50px; + margin-botton: 0; + margin-top: 1rem; + font-size: 1.25rem; + font-weight: normal; + text-align: center; + cursor: pointer; + border-radius: 2px; + color: white; + background-color: #9D8C7C; +} + +.subDisabled{ + cursor: not-allowed; +} + + +/* Adding classes */ +.selected { + background-color: lime !important; +} + +.done{ + background-color: green; +} + + + +/* Main styles*/ + +.main{ + display: flex; +} + +.left { + margin: 10px; + width: calc((100vw - (14*3rem) - 10rem)/ 2) !important; + font-size: .8rem; +} + +.left strong{ + font-size: 1rem; +} + +table{ + margin: 10px auto; + margin-left: 5rem; +} + +td { + border: 4px solid white !important; + width: 3.5rem !important; + height: 3rem !important; + font-weight: bold; +} |