Skip to content

Commit

Permalink
Merge pull request #6 from svsticky/CssColorVariable
Browse files Browse the repository at this point in the history
Added a css color variable for the current board color
  • Loading branch information
ArondenOuden authored Oct 2, 2024
2 parents 0d2f85e + ad26458 commit 7769b55
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions static/css/home.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
:root {
--board-color: #197052;
}

*{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
box-sizing: border-box;
Expand Down Expand Up @@ -290,7 +294,7 @@ body{
}

.leafletMarkerButton {
background-color:#61518f;
background-color: var(--board-color);
color:#ffffff;
border: none;
border-radius: 5px;
Expand All @@ -315,7 +319,7 @@ body{
width: 100%;
height: 100%; /* Full screen height */
background-color: rgb(255, 255, 255);
/* border: 5px solid #61518f; */
/* border: 5px solid var(--board-color); */
transition: bottom 0.5s, border-radius 0.5s; /* Transition for sliding */
transition-timing-function: 'ease-in';
display: flex;
Expand Down Expand Up @@ -366,7 +370,7 @@ body{
}

.stickerDiv .stickerDivButton {
background-color:#61518f;
background-color: var(--board-color);;
color:#ffffff;
border: none;
border-radius: 5px;
Expand Down

0 comments on commit 7769b55

Please sign in to comment.