PluginProbe
Leaflet Map / trunk
Leaflet Map vtrunk
3.4.7 3.4.6 trunk 2.10.0 2.10.1 2.11.0 2.11.1 2.11.2 2.11.3 2.11.4 2.11.5 2.12.0 2.13.0 2.14.0 2.15.0 2.16.0 2.16.1 2.16.2 2.17.0 2.17.1 2.17.2 2.17.3 2.18.0 2.19.0 2.19.1 All 49 releases
leaflet-map / style.css

style.css in Leaflet Map trunk, at style.css

120 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 form {
2 margin-top: 4em;
3 }
4
5 .container {
6 margin-bottom: 2em;
7 max-width: 800px;
8 font-size: 18px;
9 }
10
11 .container:first-child {
12 margin-bottom: 1em;
13 }
14
15 .label {
16 float: left;
17 margin-right: 2em;
18 padding: 1em 0;
19 vertical-align: center;
20 }
21
22 .helptext {
23 clear: both;
24 }
25
26 .helptext p {
27 line-height: 2;
28 }
29
30 code {
31 margin: 1em 0;
32 padding: 1em 2em;
33 display: block;
34 }
35
36 .input-group {
37 float: right;
38 width: 50%;
39 }
40
41 .input-group input {
42 padding: 1em;
43 }
44
45 .input-group input[type='number'],
46 .input-group input[type='text'],
47 .input-group input[type='email'],
48 .input-group textarea,
49 .input-group select {
50 width: 100%;
51 }
52
53 .input-group input[type='checkbox'] {
54 margin: 1.34em;
55 margin-right: 0;
56 float: right;
57 }
58
59 .input-group select {
60 margin: 0.9em;
61 margin-right: 0;
62 float: right;
63 }
64
65 /*
66 * For Flexbox Support
67 */
68
69 .container > label {
70 display: -webkit-box;
71 display: -moz-box;
72 display: -ms-flexbox;
73 display: -webkit-flex;
74 display: flex;
75 justify-content: space-between;
76 }
77
78 .container .input-group {
79 width: initial;
80 flex: 1 1 auto;
81 }
82
83 /* Shortcode Example page */
84 .flex,
85 .examples {
86 display: -webkit-box;
87 display: -moz-box;
88 display: -ms-flexbox;
89 display: -webkit-flex;
90 display: flex;
91 flex-flow: row wrap;
92 justify-content: space-around;
93 }
94 .flex > label {
95 flex: 0 1 200px;
96 }
97 .flex > input {
98 flex: 1 1 400px;
99 }
100 .examples .list-item {
101 flex: 1 1 250px;
102 }
103 p {
104 vertical-align: top;
105 word-wrap: break-word;
106 }
107 .list-item {
108 width: 250px;
109 display: inline-block;
110 vertical-align: top;
111 padding: 15px;
112 }
113 .list-item p {
114 font-size: 1.2em;
115 }
116
117 .examples .leaflet-container {
118 height: 250px !important;
119 }
120