forked from akshitagupta15june/PetMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
228 lines (197 loc) · 4.08 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.card {
background-color: theme("colors.white");
border-radius: theme("borderRadius.lg");
padding: theme("spacing.6");
box-shadow: theme("boxShadow.xl");
}
.contributors-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #131c2b;
padding-bottom: 2.75rem;
border-bottom: 1px solid gray;
}
.contributors-container h1 {
color: whitesmoke;
text-align: center;
font-size: 2rem;
font-weight: 600;
margin: 2.5rem 0;
}
.contributors {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
margin: 0 8%;
}
.avatar {
border-radius: 50%;
width: 4rem;
}
.contribute-btn {
display: flex;
align-items: center;
color: whitesmoke;
padding: 5px 10px;
border-radius: 20px;
font-size: 1.25rem;
font-weight: 700;
margin-top: 3rem;
letter-spacing: 1.5px;
background-color: #003479;
}
.contribute-btn img {
width: 2.2rem;
color: black;
margin-right: 5px;
}
/* back to top button */
#bttbutton {
position: fixed;
bottom: 20px;
left: 40px;
z-index: 9999;
border: none;
outline: none;
width: 55px;
transition: all 0.5s ease;
}
/* Add this CSS code to hide the meet cards initially */
.main-card {
opacity: 0;
transform: translateY(50px);
transition: opacity 1s ease, transform 1s ease;
}
.hover-effect img {
transition: opacity 0.3s ease;
}
.hover-effect img:hover {
opacity: 0.75;
}
/*-------sos button ---------*/
#mySBtn {
position: fixed;
/* Fixed/sticky position */
bottom: 20px;
/* Place the button at the bottom of the page */
right: 30px;
/* Place the button 30px from the right */
z-index: 99;
/* Make sure it does not overlap */
border: none;
/* Remove borders */
outline: none;
/* Remove outline */
background-color: red !important;
/* Set a background color */
color: white !important;
/* Text color */
cursor: pointer;
/* Add a mouse pointer on hover */
padding: 25px !important;
/* Some padding */
border-radius: 50%;
/* Rounded corners */
font-size: 18px;
/* Increase font size */
}
#mySBtn:hover {
background-color: #fff !important;
/* Add a dark-grey background on hover */
color: red !important;
font-weight: 700 !important;
}
/*-----end of sos button----*/
.contact-form-container {
max-width: 700px;
width: 100%;
margin: auto;
}
}
/* Add this CSS code to hide the About content initially */
#about .fade-in {
opacity: 0;
transform: translateY(50px);
transition: opacity 1s ease, transform 1s ease;
}
.contributors {
margin-top: 20px;
margin-bottom: 20px;
}
.contributors-container {
padding-top: 20px;
}
.hover-button {
/* Button styles */
margin-top: 1rem;
display: inline-block;
padding: .8rem 3rem;
font-size: 1.7rem;
border-radius: .5rem;
border: .2rem solid rgb(99, 99, 99);
color: #fff;
cursor: pointer;
background: #ffc82c;
transition: background-color 0.3s ease, color 0.3s ease;
}
.hover-button:hover {
/* Hover styles */
background: #ffbb00;
color: #fff;
}
@keyframes fade-in-right {
0% {
opacity: 0;
transform: translateX(20px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.anima-fade-in-right {
animation: fade-in-right 0.5s ease-in-out;
}
@keyframes scroll-fade-in {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes scroll {
from {
transform: translateY(0px);
}
to {
transform: translateY(-100px);
}
}
.scroll-fade-in {
animation: scroll-fade-in 0.5s ease-in-out both;
}
.scroll {
animation: scroll 0.5s ease-in-out both;
}
/*-----end of sos button----*/
/* copy right */
#copyright{
text-align: center;
padding: 2px 2px 2px 2px;
background-color: black;
color: white;
}
#facebook {
}