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