summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2019-02-05 14:20:56 +0100
committerTom Smeding <tom.smeding@gmail.com>2019-02-05 14:20:56 +0100
commit42d5a97baceb8ee2ff3cec669a2077e876845b83 (patch)
treefa2c445194068e78a2cc8c4b59cff8589a34229a /index.css
InitialHEADmaster
Diffstat (limited to 'index.css')
-rw-r--r--index.css66
1 files changed, 66 insertions, 0 deletions
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;
+}