summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css5
1 files changed, 3 insertions, 2 deletions
diff --git a/style.css b/style.css
index 13a9840..7d71c39 100644
--- a/style.css
+++ b/style.css
@@ -1,6 +1,6 @@
body {
font-family: sans-serif;
- --piece-size: 40px;
+ --piece-size: 70px;
--image: url("https://upload.wikimedia.org/wikipedia/commons/0/09/Croatia_Opatija_Maiden_with_the_Seagull_BW_2014-10-10_10-35-13.jpg");
--view-width: 800px;
--view-height: 480px;
@@ -10,6 +10,7 @@ body {
width: 100vw;
height: 100vh;
position: relative;
+ user-select: none;
}
.piece {
@@ -18,5 +19,5 @@ body {
height: var(--piece-size);
background-image: var(--image);
background-size: var(--view-width) var(--view-height);
- clip-path: path("M0 0 L40 0 L30 40 L0 40 Z");
+ /* clip-path: path("M0 0 L40 0 L40 40 L0 40 Z"); */
}