-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
49 lines (46 loc) · 816 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
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 20px;
}
h1 {
color: #0056b3;
text-shadow: 1px 1px 2px #7d2de6; /* horizontal-offset vertical-offset blur-radius color */
}
#result-box {
border: 2px solid #ccc;
padding: 20px;
margin-top: 20px;
}
#result-box h2 {
margin-bottom: 10px;
}
#result-box h3 {
color: #008000;
margin: 0;
}
.result-box-pre {
color: rgba(0, 0, 0, 0.589);
font-size: medium;
}
#imageInput {
background-color: #007bff; /* Blue color */
color: #fff; /* Text color */
border: none;
padding: 10px 15px;
cursor: pointer;
}
#imageInput:hover {
background-color: #0056b3; /* Darker blue color on hover */
}
.image {
height: 300px;
max-width: 90vw;
}
h3 {
font-weight: bolder;
font-size: large;
}
#canvas {
border: 1px solid #ddd;
}