-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (98 loc) · 2.24 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body {
background-image: linear-gradient(120deg, #f665f6 0%, #2d2b2b 100%);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}
.main {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
background-color: rgba(255, 255, 255, 0.7);
}
.container > h1 {
text-shadow: 1px 1px rgb(200, 200, 200);
}
.container > p {
font-size: 17px;
}
.container > .removing {
font-size: 17px;
letter-spacing: 2px;
}
.custum-file-upload {
height: 150px;
width: 200px;
display: flex;
flex-direction: column;
align-items: space-between;
gap: 20px;
margin: 20px;
cursor: pointer;
align-items: center;
justify-content: center;
border: 2px dashed #cacaca;
background-color: rgba(255, 255, 255, 1);
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0px 48px 35px -48px rgba(0,0,0,0.1);
}
.custum-file-upload .icon {
display: flex;
align-items: center;
justify-content: center;
}
.custum-file-upload .icon svg {
height: 80px;
fill: rgba(75, 85, 99, 1);
}
.custum-file-upload .text {
display: flex;
align-items: center;
justify-content: center;
}
.custum-file-upload .text span {
font-weight: 400;
color: rgba(75, 85, 99, 1);
}
.custum-file-upload input {
display: none;
}
.buttons {
display: flex;
justify-content: space-between;
width: 400px;
}
.buttons button {
padding: 5px 10px;
font-size: 18px;
border: none;
outline: none;
background-color: #ed5e37;
border-radius: 5px;
cursor: pointer;
color: #ffff;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.buttons button:hover {
background-color: #aa5b45;
}
#resultImage {
margin: 20px 0;
}