aboutsummaryrefslogtreecommitdiff
path: root/src/Grid.css
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-04-10 01:09:41 -0400
committerDeterminant <ted.sybil@gmail.com>2019-04-10 01:09:41 -0400
commit291895a75856408788925bfb34e4c085c40efbaf (patch)
tree4fe1ea3e1b1faf5012de93104c49032dc3937a52 /src/Grid.css
parent94330abf2d1ba606976ec4f2dc10277b78cdd036 (diff)
finish version 1.0
Diffstat (limited to 'src/Grid.css')
-rw-r--r--src/Grid.css35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/Grid.css b/src/Grid.css
new file mode 100644
index 0000000..a9c7802
--- /dev/null
+++ b/src/Grid.css
@@ -0,0 +1,35 @@
+div.grid {
+ display: inline-block;
+}
+
+
+.grid div {
+ -webkit-transition: background-color 0.1s ease-out;
+ -moz-transition: background-color 0.1s ease-out;
+ -o-transition: background-color 0.1s ease-out;
+ transition: background-color 0.1s ease-out;
+}
+
+.gridCell > div > div {
+ height: 20px;
+ width: 20px;
+ margin: 2px;
+ display: inline-block;
+}
+
+.smallGridCell > div > div {
+ height: 15px;
+ width: 15px;
+ margin: 1px;
+ display: inline-block;
+}
+
+.gridRow > div {
+ height: 24px;
+ text-align: center;
+}
+
+.smallGridRow > div {
+ height: 17px;
+ text-align: center;
+}