This file has been truncated, but you can view the full file.
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
{ | |
"types": [ | |
0, | |
10003, | |
0, | |
3, | |
113, | |
47, | |
0, | |
24, |
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
/* | |
Go to your files page under Settings -> Files | |
Open the devtools and run this script | |
You'll then inputTextArr which is an array of all CDN values for files on the page. | |
*/ | |
let anchors = [] | |
let inputTextArr = []; | |
let images = []; |
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
<p>Variable Fonts</p> |
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
grid-template-rows: 1fr 1fr 1fr; | |
grid-template-columns: 1fr 1fr 1fr; |
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
.puzzle-game { | |
display: grid; | |
grid-area: game; | |
align-self: start; | |
justify-self: center; | |
max-width: 35vw; | |
border: 10px solid cornflowerblue; | |
grid: 1fr 1fr 1fr / 1fr 1fr 1fr; | |
background: rgba(0, 0, 0, .5); | |
} |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Fallbacks!!!</title> | |
<style> | |
#test { | |
width: 100px; | |
height: 100px; | |
background: red; | |
} |
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
div { | |
--primary: blue; | |
margin-top: var(--primary, 12px); | |
} |
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
body { | |
background: red; | |
} | |
@supports(--foo: blue) { | |
body { | |
background: green; | |
} | |
} |
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
:root { | |
--foo: true; | |
} | |
body { | |
background: red; | |
} | |
@supports(--foo: false) { | |
body { |
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
div { | |
--pos: 0; | |
left: var(--pos); | |
animation: move 1s; | |
} | |
@keyframes move { | |
to { | |
--pos: 50px; | |
} |
NewerOlder