summaryrefslogtreecommitdiff
path: root/sass/board.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/board.scss')
-rwxr-xr-xsass/board.scss34
1 files changed, 34 insertions, 0 deletions
diff --git a/sass/board.scss b/sass/board.scss
new file mode 100755
index 0000000..a34a4fa
--- /dev/null
+++ b/sass/board.scss
@@ -0,0 +1,34 @@
+@import "variables";
+
+#board {
+ background-image: $board_image;
+ background-size: 100%;
+ opacity:0.9;
+
+ margin: 0 auto;
+ padding: $board-border;
+
+ height: $board-size;
+ aspect-ratio: 1;
+}
+
+@media screen and (max-width: $screen-transition-width) {
+ #board {
+ height: $board-size-mob;
+ padding: $board-border-mob;
+ }
+}
+
+table {
+ height: 100%;
+ width: 100%;
+}
+
+table, tr, td {
+ border: 1px solid black;
+ padding: 0;
+ margin: 0;
+ border-collapse: collapse;
+}
+
+