Move css into separate files
This commit is contained in:
parent
8ec3b8d230
commit
cd79de89e4
21
src/index.css
Normal file
21
src/index.css
Normal file
@ -0,0 +1,21 @@
|
||||
table.stations {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.stations td, table.stations th{
|
||||
border: 1px solid black;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
table.stations tr.timedOut {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
table.stations tr.lowVoltage {
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
table.stations tr.neverHeard {
|
||||
background-color: purple;
|
||||
color: #eee;
|
||||
}
|
@ -1,29 +1,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<script src="./index.js"></script>
|
||||
<style>
|
||||
table.stations {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table.stations td, table.stations th{
|
||||
border: 1px solid black;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
table.stations tr.timedOut {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
table.stations tr.lowVoltage {
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
table.stations tr.neverHeard {
|
||||
background-color: purple;
|
||||
color: #eee;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="index.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
|
48
src/map.css
Normal file
48
src/map.css
Normal file
@ -0,0 +1,48 @@
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
.map {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
.ol-control.layer-toggles {
|
||||
top: 0.5em;
|
||||
right: 0.5em;
|
||||
background-color: rgba(70, 115, 164, 0.7);
|
||||
color: #eee;
|
||||
white-space: nowrap;
|
||||
max-height: calc(100vh - 1em);
|
||||
overflow-y: auto;
|
||||
}
|
||||
.layer-toggles > div {
|
||||
margin: 0.5em;
|
||||
margin-right: 1em;
|
||||
}
|
||||
.ol-control.layer-toggles:hover {
|
||||
background-color: rgba(0,60,136,0.7);
|
||||
}
|
||||
.layer-toggles > div > label {
|
||||
display: block;
|
||||
}
|
||||
.expand {
|
||||
display: none;
|
||||
}
|
||||
.expand + span::before {
|
||||
content: '\25B6';
|
||||
}
|
||||
.expand:checked + span::before {
|
||||
content: '\25BC';
|
||||
}
|
||||
.expand ~ .collapsible-content {
|
||||
display: none;
|
||||
}
|
||||
.expand:checked ~ .collapsible-content {
|
||||
display: block;
|
||||
}
|
||||
.collapsible-content {
|
||||
margin-left: 0.8em;
|
||||
}
|
||||
.collapsible-content label {
|
||||
display: block;
|
||||
}
|
51
src/map.html
51
src/map.html
@ -1,56 +1,7 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<style>
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
.map {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
.ol-control.layer-toggles {
|
||||
top: 0.5em;
|
||||
right: 0.5em;
|
||||
background-color: rgba(70, 115, 164, 0.7);
|
||||
color: #eee;
|
||||
white-space: nowrap;
|
||||
max-height: calc(100vh - 1em);
|
||||
overflow-y: auto;
|
||||
}
|
||||
.layer-toggles > div {
|
||||
margin: 0.5em;
|
||||
margin-right: 1em;
|
||||
}
|
||||
.ol-control.layer-toggles:hover {
|
||||
background-color: rgba(0,60,136,0.7);
|
||||
}
|
||||
.layer-toggles > div > label {
|
||||
display: block;
|
||||
}
|
||||
.expand {
|
||||
display: none;
|
||||
}
|
||||
.expand + span::before {
|
||||
content: '\25B6';
|
||||
}
|
||||
.expand:checked + span::before {
|
||||
content: '\25BC';
|
||||
}
|
||||
.expand ~ .collapsible-content {
|
||||
display: none;
|
||||
}
|
||||
.expand:checked ~ .collapsible-content {
|
||||
display: block;
|
||||
}
|
||||
.collapsible-content {
|
||||
margin-left: 0.8em;
|
||||
}
|
||||
.collapsible-content label {
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" type="text/css" href="map.css">
|
||||
<title>OpenLayers example</title>
|
||||
</head>
|
||||
<body>
|
||||
|
Loading…
Reference in New Issue
Block a user