summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
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;
+}