-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
144 lines (135 loc) · 3.09 KB
/
Copy pathstyles.css
File metadata and controls
144 lines (135 loc) · 3.09 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
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
h1 {
margin: 10px 10px;
color: rgb(202, 52, 51);
font-family: 'Teko', sans-serif;
text-align: center;
font-size: 40px;
}
h2 {
font-family: 'Open Sans Condensed', sans-serif;
font-size : 20px;
color: rgb(128,0,0);
}
body {
margin: 20px;
font-size: 15px;
color: ;
}
/* #map1{
height: 500px;
width: 100%;
position: relative;
overflow: hidden;
} */
#map {
overflow:hidden;
padding-bottom:56.25%;
position:relative;
height:0;
margin: 10px 20px 20px 20px;
}
#form {
color :rgb(202, 52, 51);
font: 95% Arial, Helvetica, sans-serif;
max-width: 600px;
margin: 10px auto;
padding: 16px;
background: #F7F7F7;
}
.form-style input[type="text"],
.form-style input[type="date"],
.form-style input[type="datetime"],
.form-style input[type="email"],
.form-style input[type="number"],
.form-style input[type="search"],
.form-style input[type="time"],
.form-style input[type="url"],
.form-style textarea,
.form-style select
{
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
width: 100%;
background: #fff;
margin-bottom: 4%;
border: 1px solid #ccc;
padding: 3%;
color: #555;
font: 95% Arial, Helvetica, sans-serif;
}
.form-style input[type="text"]:focus,
.form-style input[type="date"]:focus,
.form-style input[type="datetime"]:focus,
.form-style input[type="email"]:focus,
.form-style input[type="number"]:focus,
.form-style input[type="search"]:focus,
.form-style input[type="time"]:focus,
.form-style input[type="url"]:focus,
.form-style textarea:focus,
.form-style select:focus
{
box-shadow: 0 0 5px rgb(128,0,0);
padding: 3%;
border: 1px solid rgb(128,0,0);
}
.form-style input[type="submit"],
.form-style input[type="button"]{
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
width: 100%;
padding: 4%;
background: rgb(128,0,0);
border-bottom: 2px solid rgb(202, 52, 51);
border-top-style: none;
border-right-style: none;
border-left-style: none;
color: #fff;
}
.form-style input[type="submit"]:hover,
.form-style input[type="button"]:hover{
background: rgb(202, 52, 51);
}
.form-style input[type="reset"],
.form-style input[type="button"]{
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
width: 100%;
padding: 2%;
background: rgb(173, 63, 62);
border-bottom: 2px solid rgb(202, 52, 51);
border-top-style: none;
border-right-style: none;
border-left-style: none;
color: #fff;
}
.form-style input[type="reset"]:hover,
.form-style input[type="button"]:hover{
background: rgb(173, 63, 62);
}
.select-style {
border: 1px solid #ccc;
width: 120px;
border-radius: 3px;
overflow: hidden;
background: #fafafa url("img/icon-select.png") no-repeat 90% 50%;
}
.select-style select {
padding: 2px 8px;
width: 130%;
border: none;
box-shadow: none;
background: transparent;
background-image: none;
-webkit-appearance: none;
}
.select-style select:focus {
outline: none;
}