-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonation.css
70 lines (61 loc) · 1.31 KB
/
donation.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
.donation-page {
height: 100vh;
width: 100%;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80");
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
}
form {
opacity: 0;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
opacity: 0;
width: 100%;
color: rgba(252, 162, 17, 0.75);
text-align: center;
}
.discription {
opacity: 0;
display: flex;
justify-content: center;
align-items: center;
}
h3 {
text-align: center;
color: white;
}
.form {
opacity: 1;
height: 80vh;
width: 50%;
background-color: rgba(0, 0, 0, 0.5);
box-shadow: 0 2rem 5rem 0 rgba(252, 162, 17, 0.1);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
z-index: 10;
}
.form>* {
width: 80%;
}
input {
height: 2rem;
color: white;
background-color: rgba(0, 0, 0, 0.3);
}
span {
color: rgba(252, 162, 17);
}
@media only screen and (max-width: 600px) {
.form {
width: 80%;
}
}