diff --git a/index.html b/index.html index 0697f92fe..d68e57f3c 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,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 Clone + + + + + +
+ +
+ +
+

Music for everyone.

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

What’s on Spotify?

+
+
+ Music Icon +

Millions of Songs

+

There are millions of songs on Spotify

+
+ +
+ High Quality Icon +

HD Music

+

Listen to music as if you were listening live

+
+ +
+ Device Icon +

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 App Icon +
+
+ + + + \ No newline at end of file diff --git a/styles/style.css b/styles/style.css index 55efb32c6..838d21474 100644 --- a/styles/style.css +++ b/styles/style.css @@ -6,3 +6,163 @@ Green: #00B172 White: #FFF */ + +body { + font-family: system-ui, sans-serif; + color: #1A1A1A; +} + +/* +Header +*/ +header { + max-height: 40px; +} + +nav { + display: flex; + justify-content: stretch; +} + +nav ul { + display: flex; + justify-content: space-evenly; + width: 100px; + list-style: none; +} + +nav a { + color: #1A1A1A; + text-decoration: none; +} + +li { + padding-right: 10px; +} + +nav img { + max-height: 30px; +} + +.space { + width: 500px; +} + +/* +Top image +*/ + +.top-image { + position: relative; + text-align: center; + color: #FFF; + margin-left: 20px; + margin-bottom: 40px; +} + + +.top-image h1 { + position: absolute; + top: 30%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 30pt; +} + +.top-image div { + position: absolute; + top: 55%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 12pt; +} + +.top-image img { + height: 400px; + width: 1000px; + object-fit: cover; +} + +/* +****** +*/ + +.text-title { + font-weight: bold; + text-decoration: underline #00B172 2pt; + text-underline-offset: 10px; +} + +.spotify-features { + text-align: center; + +} + +article img { + height: 60px; + +} + +article h4 { + font-weight: bold; + color: #00B172; +} + +article p { + font-size: smaller; + color: grey; + padding-right: 25px; + padding-left: 25px; +} + +#features-list { + display: flex; + padding-top: 30px; +} + +.kanye-west { + background-color: #00B172; + color: #FFF; + padding-top: 25px; + padding-left: 35px; + margin-top: 40px; + display: flex; +} + +.kanye-west h3 { + text-decoration: underline #FFF 2pt; +} + + +.kanye-west p { + font-weight: bold; +} + +.kanye-west ul { + list-style: none; + padding-left: 0px; + padding-right: 40px; +} + +#small-logo { + height: 70px; + margin-right: 60px; + margin-top: 70px; + margin-left: 60px; +} + +.two-colomns { + display: flex; +} + +#app-screenshot { + width: 180px; + margin-right: 50px; + margin-top: 30px; + margin-bottom: 5px; +} + +.kanye-west li div { + font-size: 10pt; + font-weight: lighter; +} \ No newline at end of file