-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
208 lines (181 loc) · 4.11 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
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
* {
padding: 0px 0px;
margin: 0px 0px;
box-sizing: border-box;
background-color: black;
color: wheat;
}
/* css for heading and get btn */
#main_box {
display: flex;
flex-direction: column;
flex-wrap: nowwrap;
}
.child {
display: flex;
align-items: center;
flex-direction: row;
font-size: xx-large;
font-weight: bolder;
padding-top: 15px;
margin: auto;
flex-wrap: nowrap;
}
#maindiv {
display: none;
}
.image_rotate {
animation: rotation 1s;
}
@keyframes rotation {
from {
transform: rotateX(0deg);
}
to {
transform: rotateX(90deg);
}
}
#title {
margin-left: 15px;
}
/* get meme btn */
.shadow__btn {
display: block;
margin: auto;
margin-bottom: 50px;
margin-top: 50px;
padding: 10px 20px;
border: none;
font-size: 17px;
color: #fff;
border-radius: 7px;
letter-spacing: 4px;
font-weight: 700;
text-transform: uppercase;
-webkit-transition: 0.5s;
transition: 0.5s;
-webkit-transition-property: -webkit-box-shadow;
transition-property: -webkit-box-shadow;
transition-property: box-shadow;
transition-property: box-shadow, -webkit-box-shadow;
}
.shadow__btn {
background: rgb(0, 140, 255);
-webkit-box-shadow: 0 0 25px rgb(0, 140, 255);
box-shadow: 0 0 25px rgb(0, 140, 255);
}
.shadow__btn:hover {
-webkit-box-shadow: 0 0 5px rgb(0, 140, 255),
0 0 25px rgb(0, 140, 255),
0 0 50px rgb(0, 140, 255),
0 0 100px rgb(0, 140, 255);
box-shadow: 0 0 5px rgb(0, 140, 255),
0 0 25px rgb(0, 140, 255),
0 0 50px rgb(0, 140, 255),
0 0 100px rgb(0, 140, 255);
}
/* loder img */
#coder_img,#loader_img{
margin: auto;
min-width: 300px;
padding: 0px 15px;
}
#loader_img{
display: none;
}
/* css for image container and card */
#card_container {
display: flex;
flex-wrap: wrap;
max-width: 90%;
margin: auto;
justify-content: space-around;
}
/* card */
.card {
margin: 15px 10px;
min-width: 300px;
width: 30%;
border-radius: 20px;
padding: 5px;
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
}
.card__content {
border-radius: 17px;
width: 100%;
height: 100%;
overflow: hidden;
}
.card_img {
/* width: 90%; */
width: 95%;
height: 350px;
margin: auto;
padding-top: 15px;
}
.card_img img {
width: 100%;
height: 100%;
border-radius: 10px;
}
.card__content_text {
display: block;
margin: 15px 15px;
color: #5dc6ff;
font-size: 1.2rem;
/* height: 50px; */
}
.btn_holder {
display: flex;
justify-content: space-around;
padding-bottom: 20px;
}
/* card button */
.cssbuttons-io-button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-family: inherit;
font-weight: 500;
font-size: 17px;
padding: 0.6em 1.5em 0.6em 1.2em;
color: white;
background: #ad5389;
background: -webkit-gradient(linear, left bottom, left top, from(rgba(77, 54, 208, 1)), to(rgba(132, 116, 254, 1)));
background: linear-gradient(0deg, rgba(77, 54, 208, 1) 0%, rgba(132, 116, 254, 1) 100%);
border: none;
-webkit-box-shadow: 0 0.7em 1.5em -0.5em #4d36d0be;
box-shadow: 0 0.7em 1.5em -0.5em #4d36d0be;
letter-spacing: 0.05em;
border-radius: 20em;
}
.cssbuttons-io-button svg {
margin-right: 8px;
background: none;
}
.cssbuttons-io-button span {
background: none;
}
.cssbuttons-io-button:hover {
-webkit-box-shadow: 0 0.5em 1.5em -0.5em #4d36d0be;
box-shadow: 0 0.5em 1.5em -0.5em #4d36d0be;
cursor: pointer;
}
.cssbuttons-io-button:active {
-webkit-box-shadow: 0 0.3em 1em -0.5em #4d36d0be;
box-shadow: 0 0.3em 1em -0.5em #4d36d0be;
}
@media only screen and (max-width:742px) {
.child {
flex-direction: column;
font-size: x-large;
font-weight: bolder;
padding: 3px 0px;
margin: auto;
flex-wrap: nowrap;
}
}