aboutsummaryrefslogtreecommitdiff
path: root/src/Matrix.css
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-04-11 16:27:38 -0400
committerDeterminant <ted.sybil@gmail.com>2019-04-11 16:27:38 -0400
commitf8b6ec4c684b3892f0a6e0add1f3bebee6a7f944 (patch)
tree7ef24b88817f10f5a82ba5e995dbb476f8bc62f1 /src/Matrix.css
parentcec07addd7e377516bf3987a8e31e5d171873082 (diff)
...
Diffstat (limited to 'src/Matrix.css')
-rw-r--r--src/Matrix.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Matrix.css b/src/Matrix.css
new file mode 100644
index 0000000..18d5a4d
--- /dev/null
+++ b/src/Matrix.css
@@ -0,0 +1,37 @@
+div.matrix {
+ display: inline-block;
+}
+
+.matrix div {
+ -webkit-transition: background-color 0.3s ease-out;
+ -moz-transition: background-color 0.3s ease-out;
+ -o-transition: background-color 0.3s ease-out;
+ transition: background-color 0.3s ease-out;
+ user-select: none;
+}
+
+.matrixCell div div {
+ height: 20px;
+ width: 20px;
+ margin: 2px;
+ display: inline-block;
+ cursor: pointer;
+}
+
+.smallMatrixCell div div {
+ height: 15px;
+ width: 15px;
+ margin: 1px;
+ display: inline-block;
+ cursor: pointer;
+}
+
+.matrixRow div {
+ height: 24px;
+ text-align: center;
+}
+
+.smallMatrixRow div {
+ height: 17px;
+ text-align: center;
+}