-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
56 lines (48 loc) · 717 Bytes
/
Copy pathapp.css
File metadata and controls
56 lines (48 loc) · 717 Bytes
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
body,
html {
font-family: sans-serif;
}
.img-sample1 {
display: flex;
margin-bottom: 5vh;
}
.img-sample2 {
display: flex;
}
.btn-1,
.btn-2,
.submit-btn {
height: 40px;
margin: auto 50px;
cursor: pointer;
border: 2px solid rgb(107, 107, 107);
border-radius: 5px;
transition: 0.1s;
color: black;
background-color: white;
}
.btn-1:hover,
.btn-2:hover,
.submit-btn:hover {
background-color: rgb(46, 46, 46);
color: white;
}
.submit-btn {
position: absolute;
top: 45vh;
right: 10vw;
width: 90px;
}
.image-counter1,
.image-counter2 {
margin: auto 20px;
}
.show-result {
display: table;
margin: 0 auto;
}
.result-text {
width: 40px;
margin: 0 auto;
margin-top: 5vh;
}