diff --git a/index.html b/index.html index 0697f92fe..420b12962 100644 --- a/index.html +++ b/index.html @@ -5,14 +5,79 @@ 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. +
+
+ + +
+
+ +
+
+

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..4d024b37c 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,260 @@ Green: #00B172 White: #FFF */ + +* { + box-sizing: border-box; + padding: 0; + margin: 0; + font-family: Arial, Helvetica, sans-serif; +} + +/* List elements settings */ + +a { + text-decoration: none; + font-size: 1.5rem; +} + +/* Color settings */ + +.color-text { + color: #1A1A1A; +} + +.color-white { + color: #FFF; +} + +.color-green { + color: #00B172; +} + +.background-green { + background-color: #00B172; +} + +.background-white { + background-color: #FFF; + width: 100%; +} + +/* List style settings */ + +.list-style-settings { + list-style: none; +} + +/* Border settings */ + +.border-bottom-green { + border-bottom: 3px solid #00B172; +} + +.border-bottom-white { + border-bottom: 3px solid #FFF; +} + +/* Font settings */ + +.h1-font-size { + font-size: 5rem; +} + +.h2-font-size { + font-size: 2rem; +} + +.border-font-size { + font-size: 2.25rem; +} + +.bold-font-size { + font-size: 1.75rem;; +} + +.text-font-size { + font-size: 1.5rem;; +} + +.font-weight-lighter { + font-weight: lighter; +} + +.font-weight-bold { + font-weight: bold; +} + +/* Element positioning */ + +.display-flex { + display: flex; +} + +.flex-direction-column { + flex-direction: column; +} + +.position-fixed { + position: fixed; +} + +.section-move { + position: relative; + top: 125px; + z-index: -1; +} + +.aling-items-center { + align-items: center; +} + +.justify-content-center { + justify-content: center; +} + +.justify-content-between { + justify-content: space-between; +} + +.justify-content-around { + justify-content: space-around; +} + +.element-gap { + gap: 45px; +} + +.justify-items-center { + justify-items: center; +} + +.text-align-center { + text-align: center; +} + +/* Images */ + +.spotify-logo { + background-image: url(/images/spotify-logo.png); + width: 250px; + height: 75px; +} + +.landing-image { + background-image: url(/images/landing.jpg); + width: 100%; + height: 90vh; +} + +.music-icon-image { + background-image: url(/images/music-icon.png); +} + +.high-quality-image { + background-image: url(/images/high-quality-icon.png); +} + +.devices-icon-image { + background-image: url(/images/devices-icon.png); +} + +.sizing-section-two { + width: 75px; + height: 75px; +} + +.spotify-white { + background-image: url(/images/spotify-icon-white.png); + width: 10vw; + height: 20vh; +} + +.width-spotify-white-box { + width: 38vw; +} + +.spotify-app { + background-image: url(/images/spotify-app.jpg); + width: 20vw; + height: 72vh; +} + +.background-settings { + background-size: cover; + background-position: center; + background-repeat: no-repeat; +} + +/* Padding settings */ + +.padding-header { + padding: 25px 50px 25px 50px; +} + +.padding-section-two { + padding: 100px 50px 50px 50px; +} + +.padding-section-two-text { + padding: 20px; +} + +.padding-section-three { + padding: 110px; +} + +.padding-text-section-three { + padding: 25px 0; +} + +.padding-bottom-border { + padding-bottom: 8px; +} + +/* Margin settings */ + +.margin-auto { + margin: auto; +} + +.margin-right-elements-section-two { + margin-right: 50px; +} + +.margin-title-section-two { + margin: 40px; +} + +.margin-section-three { + margin: 0 50px 50px 50px; +} + +.margin-bottom-section-three { + margin-bottom: 30px; +} + +/* Height settings */ + +.height-text-section-two { +height: 65vh; +} + +.height-title-section-three { + height: 80vh; +} + + +/* Width settings */ + +.width-fit-content { + width: fit-content; +} + +.width-boxes-section-two { +width: 300px; +} + +.width-spotify { + width: 45vw; +} \ No newline at end of file