-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.css
105 lines (88 loc) · 1.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
*{
margin: 0;
padding: 0;
}
#navbar{
display: flex;
justify-content: space-between;
width: 100%;
margin: auto;
background-color: rgb(76, 76, 90);
color: white;
height: 60px;
align-items: center;
}
#navbar>div{
display: flex;
}
#navbar>div>a{
text-decoration: none;
color: white;
margin: 15px;
font-size: 15px;
}
#navbar>div>img{
width: 30px;
height: 30px;
/* align-items: center; */
margin-top: 13px;
}
#learnmore{
text-decoration: none;
color: white;
margin: 20px;
font-size: 20px;
}
#signup{
display: grid;
width: 20%;
margin: auto;
text-align: center;
margin-top: 50px;
}
#signup>input{
margin-bottom: 10px;
height: 30px;
}
#signup>h2{
margin-bottom: 10px;
}
button{
height: 30px;
width: 100%;
background-color: blueviolet;
border: none;
}
#footer{
display: flex;
justify-content: space-between;
border-top: 1px solid gray;
/* justify-content: end; */
/* margin-top: 500px; */
position: fixed;
bottom: 0;
width: 100%;
align-self: flex-end;
align-content: flex-end;
}
#footer>div{
display: flex;
justify-content: space-between;
}
#footer>div{
margin: 5px;
}
#footer>div>img{
width: 30xp;
height: 30px;
margin-top: 10px;
}
#footer>div>a{
margin: 15px;
text-decoration: none;
color: rgb(55, 115, 139);
}
#footer>div>p{
margin: 15px;
color: gray;
}