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()">
|
||||
|
||||
<header>
|
||||
|
||||
<input type="checkbox" id="dark" onclick="swap()">Dark</input>
|
||||
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<div class="tabs">
|
||||
|
@ -100,6 +94,10 @@ def main():
|
|||
name="tab" id="tab/music" />
|
||||
<label for="tab/music">Music</label>
|
||||
<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)"
|
||||
name="tab" id="tab/videos" />
|
||||
<label for="tab/videos">Videos</label>
|
||||
|
@ -250,10 +248,6 @@ text-align: center;
|
|||
border: none;
|
||||
height: 4em;
|
||||
}}
|
||||
/*******************************************************************************
|
||||
body {{
|
||||
font-size: 1.25em;
|
||||
}}
|
||||
'''
|
||||
js_file = os.path.join(js, 'index.js')
|
||||
js_text = f'''\
|
||||
|
@ -575,6 +569,11 @@ tabs = {
|
|||
<li><a href="http://radio.garden/visit/pessac">Garden</a></li>
|
||||
</ul>
|
||||
''',
|
||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
'style': f'''\
|
||||
<input type="checkbox" id="dark" onclick="swap()">Dark</input>
|
||||
''',
|
||||
|
||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||
'thesis': f'''\
|
||||
<ul>
|
||||
|
|
Loading…
Reference in a new issue