From 42d5a97baceb8ee2ff3cec669a2077e876845b83 Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Tue, 5 Feb 2019 14:20:56 +0100 Subject: Initial --- index.css | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 index.css (limited to 'index.css') diff --git a/index.css b/index.css new file mode 100644 index 0000000..d72be4e --- /dev/null +++ b/index.css @@ -0,0 +1,66 @@ +body { + background-color: @@cBG@@; + color: @@cFG@@; + font: 24px arial; + margin: 2px; + padding: 0; + + overflow-x: hidden; + overflow-y: hidden; +} + +#cvs { + width: 99vw; +} + +#digits-container { + width: @@SS@@px; + text-align: center; +} + +.spacer { + display: inline-block; +} + +#digits-container table { + display: inline-block; + border-spacing: 6px; +} + +#digits-container td { + border-radius: 8px; + margin: 0; + padding: 0; + width: 70px; + height: 70px; + + color: @@cInvFG@@; + + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + + cursor: pointer; +} + +#digit-table-large td.selected { + background-color: @@cBGdigitLargeSelected@@; +} + +#digit-table-small td.selected { + background-color: @@cBGdigitSmallSelected@@; +} + +#digits-container td.disabled { + color: @@cFGdisabled@@; +} + +#digit-table-small td { + background-color: @@cMenuSmall@@; + font-size: 24px; +} + +#digit-table-large td { + background-color: @@cMenuLarge@@; + font-size: 42px; +} -- cgit v1.2.3-54-g00ecf