-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
185 lines (179 loc) · 3.38 KB
/
style.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #a7b2cd;
}
body, input,textarea, a{
font-family: 'Roboto', sans-serif;
}
#section-wrapper{
width: 100%;
padding: 10px;
}
.box-wrapper{
position: relative;
display: table;
width:1100px;
margin:auto;
margin-top:35px;
border-radius: 30px;
}
.info-wrap{
width:35%;
height: 600px;
padding: 20px;
float: left;
display: block;
border-radius: 30px 0px 0px 30px;
background: linear-gradient(144deg, rgb(60, 179, 88) 0%, rgb(62, 49, 204) 90%);
color: #fff;
/* display: none; */
}
.info-title{
text-align: left;
font-size: 28px;
letter-spacing: 0.5px;
}
.info-sub-title{
font-size: 18px;
font-weight: 300;
margin-top: 17px;
letter-spacing: 0.5px;
line-height: 26px;
}
.info-details {
list-style: none;
margin: 60px 0px;
}
.info-details li {
margin-top: 25px;
font-size: 18px;
color: #fff;
}
.info-details li i {
background: #F44770;
padding: 12px;
border-radius: 50%;
margin-right: 5px;
}
.info-details li a {
color: #fff;
text-decoration: none;
}
.info-details li a:hover {
color: #F44770;
}
.social-icons {
list-style: none;
text-align: center;
margin: 20px 0px;
}
.social-icons li {
display: inline-block;
}
.social-icons li i {
background: #F44770;
color: #fff;
padding: 15px;
font-size: 20px;
border-radius: 22%;
margin: 0px 5px;
cursor: pointer;
transition: all .5s;
}
.social-icons li i:hover {
background: #fff;
color: #000000;
}
.form-wrap{
width:65%;
float: right;
padding:40px 25px 35px 25px;
border-radius: 0px 30px 30px 0px;
background: #ecf0f3;
}
.form-title{
text-align: left;
margin-left: 23px;
font-size: 28px;
letter-spacing: 0.5px;
}
.form-fields{
display: table;
width: 100%;
padding: 15px 5px 5px 5px;
}
.form-fields input{
border: none;
outline:none;
background: none;
/* border-radius: 25px; */
font-size: 18px;
/* color:#cbced1; */
padding: 10px 5px 10px 5px;
width:100%;
box-shadow: inset 8px 8px 8px #cbced1, inset 8px 8px 8px #ffffff;
}
.form-group{
width: 45%;
float: left;
padding: 0px 30px;
margin: 14px 12px;
border-radius: 25px;
box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
}
.form-fields .form-group:last-child {
width: 96%;
}
.submit-button{
width: 96%;
height: 60px;
margin: 0px 12px;
border-radius: 30px;
font-size: 20px;;
font-weight: 700;
outline: none;
border:none;
cursor: pointer;
color:#fff;
text-align: center;
background: #70f470;
box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
transition: .5s;
}
.submit-button:hover{
background: #31279d;
}
/* Responsive css */
@media only screen and (max-width: 767px) {
.box-wrapper{
width: 100%;
}
.info-wrap,
.form-wrap{
width: 100%;
height: inherit;
float: none;
}
.info-wrap{
border-radius: 30px 30px 0px 0px;
}
.form-wrap{
border-radius: 0px 0px 30px 30px;
}
.form-group{
width: 100%;
float: none;
margin: 25px 0px;
}
.form-fields .form-group:last-child,
.submit-button{
width: 100%;
}
.submit-button{
margin: 10px 0px;
}
}