Skip to content

Commit 0242d8a

Browse files
committed
Styling input options
1 parent 121b6db commit 0242d8a

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

src/css/style.css

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ a,
5959
}
6060
.block-with-text:before {
6161
/* points in the end */
62-
content: '...';
62+
content: "...";
6363
/* absolute position */
6464
position: absolute;
6565
/* set position to right bottom corner of block */
@@ -68,7 +68,7 @@ a,
6868
}
6969
.block-with-text:after {
7070
/* points in the end */
71-
content: '';
71+
content: "";
7272
/* absolute position */
7373
position: absolute;
7474
/* set position to right bottom corner of text */
@@ -91,16 +91,17 @@ a,
9191

9292
/* print styles */
9393
@media print {
94-
html, body {
94+
html,
95+
body {
9596
font-size: 14px;
9697
}
9798
body {
9899
margin: 0;
99100
color: #000;
100101
background-color: #fff;
101102
}
102-
a[href^='http']::after {
103-
content: ' (' attr(href) ')';
103+
a[href^="http"]::after {
104+
content: " (" attr(href) ")";
104105
}
105106
.leaflet-container,
106107
img,
@@ -112,7 +113,7 @@ a,
112113
page-break-inside: avoid; /* or 'auto' */
113114
}
114115
main::after {
115-
content: 'Copyright DRIVER+';
116+
content: "Copyright DRIVER+";
116117
display: block;
117118
text-align: center;
118119
}
@@ -146,3 +147,8 @@ a,
146147
.repeat-list .pagination {
147148
margin: 0;
148149
}
150+
151+
/* For the options' label */
152+
.input-field.options > label {
153+
top: -2.5rem;
154+
}

0 commit comments

Comments
 (0)