-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.css
94 lines (82 loc) · 1.52 KB
/
sign-up.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
import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
body{
background-color: antiquewhite;
}
nav{
font-family: 'Ubuntu', sans-serif;
}
nav ul{
display: flex;
align-items: center;
list-style-type: none;
height: 65px;
background-color: black;
color: white;
}
nav ul li{
padding: 0 12px;
}
nav ul li:hover{
color:rgb(251, 226, 195);
cursor: pointer;
}
.brand img{
width: 44px;
padding: 0 8px;
}
.brand {
display: flex;
align-items: center;
font-weight: bolder;
font-size: 1.3rem;
}
.prev{
position: absolute;
top:8rem;
left:28.125rem;
}
.outer{
height:33rem;
width:25rem;
color:white;
background-color: black;
/* display: flex;
justify-content: center;
align-items: center; */
}
.head{
display: flex;
justify-content: center;
font-size: large;
}
.head a{
position: absolute;
right:20px;
color: rgb(160, 158, 158);
}
.info{
display: grid;
justify-content: center;
align-items: center;
}
input{
background-color: rgb(160, 158, 158);
width:15.625rem;
height:25px;
}
button{
background-color: aquamarine;
height:30px;
}
.footer{
display: grid;
justify-content: center;
align-items: center;
padding:5px;
margin:5px;
}
a{
text-decoration: none;
margin: 5px;
}