-
Notifications
You must be signed in to change notification settings - Fork 205
/
avatars.css
263 lines (244 loc) · 4.95 KB
/
avatars.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
.main{
padding: 34px;
}
.heading{
margin-top: 8px;
text-align: center;
font-size: 36px;
font-weight: 900;
background: linear-gradient(to right, #30cfd0 20%, #330867 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.container{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 13px;
}
.row{
/* max-width: 30vw; */
/* max-height: 80vh; */
border: 2px solid var(--secondary-color);
border-radius: 10px;
padding: 13px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.row img{
max-width:25vw;
max-height: 40vh;
border: 10px solid rgb(29, 90, 156);
border-radius: 7px;
}
.row h1{
color: var(--ternary-color);
}
.row p{
color: var(--secondary-color);
}
.row button{
color: white;
/* border-image: linear-gradient(to right,#3acfd5 0%,#3a4ed5 100% )1;
border-radius: 15px;
border-width: 4px;
border-style: solid; */
border: 3px solid aqua;
border-radius: 15px;
background-color: rgb(7, 8, 74);
padding: 10px;
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
}
.row button:hover{
background-image: linear-gradient(144deg,
#af40ff,
#5b42f3 50%,
#00ddeb);
border: 2px solid rgb(7, 8, 74);
cursor: pointer;
}
.row2 img{
margin-top: 34px;
}
.row2 h1{
margin-top: 43px;
}
/* tablet Responsive Styles */
@media (max-width: 1100px) {
.header {
position: unset;
}
.navigation {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.navigation .navbar {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-top: 20px;
margin-right: 0 !important;
}
.navbar .navbar-up {
gap: 20px;
display: flex;
}
.navigation .navbar a {
margin: 10px 0;
font-size: 12px;
}
.navigation .homeDiv #homeBtn {
min-width: 30px;
}
.navigation .homeDiv #homeBtn a {
font-size: 14px;
}
.footer-content {
flex-direction: column;
align-items: center;
margin: 0px 40px 0px 0px;
}
.footer-section p {
font-size: 14px;
}
.social-icons a i {
font-size: 22px;
margin: 5px;
}
.footer-section {
margin-bottom: 0;
}
.creatorDiv {
margin-top: 20px;
margin-right: 30px;
}
.creatorDiv p {
font-size: 12px;
}
.searchForm {
display: flex;
margin: 20px 0px -10px 35px;
}
.searchInput {
width: 180px;
height: 30px;
padding: 5px 12px;
border-radius: 50px;
border: 0;
font-size: 12px;
margin-bottom: 20px;
}
.searchForm button {
top: 0px;
right: 45px;
margin-bottom: 20px;
}
.searchForm button i {
padding: 9px 15px;
font-size: 15px;
}
}
/* Mobile Responsive Styles */
@media (max-width: 668px) {
.header {
position: unset;
margin-right: 0;
}
.navigation {
display: flex;
flex-direction: column;
align-items: center;
}
.navigation .navbar {
display: flex;
flex-direction: column;
margin-top: 20px;
}
.navigation .navbar a {
margin: 0;
font-size: 12px;
}
.navbar .navbar-up {
display: flex;
flex-direction: column;
}
.navigation .homeDiv #homeBtn {
min-width: 80px;
}
.navigation .homeDiv #homeBtn a {
font-size: 14px;
}
.footer-content {
flex-direction: column;
align-items: center;
margin: 0px 0px 0px 0px;
}
.footer-section p {
font-size: 14px;
}
.social-icons a i {
font-size: 22px;
margin: 5px;
}
.footer-section {
margin-bottom: 0;
}
.creatorDiv {
margin-top: 20px;
margin-right: 30px;
}
.creatorDiv p {
font-size: 12px;
}
.searchForm {
display: flex;
margin: 20px 0px -10px 35px;
}
.searchInput {
width: 280px;
height: 30px;
padding: 5px 12px;
border-radius: 50px;
border: 0;
font-size: 12px;
}
.searchForm button {
top: 0px;
right: 45px;
}
.searchForm button i {
padding: 9px 15px;
font-size: 15px;
}
}
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
align-items: center;
padding: 0 20px;
}
.footer-section {
text-align: center;
margin: 15px 0;
}
.container{
grid-template-columns: 1fr;
}
}
#icon{
width: 30px;
cursor: pointer;
}
:root{
--bg-color: url(https://www.hitaambrish.com/stat/img/home/quotes-bg.jpg);
--secondary-color: #0e0e0e;
--ternary-color: #095555;
}
.dark-theme{
--bg-color: url(https://www.hitaambrish.com/stat/img/home/Gallery_Bg.jpg);
--secondary-color: #fff;
--ternary-color: #ab9353;
}