File size: 2,961 Bytes
b1fdcc2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b0a9f8f
 
 
 
 
 
b1fdcc2
 
 
 
 
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
_font_title = "Monoton"
_font_subtitle = "Exo"

CSS = (
    """
<!-- Add the font link from Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family="""
    + _font_title
    + """&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family="""
    + _font_subtitle
    + """&display=swap" rel="stylesheet">

<style>
    /* Remove the streamlit header */
    header[data-testid="stHeader"]  {
        display: none;
    }
    /* Remove the sidebar menu */
    div[data-testid="collapsedControl"]{
        display: none;
    }
    /* Background */
    .css-z5fcl4 {
        padding: 0.5rem;
        padding-top: 0rem;
    }

    /* Distances between the title and the image in mobile */
    .css-1uifejx.e1tzin5v1 {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    h1 {
        padding-top: 0px;
    }


    /* Center the image within its container */
    .css-1kyxreq {
    justify-content: center;
    }

    /* Remove fixed width from the image container */
    .css-1kyxreq.etr89bj2 {
    width: 100% !important;
    }

    /* Center the title */
    .css-k7vsyb {
    text-align: center;
    }

    /* Hide the anchor button */
    .css-zt5igj.e16nr0p33 a {
        display: none;
    }
    /* Hide the full screen button */
    .css-e370rw.e19lei0e1 {
        display: none;
    }
    .css-6awftf.e19lei0e1 {
        display: none;
    }

    /* Desktop */
    @media (min-width: 640px) {
        .stMarkdown {
            max-width: 100%;
            width: auto;
            display: inline-block;
        }
        /* Dynamically add space between the image and the title */
        .css-1kyxreq {
            justify-content: right;
        }
    }

    /* Add space after the image and the title */
    .css-1a32fsj {
        margin-right: 0px;
    }

    /* Apply the futuristic font to the text title*/
    #moseca {
        font-family: '"""
    + _font_title
    + """', sans-serif;
        font-size: 3rem;
        text-align: center;
        /* Align the text to the center of the box */
        align-items: center;
        /* Set the line height to the same as the height of the box */
        line-height: 3.5rem;
        margin-bottom: -1rem;
    }

    /* subtitle */
    .css-5rimss p, .css-nahz7x p {
        font-family: """
    + _font_subtitle
    + """, sans-serif;
        font-size: 0.8rem;
        text-align: center;
    }

    /* Desktop */
    @media (min-width: 640px) {
        .css-zt5igj, .css-nahz7x p {
            text-align: left;
        }
        .css-5rimss p {
            text-align: left;
        }
    }

    .st-af {
        align-items: center;
        padding-right: 2rem;
    }

    /* Remove the gap around the player */
    .css-434r0z {
        gap: 0rem;
    }

    /* center the audio player in Separate page */
    .css-keje6w.e1tzin5v1 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

</style>

"""
)