-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (91 loc) · 1.82 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (91 loc) · 1.82 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
89
90
91
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Gill Sans','Gill Sans MT','Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
width:100%;
height:100%;
background-color:rgb(27,33,39);
display:flex;
gap:20px;
justify-content:start;
align-items: center;
flex-direction: column;
padding:20px;
}
h1{
font-size: 4vw;
background:linear-gradient(to right,white,rgb(9,192,216),rgb(215,12,94));
background-clip:text;
-webkit-text-fill-color:transparent;
}
.upload-image{
max-width:600px;
width:90%;
height:300px;
background-color:rgb(66,76,86);
padding:20px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
flex-direction:column;
border-radius:50px;
box-shadow:2px 2px 10px black;
}
.inner-upload-image{
width:100%;
height:80%;
background-color:rgb(30,38,46);
border-radius:50px;
box-shadow:2px 2px 10px black;
display:flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap:20px;
color:white;
font-size:20px;
transition:all 0.3s;
cursor:pointer;
}
.inner-upload-image:hover{
box-shadow:2px 2px 10px black;
background-color:rgb(42,51,62);
}
button{
background-color:black;
padding:10px 20px;
font-size:20px;
border:none;
border-radius:20px;
color:white;
cursor:pointer;
}
#image{
width:100%;
height:100%;
display:none;
border-radius:50px;
}
.output{
width:90%;
max-width: 700px;
background-color: rgb(2,3,3);
color:white;
box-shadow:2px 2px 10px black;
border-radius:20px;
display:none;
overflow:auto;
}
#text{
width:100%;
height:100%;
}
#loading{
margin-top:30px;
filter:drop-shadow(2px 2px 10px black);
display:none;
}