Add weather icon inputs to cities on map

This commit is contained in:
Guntis Smaukstelis
2024-02-11 21:44:29 +02:00
parent 46b16e462e
commit 19c3e45122
10 changed files with 152 additions and 23 deletions
+20
View File
@@ -55,10 +55,30 @@ table tr:hover {
background: #c0c0c0;
}
@font-face {
font-family: 'Daira by LTV grafika';
src: url('../assets/ltv_meteo.otf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
.hidden {
display: none;
}
.visible {
display: block;
}
.grid-1-1 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.grid-1-2 {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 10px;
}