File size: 1,269 Bytes
e12a899
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<style>
    body {
        background-color: #fff;
        color: #353535;
        font-family: sans-serif;
        padding: 2rem;
        max-width: 768px;
        margin: 0 auto;
    }

    #app {
        margin-left: 0 auto;
        margin-right: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

    #form {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #fileExtention {
        flex-basis: 100%;
        max-width: 200px;
        margin-right: 0;
    }

    #submit {
        flex-basis: auto;
        font-weight: bold;
        background-color: #585858;
        border: none;
        padding: 1rem;
        margin-top: 2rem;
        transition: all 0.2s;
    }

    #submit:enabled {
        background-color: #5676e5;
        color: #fff;
        cursor: pointer;
    }

    #submit:disabled {
        background-color: #868e96;
        color: #fff;
        cursor: not-allowed;
    }

    #loader {
        opacity: 0;
        visibility: hidden;
        transition: all 1s;
    }

    #loader.hidden {
        opacity: 0;
        visibility: visible;
    }

    #backButton {
        margin-top: 2rem;
    }

    #backButtonLoader {
        opacity: 0;
    }
</style>