style
This commit is contained in:
parent
2654afa28b
commit
ee6d12e619
1 changed files with 9 additions and 10 deletions
19
build.py
19
build.py
|
@ -46,12 +46,6 @@ def main():
|
||||||
|
|
||||||
<body onload="main()">
|
<body onload="main()">
|
||||||
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<input type="checkbox" id="dark" onclick="swap()">Dark</input>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
|
@ -100,6 +94,10 @@ def main():
|
||||||
name="tab" id="tab/music" />
|
name="tab" id="tab/music" />
|
||||||
<label for="tab/music">Music</label>
|
<label for="tab/music">Music</label>
|
||||||
<div>{tabs['music']}</div>
|
<div>{tabs['music']}</div>
|
||||||
|
<input type="radio" onclick="update(id)"
|
||||||
|
name="tab" id="tab/style" />
|
||||||
|
<label for="tab/style">Style</label>
|
||||||
|
<div>{tabs['style']}</div>
|
||||||
<input type="radio" onclick="update(id)"
|
<input type="radio" onclick="update(id)"
|
||||||
name="tab" id="tab/videos" />
|
name="tab" id="tab/videos" />
|
||||||
<label for="tab/videos">Videos</label>
|
<label for="tab/videos">Videos</label>
|
||||||
|
@ -250,10 +248,6 @@ text-align: center;
|
||||||
border: none;
|
border: none;
|
||||||
height: 4em;
|
height: 4em;
|
||||||
}}
|
}}
|
||||||
/*******************************************************************************
|
|
||||||
body {{
|
|
||||||
font-size: 1.25em;
|
|
||||||
}}
|
|
||||||
'''
|
'''
|
||||||
js_file = os.path.join(js, 'index.js')
|
js_file = os.path.join(js, 'index.js')
|
||||||
js_text = f'''\
|
js_text = f'''\
|
||||||
|
@ -575,6 +569,11 @@ tabs = {
|
||||||
<li><a href="http://radio.garden/visit/pessac">Garden</a></li>
|
<li><a href="http://radio.garden/visit/pessac">Garden</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
''',
|
''',
|
||||||
|
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||||
|
'style': f'''\
|
||||||
|
<input type="checkbox" id="dark" onclick="swap()">Dark</input>
|
||||||
|
''',
|
||||||
|
|
||||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||||
'thesis': f'''\
|
'thesis': f'''\
|
||||||
<ul>
|
<ul>
|
||||||
|
|
Loading…
Reference in a new issue