-
Notifications
You must be signed in to change notification settings - Fork 2
/
sign-up.css
141 lines (141 loc) · 3.3 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*sign up page started here */
*, *:before, *:after{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Nunito', sans-serif;
}
body{
width: 100%;
height: 100vh;
display:flex;
justify-content:center;
align-items: center;
background-image: url(./images/bg/homepage.jpg);
background-size: cover;
background-repeat: no-repeat;
font-family: 'Nunito', sans-serif;
}
input, button{
border:none;
outline: none;
background: none;
}
h6{
width: 100%;
font-size: 10px;
text-align: center;
}
.cont{
overflow: hidden;
position: relative;
width: 900px;
height: 600px;
background: #fff;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30);
padding-right: 200px;
margin-left: 300px;
}
label{
display: block;
width: 260px;
margin: 25px auto 0;
text-align: center;
}
label span{
font-size: 14px;
font-weight: 600;
color: #505f75;
text-transform: uppercase;
}
input{
display: block;
width: 100%;
margin-top: 5px;
font-size: 16px;
padding-bottom: 5px;
border-bottom: 1px solid rgba(109, 93, 93, 0.4);
text-align: center;
font-family: 'Nunito', sans-serif;
}
button{
display: block;
margin: 0 auto;
width: 260px;
height: 36px;
border-radius: 30px;
color: #fff;
font-size: 15px;
cursor: pointer;
}
.submit{
margin-top: 40px;
margin-bottom: 30px;
text-transform: uppercase;
font-weight: 600;
font-family: 'Nunito', sans-serif;
background: black;
}
.submit:hover{
background: -webkit-linear-gradient(left, #b224ef, #7579ff);
}
/* sign up page started*/
.sub-cont{
overflow: hidden;
position: absolute;
left: 640px;
top: 0;
width: 900px;
height: 100%;
padding-left: 260px;
background: #fff;
transition: transform 1.2s ease-in-out;
}
.img{
overflow: hidden;
z-index: 2;
position: absolute;
left: 0;
top: 0;
width: 300px;
height: 100%;
padding-top: 360px;
}
.img:before{
content: '';
position: absolute;
right: 0;
top: 0;
width: 900px;
height: 100%;
background-image: url(images/bg/winter.jpg);
transition: -webkit-transform 1.2s ease-in-out;
}
.img:after{
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.3);
}
.img-text h6{
margin-bottom: 30px;
font-weight: normal;
}
.img-text{
z-index: 2;
position: absolute;
left: 0;
top: 50px;
width: 100%;
padding: 0 20px;
text-align: center;
color: #fff;
transition: -webkit-transform 1.2s ease-in-out;
}
.already{
margin-left: 250px;
}
/*sign up page ends here */