move scripts/styles into dirs
This commit is contained in:
parent
f69277f67f
commit
b3e45e855a
8 changed files with 5 additions and 5 deletions
4
Makefile
4
Makefile
|
@ -8,8 +8,8 @@ MEDIA = \
|
||||||
rainbow-quox/back.svg
|
rainbow-quox/back.svg
|
||||||
CSS = $(shell find fonts -type f) \
|
CSS = $(shell find fonts -type f) \
|
||||||
$(patsubst %.scss,%.css, \
|
$(patsubst %.scss,%.css, \
|
||||||
$(wildcard rainbow-quox/*.scss) $(wildcard style/*.css))
|
$(wildcard rainbow-quox/style/*.scss) $(wildcard style/*.css))
|
||||||
SCRIPTS = $(patsubst %.ts,%.js,$(wildcard script/*.ts rainbow-quox/*.ts))
|
SCRIPTS = $(patsubst %.ts,%.js,$(wildcard script/*.ts rainbow-quox/script/*.ts))
|
||||||
MISC = $(shell find .well-known -type f)
|
MISC = $(shell find .well-known -type f)
|
||||||
ALL = $(CSS) $(PAGES) $(MEDIA) $(SCRIPTS) $(MISC)
|
ALL = $(CSS) $(PAGES) $(MEDIA) $(SCRIPTS) $(MISC)
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
|
|
||||||
<title>rainbow quox</title>
|
<title>rainbow quox</title>
|
||||||
|
|
||||||
<link rel=stylesheet href=style.css>
|
<link rel=stylesheet href=style/style.css>
|
||||||
<script src=quox.js type=module></script>
|
<script src=script/quox.js type=module></script>
|
||||||
|
|
||||||
<div id=buttons>
|
<div id=buttons>
|
||||||
<button id=reroll>new quox</button>
|
<button id=reroll>new quox</button>
|
||||||
|
|
|
@ -13,7 +13,7 @@ main = do
|
||||||
|
|
||||||
document :: Element
|
document :: Element
|
||||||
document =
|
document =
|
||||||
svg11_ (stylesheet "palette.css" <> foldMap makeItem (zip [0..] items))
|
svg11_ (stylesheet "style/palette.css" <> foldMap makeItem (zip [0..] items))
|
||||||
`with` [Width_ <<- width, Height_ <<- "179",
|
`with` [Width_ <<- width, Height_ <<- "179",
|
||||||
ViewBox_ <<- viewBox]
|
ViewBox_ <<- viewBox]
|
||||||
where
|
where
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue