mirror of
https://github.com/Paul-Houser/StartTree.git
synced 2024-11-24 16:23:16 +01:00
implemented font-size selection
This commit is contained in:
parent
a84f0f9e3e
commit
9a78049525
37
install.py
37
install.py
@ -56,17 +56,18 @@ def gen_col_headers(html_file, file_dict):
|
|||||||
|
|
||||||
def gen_columns(html_file, file_dict):
|
def gen_columns(html_file, file_dict):
|
||||||
for key in file_dict:
|
for key in file_dict:
|
||||||
html_file.write("<div class=\"column\">\n")
|
if key == "tree":
|
||||||
html_file.write(" <div class=\"tree\">\n")
|
html_file.write("<div class=\"column\">\n")
|
||||||
html_file.write(" <h1>.</h1>\n")
|
html_file.write(" <div class=\"tree\">\n")
|
||||||
html_file.write(" <ul>\n")
|
html_file.write(" <h1>.</h1>\n")
|
||||||
|
html_file.write(" <ul>\n")
|
||||||
|
|
||||||
# generate the column headers
|
# generate the column headers
|
||||||
gen_col_headers(html_file, file_dict[key])
|
gen_col_headers(html_file, file_dict[key])
|
||||||
|
|
||||||
html_file.write(" </ul>\n")
|
html_file.write(" </ul>\n")
|
||||||
html_file.write(" </div>\n")
|
html_file.write(" </div>\n")
|
||||||
html_file.write("</div>\n")
|
html_file.write("</div>\n")
|
||||||
|
|
||||||
|
|
||||||
def gen_html(file_dict):
|
def gen_html(file_dict):
|
||||||
@ -98,8 +99,26 @@ def gen_html(file_dict):
|
|||||||
|
|
||||||
print("Done!")
|
print("Done!")
|
||||||
|
|
||||||
|
def gen_style(file_dict):
|
||||||
|
skeleton_style = open('./skeletons/style.css', 'r')
|
||||||
|
cache_style = open(cache_dir + '/styles/style.css', 'w')
|
||||||
|
|
||||||
|
font_size = 20
|
||||||
|
for key in file_dict:
|
||||||
|
if key == "font_size":
|
||||||
|
font_size = file_dict[key]
|
||||||
|
break
|
||||||
|
|
||||||
|
lines = skeleton_style.readlines()
|
||||||
|
for line in lines:
|
||||||
|
if line == "/* font-size */\n":
|
||||||
|
cache_style.write("font-size: " + str(font_size) + "px;\n")
|
||||||
|
else:
|
||||||
|
cache_style.write(line)
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
file_dict = parse_yaml()
|
file_dict = parse_yaml()
|
||||||
|
gen_style(file_dict)
|
||||||
gen_html(file_dict)
|
gen_html(file_dict)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
font-size: 22px;
|
/* font-size */
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
Loading…
Reference in New Issue
Block a user