forked from akshitagupta15june/PetMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (105 loc) · 2.33 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
@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;
}
/*-------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;
}
}
.contributors {
margin-top: 20px;
margin-bottom: 20px;
}
.contributors-container {
padding-top: 20px;
}
/*-----end of sos button----*/
.bg-