Skip to content

Commit 8d62c98

Browse files
Change the wireframe
1 parent 00de676 commit 8d62c98

File tree

2 files changed

+26
-10
lines changed

2 files changed

+26
-10
lines changed

Wireframe/index.html

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
12-
<p>
13-
This is the default, provided code and no changes have been made yet.
14-
</p>
11+
<h1>Mohsen Zamani Wireframe</h1>
12+
<p>This will be my portfolio.</p>
1513
</header>
1614
<main>
15+
<aside>
16+
<a href="#">Home</a>
17+
<a href="#">My repos</a>
18+
<a href="#">About me</a>
19+
</aside>
1720
<article>
1821
<img src="placeholder.svg" alt="" />
1922
<h2>Title</h2>
@@ -25,9 +28,7 @@ <h2>Title</h2>
2528
</article>
2629
</main>
2730
<footer>
28-
<p>
29-
This is the default, provided code and no changes have been made yet.
30-
</p>
31+
<p>Copyright Mohsen Zamani - ITP Jan 2026</p>
3132
</footer>
3233
</body>
3334
</html>

Wireframe/style.css

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ As well as useful links to learn more */
2020
--paper: oklch(7 0 0);
2121
--ink: color-mix(in oklab, var(--color) 5%, black);
2222
--font: 100%/1.5 system-ui;
23+
--hover: 50%/2.5 system-ui;
2324
--space: clamp(6px, 6px + 2vw, 15px);
2425
--line: 1px solid;
2526
--container: 1280px;
@@ -63,11 +64,25 @@ https://gridbyexample.com/learn/
6364
*/
6465
main {
6566
display: grid;
66-
grid-template-columns: 1fr 1fr;
67+
grid-template-columns: 1fr 4fr;
6768
gap: var(--space);
68-
> *:first-child {
69+
/* > *:first-child {
6970
grid-column: span 2;
70-
}
71+
} */
72+
}
73+
74+
aside {
75+
display: flex;
76+
flex-direction: column;
77+
background-color: rgb(219, 222, 225);
78+
border: var(--line);
79+
}
80+
a {
81+
text-decoration: none;
82+
border: 0;
83+
}
84+
a:hover {
85+
color: var(--hover);
7186
}
7287
/* ====== Article Layout ======
7388
Setting the rules for how elements are placed in the article.

0 commit comments

Comments
 (0)