-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
84 lines (83 loc) · 1.83 KB
/
signup.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
*{
box-sizing: border-box;
padding: 0%;
margin: 0%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border: border-box;
}
.hero{
height: 640px;
width:100%;
background-color: #0A5247;
}
.nav{
height: 45px;
display: flex;
justify-content:start;
padding-top: 15px;
margin-left: 20px;
}
.navbar{
width: 120px;
margin-right: 20px;
border:2px solid #0A5247;
border-radius: 15px;
background-color: #FFF9F9;
font-size: 15px;
}
.navbar:active{
background-color:#0A5247 ;
color: #FFF9F9;
}
.navbar:hover{
background-color: #0A5247;
color: #FFF9F9;
}
.foot{
height: 32px;
background-color: #A3C468;
margin-top: 8.5%;
}
.fillup{
height: 400px;
width:25%;
background-color: #F5F5F5;
border-radius: 20px;
padding-left: 5%;
text-align: left;
padding-top: 16px;
}
h1{
text-align: center;
padding-right: 24%;
margin-bottom: 15px;
color: #0A5247;
}
h4{
color: #0A5247;
font-weight: 10px;
margin:2px;
}
.entry{
background-color: #FFFFFF;
border-radius: 10px;
border:1.5px solid #0A5247;
margin-bottom: 3.5px;
}
.box{
display: flex;
justify-content: center;
text-align: center;
padding-top: 5%;
}
.submit{
height: 35px;
width: 100px;
margin-top: 15px;
margin-left: 19%;
background-color: #0A5247;
color: #F5F5F5;
border-radius: 15px;
font-size: medium;
font-weight: 30px;
}