-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles (1).css
144 lines (113 loc) · 2.24 KB
/
styles (1).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
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Jost', sans-serif;
outline: none;
color: #5c4b51;
}
body{
background: linear-gradient(to right, #33ccff 0%, #9900cc 100%);
}
.wrapper{
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.form{
width: 425px;
height: auto;
background: #fff;
padding: 35px 50px;
border-radius: 2px;
}
.form .title{
text-align: center;
margin-bottom: 20px;
font-weight: 700;
font-size: 24px;
}
.form .input_wrap{
margin-bottom: 20px;
width: 325px;
position: relative;
}
.form .input_wrap:last-child{
margin-bottom: 0;
}
.form .input_wrap label{
display: block;
margin-bottom: 5px;
}
.form .input_wrap input{
padding: 15px;
width: 100%;
border: 1px solid transparent;
font-size: 16px;
border-radius: 3px;
}
.form .input_wrap .input{
background: #f5f4f4;
padding-right: 35px;
}
.form .input_wrap .input:focus{
border-color: #1dbf73;
}
.form .input_wrap .input_field{
position: relative;
}
.form .input_wrap .btn{
text-transform: uppercase;
letter-spacing: 3px;
color: #fff;
}
.form .input_wrap .btn.disabled{
background: #727272;
}
.form .input_wrap .btn.enabled{
background: #1dbf73;
cursor: pointer;
}
.form .input_wrap .error_msg{
font-size: 15px;
margin-bottom: 5px;
color: #f74040;
display: none;
}
.map-responsive{
overflow:hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}
.map-responsive iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}
/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
margin-left: 200px;
padding: 1px 16px;
height: 1000px;
}
/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
.sidebar {
width: 100%;
height: auto;
position: relative;
}
.sidebar a {float: left;}
div.content {margin-left: 0;}
}
/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
.sidebar a {
text-align: center;
float: none;
}