forked from bozdoz/wp-plugin-leaflet-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (99 loc) · 1.52 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
form {
margin-top: 4em;
}
.container {
margin-bottom: 2em;
max-width: 800px;
font-size: 18px;
}
.container:first-child {
margin-bottom: 1em;
}
.label {
float: left;
margin-right: 2em;
padding: 1em 0;
vertical-align: center;
}
.helptext {
clear: both;
}
.helptext p {
line-height: 2;
}
code {
margin: 1em 0;
padding: 1em 2em;
display: block;
}
.input-group {
float: right;
width: 50%;
}
.input-group input {
padding: 1em;
}
.input-group input[type='number'],
.input-group input[type='text'],
.input-group textarea,
.input-group select {
width: 100%;
}
.input-group input[type='checkbox'] {
margin: 1.34em;
margin-right: 0;
float: right;
}
.input-group select {
margin: 0.9em;
margin-right: 0;
float: right;
}
/*
* For Flexbox Support
*/
.container > label {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
justify-content: space-between;
}
.container .input-group {
width: initial;
flex: 1 1 auto;
}
/* Shortcode Example page */
.flex,
.examples {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.flex > label {
flex: 0 1 200px;
}
.flex > input {
flex: 1 1 400px;
}
.examples .list-item {
flex: 1 1 250px;
}
p {
vertical-align: top;
word-wrap: break-word;
}
.list-item {
width: 250px;
display: inline-block;
vertical-align: top;
padding: 15px;
}
.list-item p {
font-size: 1.2em;
}