-
Notifications
You must be signed in to change notification settings - Fork 1
/
donate.css
92 lines (88 loc) · 1.52 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
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
.donation-container {
height: 1000;
font-family: sans-serif;
font-weight: 500;
font-size: 12px;
text-transform: uppercase;
margin-top: 30px;
}
.donation-box {
width: 100%;
height: 300px;
background-color: #F5F5F5;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
position: relative;
margin-left: auto;
margin-right: auto;
}
.checkboxes {
position: absolute;
top: 245px;
left: 15px;
text-align: left;
}
.donation-box .title {
background-color: #C1D82F;
width: 100%;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
color: white;
text-align: center;
padding-top: 12px;
padding-bottom: 12px;
font-size: 15px;
}
.donation-box .donate-button {
background-color: #C1D82F;
width: 100%;
color: white;
text-align: center;
padding-top: 12px;
padding-bottom: 12px;
font-size: 18px;
bottom: 0px;
position: absolute;
cursor: pointer;
font-weight: 800;
}
body{
background-color: #6ebaf5;
}
h1{
text-align: center;
font-size: xx-large;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: white;
}
p{
font-size: large;
font-family: sans-serif;
}
nav{
height: 5%;
width: 100%;
border-bottom: 2px solid gray;
}
nav ul li{
list-style-type: none;
text-decoration: none;
display: inline-block;
padding: 5px;
color: black;
}
nav ul li a{
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
color: black;
}
#footer{
justify-content: space-between;
font-size: small;
font-weight: bold;
background-color: grey;
color: white;
height: 150px;
text-align: center;
}