This file contains hidden or 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
.episode-list li.js-early-access:not(:hover) > div > a.info__title, | |
.episode-list li.js-coming-soon:not(:hover) > div > a.info__title, | |
.series-root .section--left li.episode-list__item > a.js-early-access:not(:hover) > div.info > .title, | |
.series-root .section--left li.episode-list__item > a.js-coming-soon:not(:hover) > div.info > .title, | |
.js-episode-viewer div.episode-unit > div.viewer--filtered div.viewer__header:not(:hover) > p.title { | |
filter: blur(6px); | |
padding-left: 10px; | |
transition: 0.5s; | |
} |
This file contains hidden or 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, a, .programlisting, table, body { | |
font-size: 0.8rem; | |
} | |
h4 { | |
font-weight: bold; | |
} | |
h3 { | |
font-size: 135%; |
This file contains hidden or 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 { | |
/* DEFAULT HUE */ | |
/* --hue: 240deg; */ | |
/* AVOCADO HUE */ | |
/* --hue: 90deg; */ | |
/* BLUEBERRIES HUE - brodokk's theme */ | |
/* --hue: 300deg; */ | |
/* CURRENT HUE */ | |
--hue: 90deg; | |
} |
This file contains hidden or 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
function love.load() | |
windowW, windowH = love.window.getMode() | |
centerX, centerY = windowW/2, windowH/2 | |
radius = math.min(windowW/2*.9, windowH/2*.9) | |
ringWidth = math.min(radius/8, 32) | |
font = love.graphics.newFont(24) | |
end |
This file contains hidden or 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
function love.load() | |
windowW, windowH = love.window.getMode() | |
centerX, centerY = windowW/2, windowH/2 | |
radius = math.min(windowW/2*.9, windowH/2*.9) | |
ringWidth = math.min(radius/12, 32) | |
font = love.graphics.newFont(24) | |
end |
This file contains hidden or 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
function distance(x1, y1, x2, y2) | |
return math.sqrt((x1-x2)^2+(y1-y2)^2) | |
end | |
img = love.image.newImageData("m.png") | |
local tolerance = 2/8 | |
balls = {} | |
for ballr = math.min(img:getWidth()/2, img:getHeight()/2), 2, -1 do | |
print(ballr) | |
for startx = 0, img:getWidth()-ballr*2-1 do |
This file contains hidden or 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
function love.load() | |
controls = { | |
showOptions = { | |
options = {true, false}, | |
keyadd = "f1", | |
ctrl = false | |
}, | |
showGrid = { |
This file contains hidden or 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
/* | |
HugoBDesigner's Discord Avocado Theme | |
© Hugo Balthazar | |
INSTALLING: | |
Well, you don't "install" it so much as you "apply" it. But I digress. | |
The easiest way I found of applying a custom CSS stylesheet: | |
- After Discord starts up, press Ctrl+Shift+I (shortcut for "Inspect Element"); | |
- Make sure you're on the "Elements" tab on the window that opens up, and that | |
the "<body>" element is selected (it usually is, by default); |
This file contains hidden or 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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
This file contains hidden or 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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
NewerOlder