forked from aman1722/Industry-Buying-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.css
93 lines (86 loc) · 1.99 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
#logo{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100px;
background-color: black;
overflow: hidden;
}
#logo img{
height: 200%;
}
#container{
margin: auto;
margin-top: 0px;
width: 53%;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
background-color: white;
padding-bottom: 30px;
}
#flex{
width: 100%;
height: 90px;
display: flex;
justify-content: space-evenly;
align-items: center;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#flex a{
text-decoration: none;
color: gray;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 38px;
}
#social{
width: 100%;
height: 110px;
}
#social>img{
height: 100%;
display: block;
margin: auto;
}
form{
margin: auto;
margin-top: 30px;
width: 60%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
margin-bottom: 40px;
}
h2{
font-size: 30px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
margin-bottom: 0px;
}
p{
font-size: 15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
margin-left: 80px;
margin-right: 80px;
margin-bottom: 10px;
color: gray;
}
label{
font-size: 20px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: rgb(63, 63, 63);
}
input{
height: 45px;
font-size: 22px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#button{
height: 43px;
font-weight: bolder;
font-size: 21px;
background-color: rgb(255, 145, 19);
color: white;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
border: none;
}