-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
153 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<script src="{{ site.url }}/assets/vendor/cupcakes-3.1.0.min.js"></script> | ||
|
||
<script> | ||
window.addEventListener("load", function(){ | ||
window.cupcakeconsent.initialise({ | ||
"content": { | ||
"message": "Just so you know, this website uses cookies.", | ||
"dismiss": "<span>👍</span> Got it!", | ||
"link": "What are cookies?" | ||
} | ||
})}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
@use "sass/utilities/css-variables" as cv; | ||
@use "sass/utilities/extends"; | ||
@use "sass/utilities/mixins" as mx; | ||
|
||
.cpck-window { | ||
background-color: var(--bulma-background); | ||
box-shadow: 0 0 1em rgba(black, 0.1); | ||
padding: 1em 1.5em; | ||
position: fixed; | ||
z-index: 60; | ||
} | ||
|
||
.cpck-invisible { | ||
display: none !important; | ||
} | ||
|
||
.cpck-link { | ||
border-bottom: 1px solid var(--bulma-link); | ||
padding-bottom: 2px; | ||
|
||
&:hover { | ||
border-bottom-width: 2px; | ||
} | ||
|
||
&:active { | ||
background-color: var(--bulma-link-light); | ||
} | ||
} | ||
|
||
.cpck-compliance { | ||
margin-top: 1em; | ||
} | ||
|
||
.cpck-btn { | ||
border: 2px solid var(--bulma-success); | ||
border-radius: var(--bulma-radius); | ||
color: var(--bulma-success); | ||
display: inline-block; | ||
font-weight: var(--bulma-weight-bold); | ||
padding: 0.5em 1em; | ||
vertical-align: top; | ||
|
||
span { | ||
margin-left: -0.125em; | ||
margin-right: 0.5em; | ||
} | ||
|
||
&:hover { | ||
background-color: var(--bulma-success-light); | ||
color: var(--bulma-success-dark); | ||
} | ||
|
||
&:active, | ||
&:focus { | ||
outline: none; | ||
} | ||
} | ||
|
||
@include mx.mobile { | ||
.cpck-window { | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
} | ||
} | ||
|
||
@include mx.tablet { | ||
.cpck-window { | ||
border-radius: var(--bulma-radius); | ||
bottom: 1em; | ||
right: 1em; | ||
width: 20rem; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -574,4 +574,5 @@ <h2 class="bd-hero-subtitle algolia-lvl1"> | |
<script src="https://unpkg.com/@shopify/[email protected]/dist/umd/storefront-api-client.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/umd/photoswipe.umd.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/umd/photoswipe-lightbox.umd.min.js"></script> | ||
{% include global/cupcake.html %} | ||
<script type="text/javascript" src="{{ site.url }}/assets/javascript/shop.js"></script> |