Skip to content

Commit e202e58

Browse files
author
Andrew Evans
committed
making desktop about page look better
1 parent 68991b4 commit e202e58

File tree

5 files changed

+35
-21
lines changed

5 files changed

+35
-21
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# Goose Weather
2-
![goose image](/src/assets/goose.svg)
3-
42
- Weather application that I named for my wife, and her dream of being a meteorologist
53
- Application is built with Angular and uses [NOAA APIs](https://www.weather.gov/documentation/services-web-api) and the [OpenWeatherMapAPI Service](https://openweathermap.org/api) to create a weather forecast
64
- Application uses the following platforms and frameworks:
Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
11
.about {
22
display: flex;
33
flex-direction: row;
4-
justify-content: left;
4+
justify-content: flex-start;
55
flex-wrap: wrap;
6+
align-items: flex-start;
7+
text-align: left;
68
font-size: 1.5em;
79
}
810

9-
li {
10-
text-align: left;
11+
img {
12+
margin-left: 2em;
13+
margin-right: 2em;
1114
}
1215

13-
img {
16+
.desktop {
1417
display: flex;
15-
justify-content: left;
16-
margin-top: 1em;
18+
flex-direction: column;
19+
}
20+
21+
.images {
22+
display: flex;
23+
flex-direction: row;
24+
justify-content: center;
25+
align-items: center;
26+
padding: 2em;
1727
}

src/app/cards/about-desktop/about-desktop.component.html

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
1-
<div class="about">
2-
<ul>
3-
<li>Angular Application built and maintained by <a href="https://rhythmandbinary.com/">Andrew Evans</a></li>
4-
<li>Weather data provided by <a href="https://www.weather.gov/documentation/services-web-api">NOAA APIs</a> and the <a href="https://openweathermap.org/api">OpenWeatherMapAPI Service</a></li>
5-
<li>Application uses <a href="https://ngrx.io/">NgRx</a> for state management</li>
6-
<li>Open Source with the
7-
<a href="https://github.com/andrewevans02/goose-weather/blob/master/LICENSE">MIT License</a> and can be viewed on <a href="https://github.com/andrewevans02/goose-weather">GitHub</a></li>
8-
<li>Goose image was made at
1+
<div class="desktop">
2+
<div class="about">
3+
<p> This application is built and maintained by
4+
<a href="https://rhythmandbinary.com/">Andrew Evans</a>. It was named for Andrew's wife, and her dream of being a meteorologist. The weather data is provided by
5+
<a href="https://www.weather.gov/documentation/services-web-api">NOAA APIs</a>, and the
6+
<a href="https://openweathermap.org/api">OpenWeatherMapAPI Service</a>. This Application uses
7+
<a href="https://ngrx.io/">NgRx</a> for state management. It's also Open Source with the
8+
<a href="https://github.com/andrewevans02/goose-weather/blob/master/LICENSE">MIT License</a>.
9+
Source code can be viewed on <a href="https://github.com/andrewevans02/goose-weather">GitHub</a>.
10+
The Goose image shown was made by
911
<a href="https://www.flaticon.com/authors/smalllikeart" title="smalllikeart">smalllikeart</a> from
1012
<a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>
1113
and is licensed by
12-
<a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a>
13-
</li>
14-
</ul>
14+
<a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a>.
15+
</p>
16+
</div>
17+
<div class="images">
18+
<img src='./assets/goose.svg'>
19+
<img src='./assets/sun_large.svg'>
20+
</div>
1521
</div>
16-
<img src='./assets/goose.svg'>

src/app/cards/about-mobile/about-mobile.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div clas="mobile">
1+
<div class="mobile">
22
<div class="about">
33
<p> This application is built and maintained by
44
<a href="https://rhythmandbinary.com/">Andrew Evans</a>. It was named for Andrew's wife, and her dream of being a meteorologist. The weather data is provided by

src/assets/sun_large.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)