-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
134 lines (119 loc) · 2.35 KB
/
popup.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
max-width: 500px;
}
body {
min-width: 370px;
min-height: 400px;
/* From https://css.glass */
background: var(--black);
backdrop-filter: blur(7.6px);
/* -webkit-backdrop-filter: blur(7.6px); */
}
:root {
--white: white;
--heading-font: "Poppins", sans-serif;
--black: #2d2723;
--dark-black: black;
--pink: #e42661;
--salety: #8a8f8f;
--brown: #a97a58;
}
/* utilities */
a {
text-decoration: none !important;
}
.flex {
display: flex;
}
.hidden {
display: none;
}
/* main start here */
.extension {
/* From https://css.glass */
color: var(--white);
font-family: var(--heading-font);
padding: 20px 0 0px;
}
.title {
}
.title h2 {
font-size: 1.5rem;
padding-left: 20px;
margin-bottom: 20px;
}
.info {
justify-content: flex-start;
margin-bottom: 3px;
padding: 5px 3px 5px;
background-image: url(./Rectangle1.svg);
object-fit: contain;
}
.info:hover {
cursor: pointer;
opacity: 100%;
/* box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset; */
}
.info img {
min-width: 55px;
max-width: 55px;
max-height: 49px;
min-height: 49px;
/* border-radius:75% ; */
margin-right: 20px;
object-fit:scale-down;
}
.title-desc {
color: var(--black);
}
.title-desc h2 {
color: var(--white);
opacity: 90%;
}
.title-desc h3 {
color: var(--salety);
}
.buttons {
text-decoration: none;
margin: 3px 5px 3px;
}
/* Delete btn code start here */
/* buy now button animation start here */
.buy-now {
margin: 10px;
padding: 8px 12px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
border-radius: 10px;
display: block;
border: 0px;
font-weight: 500;
box-shadow: 0px 0px 14px -7px #f09819;
background-image: linear-gradient(
45deg,
#ff512f 0%,
#f09819 51%,
#ff512f 100%
);
cursor: pointer;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.buy-now:hover {
background-position: right center;
/* change the direction of the change here */
color: #fff;
text-decoration: none;
}
.buy-now:active {
transform: scale(0.95);
}
/* ///////////////////////// */