File size: 1,338 Bytes
6bb6632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st

st.markdown('''
            <link
            href="https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700&display=swap"
            rel="stylesheet"
            />
            ''',    unsafe_allow_html=True)
st.markdown('''
<style>
            body {
                font-family: sans-serif;
                font-family: "Exo", sans-serif;

                background: #070815;
                color: white;
            }
            h1 {
                text-align: center;
                font-weight: lighter;
            }
            button {
                display: block;
                margin: 0 auto;
                padding: 10px 20px;
                font-size: 1.2rem;
                border: none;
                border-radius: 5px;
                cursor: pointer;
            }
            textarea {
                display: block;
                margin: 0 auto;
                width: 100%;
                height: 300px;
                padding: 10px;
                font-size: 1.2rem;
                background: transparent;
                color: white;
                font-family: "Exo", sans-serif;
                border: none;
                border-radius: 5px;
                cursor: pointer;
            }
        </style>
            ''',    unsafe_allow_html=True)