-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
88 lines (75 loc) · 1.23 KB
/
Copy pathstyles.css
File metadata and controls
88 lines (75 loc) · 1.23 KB
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
body {
font-family: "Acme", sans-serif;
margin: 0 auto;
text-align: center;
}
.hidden {
display: none;
}
.show {
display: block;
}
.custom-image-upload {
border: 1px solid #ccc;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
font-family: "Acme", sans-serif;
}
input[type="file"] {
display: none;
}
.img-field {
display: block;
width: 350px;
max-height: 65vh;
border-radius: 2%;
margin: 0 auto;
margin-top: 5vh;
}
.submit-btn {
margin: 0 auto;
padding: 8px;
border: 2px solid black;
background-color: white;
border-radius: 5%;
cursor: pointer;
font-family: "Acme", sans-serif;
margin-top: 3vh;
}
.submit-btn:hover {
border: 2px solid black;
background-color: black;
color: white;
transition: 0.2s;
}
.result-container {
width: 200px;
margin: 0 auto;
padding: 20px 50px;
margin-top: 4vh;
border: 2px dashed black;
}
.confidence {
margin-left: 1vw;
border-bottom: 2px solid;
cursor: pointer;
}
.confidence:hover {
border-bottom-width: 5px;
}
.github-link {
width: 35px;
position: absolute;
margin: 0 auto;
top: 3vh;
right: 5vw;
}
@media only screen and (max-width: 575.98px) {
.img-field {
width: 80vw;
}
.github-link {
right: 2vw;
}
}