-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (57 loc) · 941 Bytes
/
style.css
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
* {
font-family: Arial, Helvetica, sans-serif;
}
body {
padding: 20px;
}
#app-ctn {
width: 450px;
}
#main-title {
margin-bottom: 25px;
}
#upload-ctn {
margin: 15px 0px;
}
#image-ctn {
border: 1px solid #333;
position: relative;
height: 250px;
}
#loaded-image {
position: relative;
width: 100%;
height: 100%;
object-fit: contain;
}
.label {
font-weight: bold;
font-size: 15px;
}
#controls-ctn {
text-align: right;
}
.tensor-btn {
opacity: 0.7;
overflow: hidden;
font-weight: 700;
font-size: 16px;
line-height: 20px;
border-radius: 8px;
padding: 13px 22px;
outline: none;
cursor: pointer;
}
.tensor-btn:hover {
opacity: 1;
}
.cancel-btn {
background: none;
color: #ff6f00;
border: 1px solid #ff6f00;
}
.validation-btn {
background: linear-gradient(to right, #ff6f00, #ff9100);
color: #fff;
border: none;
}