-
Notifications
You must be signed in to change notification settings - Fork 0
/
donate.css
48 lines (43 loc) · 1.05 KB
/
donate.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
body{
background-image: url(donate.jpg);
background-repeat: no-repeat;
background-size: cover;
/* opacity: 0.5; */
}
.parent {
display: flex;
justify-content: space-evenly;
margin-top: 15rem;
}
.RegCamp {
width: 200px;
height: 200px;
background-color: rgb(245, 161, 26);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
border-radius: 5%;
transition: all 0.3s ease 0s;
}
.RegCamp:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}
.DonerLogin {
width: 200px;
height: 200px;
background-color: rgb(35, 209, 125);
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
border-radius: 5%;
transition: all 0.3s ease 0s;
}
.DonerLogin:hover {
transform: scale(1.1);
box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}