-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (84 loc) · 1.78 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
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: url("./Image/wp7153325.jpg");
background-size: cover ;
background-position: center;
background-repeat: no-repeat;
color: white;
font-family: 'Poppins', sans-serif;
}
.Heading {
margin-top: 2%;
background-color: rgba(0, 0, 0, 0.7);
width: 50%;
padding: 3% 0% 3% 0%;
text-align: center;
font-size: 28px;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
}
.Form-Details {
padding-top: 1.5%;
width: 50%;
background-color: rgba(0, 0, 0, 0.5);
margin-bottom: 2%;
padding-bottom: 1.5%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.Form-Details label input {
height: 20px;
font-size: 15px;
border: none;
}
.Input {
outline: none;
width: 100%;
margin-bottom: 2%;
margin-top: 1.5%;
background-color: rgba(255, 255, 255, 0.2);
color: white;
padding: 1% 2% 1% 2%;
font-size: 18px;
}
.button {
width: 100%;
text-align: center;
padding-top: 2%;
padding-bottom: 2%;
font-size: 18px;
font-weight: 800;
border: 2px solid white;
}
.button:hover {
cursor: pointer;
background-color: rgba(255, 255, 255, 0.7);
transition: 0.4s;
border-color: black;
}
.Form-Details label {
display: block;
margin-bottom: 1%;
}
.Form-Details label input[type="radio"],
.Form-Details label input[type="checkbox"] {
display: inline;
margin: 0 2%;
}
.Form-Details select {
width: 100%;
height: 35px;
padding: 1% 2% 1% 2%;
font-size: 18px;
background-color: rgba(255, 255, 255, 0.2);
color: white;
border: none;
outline: none;
}