css/debug
This commit is contained in:
parent
af54b6c8c2
commit
929765d0fb
1 changed files with 9 additions and 5 deletions
14
build.py
14
build.py
|
@ -185,10 +185,6 @@ def main():
|
||||||
'''
|
'''
|
||||||
css_file = os.path.join(css, 'index.css')
|
css_file = os.path.join(css, 'index.css')
|
||||||
css_text = f'''\
|
css_text = f'''\
|
||||||
/*
|
|
||||||
* {{ border: 1px solid; }}
|
|
||||||
/**/
|
|
||||||
|
|
||||||
@media screen and (max-aspect-ratio: 10/16) {{
|
@media screen and (max-aspect-ratio: 10/16) {{
|
||||||
|
|
||||||
body {{
|
body {{
|
||||||
|
@ -259,7 +255,7 @@ background: linear-gradient(rgba(64,64,64,0), rgba(64,64,64,1));
|
||||||
color: rgb(192,0,0);
|
color: rgb(192,0,0);
|
||||||
}}
|
}}
|
||||||
.tabs > div {{
|
.tabs > div {{
|
||||||
margin: 0
|
margin: 0;
|
||||||
}}
|
}}
|
||||||
|
|
||||||
a {{
|
a {{
|
||||||
|
@ -312,6 +308,14 @@ text-align: center;
|
||||||
border: none;
|
border: none;
|
||||||
height: 4em;
|
height: 4em;
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
* {{
|
||||||
|
border-color: rgb(255,0,255);
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
}}
|
||||||
'''
|
'''
|
||||||
js_file = os.path.join(js, 'index.js')
|
js_file = os.path.join(js, 'index.js')
|
||||||
js_text = f'''\
|
js_text = f'''\
|
||||||
|
|
Loading…
Reference in a new issue