File tree Expand file tree Collapse file tree 2 files changed +26
-10
lines changed
Expand file tree Collapse file tree 2 files changed +26
-10
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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*/
6465main {
6566 display : grid;
66- grid-template-columns : 1fr 1 fr ;
67+ grid-template-columns : 1fr 4 fr ;
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 ======
7388Setting the rules for how elements are placed in the article.
You can’t perform that action at this time.
0 commit comments