X:2012
T:Liam's Theme
R:Cole Wilson
C:Trad.
O:England
Z:HI LIAM!!!!!
M:4/4
L:1/8
Q: 1/2 =160
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
* { | |
font-family: 'Courier New', Courier, monospace; | |
} | |
*::first-letter { | |
text-transform: uppercase; | |
} | |
.header-title-name::first-letter { | |
text-transform: lowercase!important; | |
} | |
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
:root { | |
--colors-one: #d6e685; | |
--colors-two: #8cc665; | |
--colors-three: #44a340; | |
--colors-four: #1e6823; | |
} | |
@media (prefers-color-scheme: dark) { | |
:root { | |
--colors-text: var(--colors-white); |
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
/** | |
* Simulate a key event. | |
* @param {Number} keyCode The keyCode of the key to simulate | |
* @param {String} type (optional) The type of event : down, up or press. The default is down | |
* @param {Object} modifiers (optional) An object which contains modifiers keys { ctrlKey: true, altKey: false, ...} | |
*/ | |
function simulateKey (keyCode, type, modifiers) { | |
var evtName = (typeof(type) === "string") ? "key" + type : "keydown"; | |
var modifier = (typeof(modifiers) === "object") ? modifier : {}; |
NewerOlder