Skip to content

Commit 8c7aef3

Browse files
Revert accidental changes to fiels in Wireframe folder
1 parent a0f4237 commit 8c7aef3

2 files changed

Lines changed: 10 additions & 27 deletions

File tree

Wireframe/index.html

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

Wireframe/style.css

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ 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;
2423
--space: clamp(6px, 6px + 2vw, 15px);
2524
--line: 1px solid;
2625
--container: 1280px;
@@ -64,25 +63,11 @@ https://gridbyexample.com/learn/
6463
*/
6564
main {
6665
display: grid;
67-
grid-template-columns: 1fr 4fr;
66+
grid-template-columns: 1fr 1fr;
6867
gap: var(--space);
69-
/* > *:first-child {
68+
> *:first-child {
7069
grid-column: span 2;
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);
70+
}
8671
}
8772
/* ====== Article Layout ======
8873
Setting the rules for how elements are placed in the article.
@@ -100,6 +85,5 @@ article {
10085
}
10186
> img {
10287
grid-column: span 3;
103-
max-width: 100%;
10488
}
10589
}

0 commit comments

Comments
 (0)