aboutsummaryrefslogtreecommitdiff
path: root/src/mobile/ImageUpload.scss
blob: 65305dd04e2edd92ea76ff47d14b72d36326f927 (plain)
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
@import "../client/views/globalCssVariables.scss";

.imgupload_cont {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;

    .button_file {
        text-align: center;
        height: 50%;
        width: 50%;
        background-color: paleturquoise;
        color: grey;
        font-size: 3em;
    }

    .upload_label {
        width: 80vw;
        height: 40vh;
        background: $dark-color;
        font-size: 10vw;
        font-family: $sans-serif;
        text-align: center;
        padding-top: 20vh;
        color: white;
    }
}