-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomecss.css
More file actions
117 lines (107 loc) · 1.79 KB
/
Homecss.css
File metadata and controls
117 lines (107 loc) · 1.79 KB
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
*{
margin: 0;
padding: 0;
outline: none;
font-family:'Poppins',sans-serif;
}
body
{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: url("logo.jpg");
/* background-position: center; */
background-repeat: no-repeat;
background-size: 100% 100%;
}
.container
{
width:330px;
background:#fff;
border-radius: 5px;
text-align: center;
padding: 50px 35px 10px 35px;
}
.container header
{
font-size: 35px;
font-weight: 600;
margin:0 0 30px 0;
}
.container .form-outer
{
width: 100%;
}
.form-outer form
{
width:400%;
}
.form-outer form .page
{
width: 25%;
}
.form-outer form .page .title{
text-align: left;
font-size: 25;
font-weight: 500;
}
.form-outer form .page .field{
height:45px;
width:330px;
margin:45px 0;
display:flex;
position: relative;
}
.form-outer form .page .field .label{
position: relative;
top:-30px;
font-weight: 500;
}
.form-outer form .page .field input{
height: 100%;
width: 100%;
border:1px solid lightgrey;
border-radius:5px;
font-size:18px;
padding-left:15px;
}
form .page .field select{
width: 100%;
padding-left: 10px;
font-size: 17px;
font-weight: 500;
border-radius:5px;
border:1px solid lightgrey;
}
.form-outer form .page .field button{
width: 100%;
height: calc(100% + 5px);
margin-top:-20px;
background-color: #f15757;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
letter-spacing: 1px;
text-transform: uppercase;
transition: 0.3s ease;
}
.form-outer form .page .field button:hover{
opacity: 1;
}
.form-outer form .page .btns button{
margin-top:-20px!important;
}
form .page .btns button .prev
{
margin-right:3px;
font-size:17px;
}
form .page .btns button .apply
{
margin-left:3px;
font-size:17px;
}