Skip to content

Commit

Permalink
app - add comments to css experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
lakesare committed Oct 5, 2023
1 parent b4dc8a1 commit f06cece
Showing 1 changed file with 8 additions and 22 deletions.
30 changes: 8 additions & 22 deletions app/src/experimental.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* EXPERIMENTAL */
/* These make the border not stick out & pattern the tactics in various ways */


/* 1. These make the border not stick out */
.hypothesis svg path:last-child{
stroke: none;
outline: 3px solid rgb(64, 192, 87);
Expand All @@ -12,6 +13,10 @@
outline-offset: -3px;
}

/* 2. These pattern the tactic nodes */
.tactic svg > g{
stroke: none;
}
.tactic {
height: 100%;

Expand All @@ -33,28 +38,9 @@
background-image: linear-gradient(0deg, #cacaca3d 50%, transparent 50%);
background-size: 10px 10px;
}

/* 3. This adds a non-sticking-out border that mimics our current border */
.tactic{
background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23CECCCCFF' stroke-width='4' stroke-dasharray='6%2c 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
height: 100%;
}
.tactic svg{
> g{
stroke: none;
}
}

.tl-text-content{
color: #343434;
}

.hypothesis .tl-text-content{
/* color: #285e0c; */
text-shadow: none;
}
.goal .tl-text-content{
/* color: #712b2b; */
text-shadow: none;
}
.tactic .tl-text-content{
text-shadow: rgb(255 255 255) 0px 0px 20px;
}

0 comments on commit f06cece

Please sign in to comment.