-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.py
107 lines (88 loc) · 2.08 KB
/
stylesheet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# -*- coding: utf-8 -*-
def home():
return {
'backgroundColor': 'red',
'width': '20%',
'display': 'inline-block',
'text-align': 'center',
'padding': '50px',
}
def header():
return {
'backgroundColor': '#3f51b5',
'color': 'white',
"font-family": "Garamond, serif",
"font-weight": "bold",
'fontSize': 20,
'width': '80%',
'display': 'inline-block',
'padding': '50px',
'text-align': 'right'
}
def title():
return {
'color': '#050D36',
'fontSize': 80,
'font-family': 'Bookman, URW Bookman L, serif',
'display': 'inline-block',
}
def icon_style():
return {
'height': '25px',
'width': '25px',
'display': 'block',
'marginLeft': 'auto',
'marginRight': 'auto'
}
def home_div():
return {
'display': 'inline-block',
'width': '180px',
'text-align': 'center'
}
def text_icon():
return {
'width': "80%",
'display': 'block',
'marginLeft': '100px',
'font-family': 'Bookman, URW Bookman L, serif',
'fontSize': 25,
"textAlign": "center",
'line-height': 'normal'
}
def submit():
return {
'background': '#FF8C00',
'fontSize': '30px',
'color': 'white',
'marginLeft': '25px',
'width': '200px',
'height': '60px',
}
def download():
return {
'background': '#00FF00',
'fontSize': '30px',
'color': 'white',
'marginLeft': '25px',
'width': '200px',
'height': '60px',
"textAlign": "center",
}
def footer():
return {
'background': '#000000',
'color': 'white',
#"font-family": "Garamond, serif",
#"font-weight": "bold",
#'fontSize': 20,
# 'height': '100px',
'width': '95%',
'display': 'inline-block',
}
def tooltip_style():
return {
"color": "white",
'background-color': 'orange',
'text-align': 'center'
}