Skip to content

Commit

Permalink
Update product page in archive
Browse files Browse the repository at this point in the history
  • Loading branch information
4yman-0 committed Oct 20, 2024
1 parent 2a21740 commit f82fdaf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion archive/foobar.ai/product/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</head>
<body>
<header class="header">
<a href=".." class="button header__btn">&leftarrow; Go back</a>
<a href=".." class="button header__btn">&leftarrow; Back</a>
<h1 class="header__title">foobar<span class="color">.ai</span>: Pro Max Platinum+</h1>
</header>
<main class="content-container">
Expand Down
21 changes: 16 additions & 5 deletions archive/foobar.ai/product/product.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/* VARIABLES */

:root {
--bg-1: #050505;
--bg-2: #111;
--bg-3: #222;
--primary: #45F;
--secondary: #8ea;
--teritary: #8ae;
}

.header {
padding: .5rem 1rem;
display: flex;
Expand All @@ -17,12 +28,11 @@
}

.content-container {
min-height: 77vh;
height: 100vh;
display: flex;
flex-wrap: wrap-reverse;
justify-content: space-around;
align-items: center;
background: var(--bg-2);
border: 1px solid var(--bg-3);
border-radius: 4px;
}
Expand All @@ -31,7 +41,7 @@
min-height: 30vh;
padding: 3%;
margin: 2%;
background: var(--bg-3);
background: var(--bg-2);
border-radius: 10px;
}

Expand Down Expand Up @@ -62,8 +72,9 @@
}

.buy__btn {
width: 50%;
margin: auto;
width: 30%;
max-width: 5rem;
margin: 0 auto;
}

.buy__btn:hover {
Expand Down

0 comments on commit f82fdaf

Please sign in to comment.