From f8b6ec4c684b3892f0a6e0add1f3bebee6a7f944 Mon Sep 17 00:00:00 2001 From: Determinant Date: Thu, 11 Apr 2019 16:27:38 -0400 Subject: ... --- src/Matrix.css | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/Matrix.css (limited to 'src/Matrix.css') 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; +} -- cgit v1.2.3