-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (88 loc) · 1.66 KB
/
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
*{
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
margin: 0;
background-color: transparent;
}
main{
padding: 20px;
}
.container{
max-width: 600px;
margin: 0 auto;
}
form{
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 100px;
background-color: white;
margin-bottom: 20px;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}
.form-group{
display: flex;
flex-direction: column;
gap: 5px;
}
label{
font-weight: bold;
}
input[type="file"]{
border: none;
padding: 10px;
font-size: 16px;
background-color: white;
border-radius: 5px;
}
button{
background-color: #00bfff;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3;
}
button:hover:not(:disabled){
background-color: #00bfff;
}
button:disabled{
background-color: #bbb;
cursor: not-allowed;
}
#loader{
display: none;
border: 10px solid #f3f3f3;
border-top: 10px solid orangered;
border-radius: 50%;
width: 70px;
height: 70px;
animation: spin 2s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
canvas{
max-width: 100%;
height: auto;
margin: 0 auto;
display: block;
border-radius: 10px;
/* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); */
background-color: transparent;
}
h1{
text-align: "center"
}