Skip to content

Commit

Permalink
Styling input options
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvullings committed Apr 9, 2021
1 parent 121b6db commit 0242d8a
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ a,
}
.block-with-text:before {
/* points in the end */
content: '...';
content: "...";
/* absolute position */
position: absolute;
/* set position to right bottom corner of block */
Expand All @@ -68,7 +68,7 @@ a,
}
.block-with-text:after {
/* points in the end */
content: '';
content: "";
/* absolute position */
position: absolute;
/* set position to right bottom corner of text */
Expand All @@ -91,16 +91,17 @@ a,

/* print styles */
@media print {
html, body {
html,
body {
font-size: 14px;
}
body {
margin: 0;
color: #000;
background-color: #fff;
}
a[href^='http']::after {
content: ' (' attr(href) ')';
a[href^="http"]::after {
content: " (" attr(href) ")";
}
.leaflet-container,
img,
Expand All @@ -112,7 +113,7 @@ a,
page-break-inside: avoid; /* or 'auto' */
}
main::after {
content: 'Copyright DRIVER+';
content: "Copyright DRIVER+";
display: block;
text-align: center;
}
Expand Down Expand Up @@ -146,3 +147,8 @@ a,
.repeat-list .pagination {
margin: 0;
}

/* For the options' label */
.input-field.options > label {
top: -2.5rem;
}

0 comments on commit 0242d8a

Please sign in to comment.