From a617d6156c38e7fbe6a1a89010fbc55cda3e81ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20J=C3=BClich?= Date: Mon, 12 Jun 2023 16:18:42 +0200 Subject: [PATCH 1/3] prepartion for job --- index.html | 93 +++++++++++++++++++++++++++++++++++++++++---- styles/style.css | 99 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 185 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 0697f92fe..91d5f61a7 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,93 @@ Spotify Clone - + - Premium Discover Help Download Music for everyone. Spotify is now free on mobile, tablet and computer. Listen to the - right music, wherever you are. What’s on Spotify? Millions of Songs There are millions of songs on Spotify HD Music - Listen to music as if you were listening live Stream Everywhere Stream music on your smartphone, tablet or computer - It’s as yeezy as Kanye West. Search Know what you want to listen to? Just search and hit play. Browse Check out the - latest charts, brand new releases and great playlists for right now. Discover Enjoy new music every Monday with your - own personal playlist. Or sit back and enjoy Radio. +
+ + Spotify Logo + + + +
+ +
+ +

Music for everyone.

+

Spotify is now free on mobile, tablet and computer. + Listen to the right music, wherever you are. +

+ +
+ +
+ +

+ What’s on Spotify? +

+ +
+
+ +

Millions of + Songs +

+

There are millions of songs on Spotify

+
+
+ +

HD Music

+

Listen to music as if + you were listening live

+
+
+ +

Stream Everywhere

+

Stream music on your smartphone, + tablet or computer

+
+
+ +
+ +
+ +
+ +

It’s as yeezy as Kanye West.

+ +

Search

+ +

Know what you want to + listen to? Just search and hit play.

+ +

Browse

+ +

Check out the latest charts, + brand new releases and great playlists for right now.

+ +

Discover

+ +

Enjoy new + music every Monday with your own personal playlist. Or sit back and enjoy + Radio.

+ +
+ +
+ +
+ +
+ + diff --git a/styles/style.css b/styles/style.css index 55efb32c6..8b76cfc34 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,102 @@ Green: #00B172 White: #FFF */ + +.header { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; +} + +.header img { + width: 200px; + height: auto; + padding: 10px; +} + +.header nav ul { + list-style-type: none; + margin: 5px 10px; +} + +.header nav ul li { + display: inline-block; + padding: 10px; + font-size: 24px; + font-weight: 400; +} + +.landing-page { + background-image: url("../images/landing.jpg"); + background-repeat: repeat; + background-size: cover; + background-position: 0 0; + font-size: 28px; + width: 100vw; + height: 1000px; + color: white; + position: relative; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.landing-page p { + margin: 0 20px; + font-weight: lighter; + white-space: break-spaces; +} + +.categories { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.categories h1 { + margin-bottom: 50px; +} + +.list-of-cards { + display: flex; + justify-content: center; + align-items: baseline; + margin-bottom: 50px; + margin-left: 10px; + margin-right: 10px; +} + +.card { + width: 33%; + height: 100%; + display: flex; + flex-direction: column; + align-items: center; +} +.card img { + width: 120px; + height: auto; +} + +.card h2 { + color: #1AB16A; + text-align: center; +} + +.card p { + font-size: 20px; + letter-spacing: 0.7px; + text-align: center; + padding: 0 15px; + margin: 0 25px; +} + +.spotify-app { + background-color: #1AB16A; + display: flex; + justify-content: space-between; + align-items: center; +} From f6a5d4c1e5b10da1b2654756e641fe6c9ca7d310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20J=C3=BClich?= Date: Tue, 13 Jun 2023 16:18:14 +0200 Subject: [PATCH 2/3] minor changes --- index.html | 50 +++++++++++++++++++++++++++--------------------- styles/style.css | 24 +++++++++++++++++++++-- 2 files changed, 50 insertions(+), 24 deletions(-) diff --git a/index.html b/index.html index 91d5f61a7..368995fa5 100644 --- a/index.html +++ b/index.html @@ -62,33 +62,39 @@

Stream Everywhere

-
+
-
+
-

It’s as yeezy as Kanye West.

- -

Search

- -

Know what you want to - listen to? Just search and hit play.

- -

Browse

- -

Check out the latest charts, - brand new releases and great playlists for right now.

- -

Discover

- -

Enjoy new - music every Monday with your own personal playlist. Or sit back and enjoy - Radio.

+

It’s as yeezy as Kanye West.

+ +
+

Search

+ +

Know what you want to + listen to? Just search and hit play.

+
-
+
+

Browse

+ +

Check out the latest charts, + brand new releases and great playlists for right now.

+
-
+
+

Discover

+ +

Enjoy new + music every Monday with your own personal playlist. Or sit back and enjoy + Radio.

+
+ +
- +
+ +
diff --git a/styles/style.css b/styles/style.css index 8b76cfc34..668953c4c 100644 --- a/styles/style.css +++ b/styles/style.css @@ -99,9 +99,29 @@ White: #FFF margin: 0 25px; } -.spotify-app { +.wrapper-class { background-color: #1AB16A; + background-size: cover; display: flex; - justify-content: space-between; + justify-content: space-evenly; align-items: center; + margin: 0 25px; } + +.spotify-app { + color: white; + display: flex; + flex-direction: column; + text-align: justify; + align-items: baseline; +} + +.spotify-app h1 { + text-decoration: underline; +} + +.spotify-player img { + width: 300px; + height: auto; + padding: 25px 0; +} \ No newline at end of file From 125dcef4f29ede2793ad29f27ba2873c619b7380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20J=C3=BClich?= Date: Sun, 18 Jun 2023 19:18:14 +0200 Subject: [PATCH 3/3] last commit for this lab --- styles/style.css | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index 668953c4c..27ba8683f 100644 --- a/styles/style.css +++ b/styles/style.css @@ -101,11 +101,16 @@ White: #FFF .wrapper-class { background-color: #1AB16A; - background-size: cover; + background-image: url("../images/spotify-icon-white.png"); + background-position: center; + background-repeat: no-repeat; + background-size: 5%; display: flex; justify-content: space-evenly; align-items: center; margin: 0 25px; + padding-top: 100px; + padding-bottom: 50px; } .spotify-app { @@ -114,12 +119,25 @@ White: #FFF flex-direction: column; text-align: justify; align-items: baseline; + height: 600px; } .spotify-app h1 { text-decoration: underline; } +.spotify-category { + height: auto; + font-size: 20px; + max-width: 350px; +} + +.spotify-category p { + line-height: 30px; + text-align: left; + +} + .spotify-player img { width: 300px; height: auto;