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