-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
140 lines (127 loc) · 2.98 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
.extesnion {
z-index: 2 !important;
margin: 5px !important;
padding: 5px;
color: black;
top: 0px !important;
right: 0px !important;
position: absolute !important;
max-width: 350px !important;
min-height: 450px !important;
/* background-color: #24292f; */
font-family: var(--font-second);
border: 1.5px dashed #cf222e;
/* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
/* From https://css.glass */
background: rgba(0, 0, 0, 0.3);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(6.3px);
-webkit-backdrop-filter: blur(6.3px);
}
:root {
--font-main: "Roboto", sans-serif;
--font-second: "Poppins", sans-serif;
--background: white;
}
/* utility */
.flex {
display: flex;
align-items: center;
}
.title-close {
justify-content: space-between;
}
.h1-title {
background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.h1-center {
text-align: center;
margin-bottom: 30px;
}
.scrape {
flex-direction: column;
gap: 30px;
}
.main-title-price {
gap: 25px;
margin-bottom: 10px;
}
.special-price {
flex-direction: column;
gap: 15px;
}
.product-img {
height: auto;
max-width: 150px !important;
max-height: 150px !important;
}
/* client-info */
.client-info {
flex-direction: column;
padding-bottom: auto;
}
.client-input {
border: none;
min-width: 17rem;
padding: 8px 8px 8px;
outline: 1px solid black;
user-select: none;
background: linear-gradient(130deg, #000000, #000000 41.07%, #000000 76.05%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.close-submit {
margin-top: 20px;
}
.close-submit a {
text-decoration: none !important;
padding: 10px 10px 10px;
color: white !important;
font-family: var(--font-second) !important;
border-radius: 30px;
margin-bottom: 10px;
/* From https://css.glass */
background: rgba(0, 0, 0, 0.51);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2.8px);
-webkit-backdrop-filter: blur(2.8px);
}
/* remove arrow from input */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type="number"] {
-moz-appearance: textfield;
}
.hide-everything {
display: none;
}
.input-label {
outline: none;
width: 75%;
font-size: 12px;
margin-bottom: 5px;
text-align: left;
padding: 0 !important;
border: none;
min-width: 17rem;
user-select: none;
background: linear-gradient(130deg, #000000, #000000 41.07%, #000000 76.05%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.correct {
outline: 1px solid #2ba640 !important;
}
.invalid {
outline: 1px solid #ca0303 !important;
}