Skip to content

Commit fb096c9

Browse files
committed
Let there be mint!
1 parent 8249692 commit fb096c9

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

css/master.css

+18-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600;800&display=swap');
33

44
:root {
5-
--color-main-light: #FFFAF0;
6-
--color-main-base: #fffbf4;
7-
--color-main-dark: #954535;
8-
--color-main-black: #1B1811;
5+
--color-main-light: #f5fffa;
6+
--color-main-base: #fff;
7+
--color-main-dark: #73d298;
8+
--color-main-black: #0b4430;
99
}
1010

1111
body {
@@ -70,4 +70,18 @@ hr {
7070

7171
input:focus-visible {
7272
outline: 0px;
73+
}
74+
75+
a {
76+
color: var(--color-main-dark);
77+
text-decoration: none;
78+
}
79+
80+
#footer {
81+
padding: 3rem 2rem 4rem 2rem;
82+
width: 100%;
83+
text-align: center;
84+
background-color: #fff;
85+
box-sizing: border-box;
86+
outline: 0.2rem dotted var(--color-main-dark);
7387
}

css/osm.css

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
border: 0;
55
outline: 0.2rem dotted var(--color-main-dark);
66
outline-offset: -2px;
7+
filter: saturate(2) brightness(0.7) contrast(2) sepia(1) hue-rotate(75deg) saturate(1.2);
78
}
89

910
@media screen and (orientation: portrait) {

img/favicon.png

12.3 KB
Loading

index.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Weather App</title>
6+
<title>MintWeather</title>
77
<link rel="shortcut icon" type="img/png" href="img/favicon.png"/>
88
<script src="js/weather.js" defer></script>
99
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.9.0/build/ol.js"></script>
@@ -37,7 +37,10 @@ <h2 id="errorTitle"></h2>
3737
<hr>
3838
<div id="forecasts"></div>
3939

40-
<div id="footer">Powered by <a href="https://prevision-meteo.ch">https://prevision-meteo.ch</a></div>
40+
<div id="footer">
41+
<p>Powered by <a href="https://prevision-meteo.ch">https://prevision-meteo.ch</a></p>
42+
<p><a href="https://github.com/DrMint/MintWeather">MintWeather</a>, by Dr_Mint (MIT License)</p>
43+
</div>
4144

4245

4346
</body>

0 commit comments

Comments
 (0)