-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched to Rollup; Used deftype definitions
- Loading branch information
Jan Litzenburger
committed
Sep 11, 2021
1 parent
352061f
commit 3453468
Showing
13 changed files
with
958 additions
and
2,610 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"jsxBracketSameLine": true, | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"endOfLine": "auto", | ||
"printWidth": 120 | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
.rain-map-time-wrapper { | ||
--color-history: #003AFF; | ||
--color-now: #000; | ||
--color-forecast: #ff0074; | ||
position: absolute; | ||
display: block; | ||
background: #ccc; | ||
padding: 0 10px 0 10px; | ||
z-index: 999; | ||
opacity: 0.75; | ||
color: #000; | ||
font-size: 1.2rem; | ||
--color-history: #003aff; | ||
--color-now: #000; | ||
--color-forecast: #ff0074; | ||
position: absolute; | ||
display: block; | ||
background: #ccc; | ||
padding: 0 10px 0 10px; | ||
z-index: 999; | ||
opacity: 0.75; | ||
color: #000; | ||
font-size: 1.2rem; | ||
} | ||
.rain-map-time-wrapper i { | ||
margin-right: 6px; | ||
margin-right: 6px; | ||
} | ||
|
||
.rain-map-timeslider { | ||
width: 0; | ||
height: 0; | ||
margin-top: -8px; | ||
margin-left: -2px; | ||
border-left: 4px solid transparent; | ||
border-right: 4px solid transparent; | ||
border-top: 10px solid #000; | ||
position: relative; | ||
display: block; | ||
width: 0; | ||
height: 0; | ||
margin-top: -8px; | ||
margin-left: -2px; | ||
border-left: 4px solid transparent; | ||
border-right: 4px solid transparent; | ||
border-top: 10px solid #000; | ||
position: relative; | ||
display: block; | ||
} | ||
|
||
.rain-map-timeline { | ||
display: block; | ||
height: 4px; | ||
margin-bottom: 5px; | ||
display: block; | ||
height: 4px; | ||
margin-bottom: 5px; | ||
} | ||
|
||
.rain-map-time.rain-map-history { | ||
color: var(--color-history); | ||
color: var(--color-history); | ||
} | ||
|
||
.rain-map-time.rain-map-now { | ||
color: var(--color-now); | ||
color: var(--color-now); | ||
} | ||
|
||
.rain-map-time.rain-map-forecast { | ||
color: var(--color-forecast); | ||
color: var(--color-forecast); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.