-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (86 loc) · 1.72 KB
/
styles.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
94
95
96
97
98
99
100
101
102
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
. {
margin: 0px;
padding: 0px;
}
body {
margin: 0;
padding: 0;
height: 100%;
}
.container {
background-color: black;
margin-top: 0;
overflow: auto;
height: 100%;
}
#heading {
background-color: black;
font-family: poppins;
color: white;
text-align: center;
margin-top: 5px;
padding-top: 0px;
font-size: 25px;
text-decoration: underline;
text-decoration-color: aqua ;
text-transform: uppercase;
}
#description {
font-family: sans-serif;
background-color: black;
color: white;
font-size: 15px;
text-align: center;
text-decoration: italic;
}
.formbox{
border-style: solid;
border-top: 2px;
border-color: blue;
border-radius: 40px;
border-width:2px;
margin-top:60px;
margin-left: 25%;
margin-right: 25%;
padding-bottom: 20px;
}
.formbox h2{
text-align:center;
font-family: poppins;
text-decoration: underline;
text-decoration-color: blue;
}
.formbox p{
/* border-width: 0px;
border-radius: 50px; */
padding-top: 8px;
/* border-top: 1px;
border-style: solid; */
text-align:center;
font-family: sans-serif;
font-size: 14px;
}
.formbox input{
margin-top: 10px;
margin-down: 10px;
padding-bottom: 5px;
width: 80%;
margin-left: 10%;
}
#button{
font-family: poppins;
font-weight: 500;
text-transform: uppercase;
border-radius: 30px;
color: rgb(255, 255, 255);
background-image: linear-gradient(to right, #603813 , #b29f94) ;
}
.footer{
/* margin-top: 4%; */
/* position: fixed; */
width: 100%;
text-align: center;
font-weight: bold;
margin-bottom: 2px;
}