-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstyles.py
76 lines (70 loc) · 2.68 KB
/
styles.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
model_css = '''
.card {
font-family: arial;
font-size: 20px;
text-align: center;
color: black;
background-color:
white;
}
.from {
font-style: italic;
}'''
std_word = """
<h3 style="text-align: center;"><a href="https://dictionary.cambridge.org/dictionary/english/{{Word}}">{{Word}}</a></h3>
<blockquote>
<div style="text-align: center;">{{Grammar}} {{Pronunciation}}</div>
</blockquote>
<div style="text-align: center;">{{Meaning}}</div>
<br>
<div style="text-align: center;font-style: italic;">{{Examples}}</div>
"""
std_word_def_sound = """
<h3 style="text-align: center;"><a href="https://dictionary.cambridge.org/dictionary/english/{{Word}}">{{Word}}</a></h3>
<blockquote>
<div style="text-align: center;">{{Grammar}} {{Pronunciation}}</div>
</blockquote>
<div style="text-align: center;">{{Meaning}}</div>
<br>
<div style="text-align: center;font-style: italic;">{{Examples}}</div>
<hr>
<div style="text-align: center;">{{Picture}}</div>
<div style="text-align: center;">{{Definition}}</div>
<div style="text-align: center;">{{Audio}}</div>
<sup style="text-align: center;">{{SynonymAntonym}}<sup>
"""
std_def = """
<div style="text-align: center;">{{Picture}}</div>
<div style="text-align: center;">{{Definition}}</div>
"""
std_def_word_sound = """
<div style="text-align: center;">{{Picture}}</div>
<div style="text-align: center;">{{Definition}}</div>
<hr>
<h3 style="text-align: center;"><a href="https://dictionary.cambridge.org/dictionary/english/{{Word}}">{{Word}}</a></h3>
<blockquote>
<div style="text-align: center;">{{Grammar}} {{Pronunciation}}</div>
</blockquote>
<div style="text-align: center;">{{Meaning}}</div>
<br>
<div style="text-align: center;font-style: italic;">{{Examples}}</div>
<hr>
<div style="text-align: center;">{{Audio}}</div>
<sup style="text-align: center;">{{SynonymAntonym}}<sup>
"""
std_sound = """
<div style="text-align: center;">Listen.{{Audio}}</div>
"""
std_sound_word_def = """
<div style="text-align: center;">Listen.{{Audio}}</div>
<hr>
<h3 style="text-align: center;"><a href="https://dictionary.cambridge.org/dictionary/english/{{Word}}">{{Word}}</a></h3>
<blockquote>
<div style="text-align: center;">{{Grammar}} {{Pronunciation}}</div>
</blockquote>
<div style="text-align: center;">{{Picture}}</div>
<div style="text-align: center;">{{Meaning}}</div>
<br>
<div style="text-align: center;font-style: italic;">{{Examples}}</div>
<sup style="text-align: center;">{{SynonymAntonym}}<sup>
"""