-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdonorreg.css
More file actions
102 lines (102 loc) · 1.52 KB
/
Copy pathdonorreg.css
File metadata and controls
102 lines (102 loc) · 1.52 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.body{
text-align: center;
color: #000;
}
.navbar{
display: flex;
align-items: center;
padding: 20px;
}
nav{
flex: 1;
text-align: right;
}
nav ul{
display: inline-block;
list-style-type: none;
}
nav ul li{
display: inline-block;
margin-right: 20px;
}
a{
text-decoration: none;
color: #fff;
}
p{
color: #A52A2A;
}
.container{
max-width: 1300px;
margin: auto;
padding-left: 25px;
padding-right: 25px;
}
.formsection{
display: inline-block;
margin-left: auto;
margin-right: auto;
text-align: left;
align-items: center;
padding-left: 550px;
padding-right: 550px;
}
.navback1{
text-decoration: none;
display: inline-block;
background: #ff0000;
color: #fff;
padding: 10px 10px;
margin: 30px 0;
border-radius: 30px;
transition: 0.5s;
}
.navback1:hover{
background: #00008B;
color: #fff;
}
.btn1{
display: inline-block;
background: #fff;
color: #ff0000;
padding: 8px 2px;
margin: 20px 10px;
border-radius: 30px;
transition: 0.5s;
flex-basis: 50%;
min-width: 5px;
}
.btn1:hover{
background: #00008B;
color: #fff;
}
.btn2{
display: inline-block;
background: #fff;
color: #ff0000;
padding: 8px 2px;
margin: 20px 10px;
border-radius: 30px;
transition: 0.5s;
flex-basis: 50%;
min-width: 5px;
}
.btn2:hover{
background: #00008B;
color: #fff;
}
.select {
width: 100%;
padding: 16px 20px;
border: none;
border-radius: 4px;
background-color: #f1f1f1;
}
.label{
color: #fff;
}