-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
125 lines (107 loc) · 2.03 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
116
117
118
119
120
121
122
123
124
125
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI';
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #927dfc;
}
.wrapper {
width: 450px;
height: 288px;
padding: 30px;
background: #fff;
border-radius: 9px;
transition: height 0.2s ease;
}
.wrapper.active {
height: 537px;
}
.wrapper .upload-box {
height: 225px;
display: flex;
cursor: pointer;
align-items: center;
justify-content: center;
flex-direction: column;
border-radius: 5px;
border: 2px dashed #afafaf;
}
.wrapper.active .upload-box {
border: none;
}
.upload-box p {
font-size: 1.06rem;
margin-top: 20px;
}
.wrapper.active .upload-box p {
display: none;
}
.wrapper.active .upload-box img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 5px;
}
.wrapper.active .content {
opacity: 1;
pointer-events: auto;
transition: opacity 0.5s 0.05s ease;
}
.content .row {
display: flex;
justify-content: space-between;
}
.content .row .column {
width: calc(50% - 15px);
/* Adjusted calculation */
}
.row .column label {
font-size: 1.06rem;
}
.size .column input {
width: 100%;
height: 49px;
outline: none;
margin-top: 7px;
padding: 0 15px;
font-size: 1.06rem;
border-radius: 4px;
border: 1px solid #aaa;
/* Corrected typo 'sloid' to 'solid' */
}
.size .column input:focus {
padding: 0 14px;
border: 2px solid #927dfc;
}
.content .checkboxes {
margin-top: 20px;
}
.checkboxes .column {
display: flex;
align-items: center;
}
.checkboxes .column input {
width: 17px;
height: 17px;
margin-right: 9px;
accent-color: #927dfc;
}
.content .download-btn {
width: 100%;
color: #fff;
outline: none;
border: none;
cursor: pointer;
font-size: 1.06rem;
border-radius: 5px;
padding: 15px 0;
margin: 30px 0 10px;
background: #927dfc;
text-transform: uppercase;
}