File size: 1,802 Bytes
47aeb66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
div.app-flex-container {
    display: flex;
    align-items: left;
}

div.app-flex-container > a {
    margin-left: 6px;
}

div.dl1 div.upload-container {
    height: 350px;
    max-height: 350px;
}

div.dl2 {
    max-height: 200px;
}

div.dl2 img {
    max-height: 200px;
}

div.dl5 {
    max-height: 200px;
}

div.dl5 img {
    max-height: 200px;
}

div.video1 div.video-container {
    height: 500px;
}

div.video2 {
    height: 200px;
}

div.video3 {
    height: 200px;
}

div.video4 {
    height: 200px;
}

div.stat {
    height: 350px;
}

div.audio {
    height: 120px;
}

div.pred {
    height: 65px;
}

div.video {
    height: 65px;
}

div.img {
    height: 120px;
}

div.settings-wrapper {
    display: none;
}

.submit {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: var(--button-border-width) solid var(--button-primary-border-color);
    background: var(--button-primary-background-fill);
    color: var(--button-primary-text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.submit[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.submit:hover:not([disabled]) {
    border-color: var(--button-primary-border-color-hover);
    background: var(--button-primary-background-fill-hover);
    color: var(--button-primary-text-color-hover);
}

.clear {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.clear[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.submit:active:not([disabled]), .clear:active:not([disabled]) {
    transform: scale(0.98);
}