Skip to content

Commit

Permalink
design
Browse files Browse the repository at this point in the history
  • Loading branch information
linder3hs committed Mar 1, 2024
1 parent 017357d commit 15d9ec7
Show file tree
Hide file tree
Showing 13 changed files with 136 additions and 0 deletions.
9 changes: 9 additions & 0 deletions semana-4/challenges/spotify/image 1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions semana-5/challenges/instagram/assets/icons/add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions semana-5/challenges/instagram/assets/icons/messages.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions semana-5/challenges/instagram/assets/icons/plus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions semana-5/challenges/instagram/assets/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
95 changes: 95 additions & 0 deletions semana-5/challenges/instagram/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram</title>
<!-- tailwind -->
<script src="https://cdn.tailwindcss.com/3.4.1"></script>
</head>
<body>
<header class="flex items-center justify-between p-6">
<div>
<img src="./assets/images/logo.svg" alt="" />
</div>
<div class="flex gap-5">
<button>
<img src="./assets/icons/add.svg" alt="" />
</button>
<button>
<img src="./assets/icons/messages.svg" alt="" />
<span
class="block absolute top-[32px] right-[20px] text-[7px] bg-red-600 text-white w-[15px] h-[15px] p-[2px] rounded-full"
>14
</span>
</button>
</div>
</header>
<main class="p-6">
<div class="flex gap-10 items-center overflow-x-auto">
<div class="">
<div class="relative w-[43px]">
<img src="./assets/images/story1.png" alt="" width="43" />
<img
width="19"
src="./assets/icons/plus.svg"
alt=""
class="absolute right-[-5px] bottom-[-2px]"
/>
</div>
<span class="text-[8px] block mt-4 text-center">Your Story</span>
</div>
<div>
<div class="w-[57px] h-[57px]">
<img
class="rounded-full border border-[#F20D6D] w-full h-full"
src="./assets/images/shawnmendes.png"
alt=""
/>
</div>
<span class="text-[8px] block mt-2 text-center">shawnmendes</span>
</div>
<div>
<div class="w-[57px] h-[57px]">
<img
class="rounded-full border border-[#F20D6D] w-full h-full"
src="./assets/images/tom.png"
alt=""
/>
</div>
<span class="text-[8px] block mt-2 text-center">tomcruise</span>
</div>
<div>
<div class="w-[57px] h-[57px]">
<img
class="rounded-full border border-[#F20D6D] w-full h-full"
src="./assets/images/jim.png"
alt=""
/>
</div>
<span class="text-[8px] block mt-2 text-center">jimcarrey</span>
</div>
<div>
<div class="w-[57px] h-[57px]">
<img
class="rounded-full border border-[#F20D6D] w-full h-full"
src="./assets/images/katy.png"
alt=""
/>
</div>
<span class="text-[8px] block mt-2 text-center">katyperry</span>
</div>
<div>
<div class="w-[57px] h-[57px]">
<img
class="rounded-full border border-[#F20D6D]"
src="./assets/images/vin.png"
alt=""
/>
</div>
<span class="text-[8px] block mt-2 text-center">Vindiesel</span>
</div>
</div>
</main>
</body>
</html>

0 comments on commit 15d9ec7

Please sign in to comment.