diff --git a/Wireframe/explain.html b/Wireframe/explain.html new file mode 100644 index 000000000..e5ca5f4cc --- /dev/null +++ b/Wireframe/explain.html @@ -0,0 +1,53 @@ + + + + + + Wireframe + + + +
+

Here find the answer to the below questions:

+
+
+
+ +

What is the purpose of a README file?

+

+ It is the billboard of the repository, it give some general and + technical information about the repo such as: +

+
    +
  1. What the repo is about.
  2. +
  3. What problem it solves.
  4. +
  5. How to install and use it.
  6. +
  7. how to contribute.
  8. +
+

+ Basically, all the data a person using the repo should know, can go + here. +

+
+
+ +

What is the purpose of a wireframe?

+

+ It specifies the structure of a page and how different sections get in + place next to each other. +

+
+
+ +

What is a branch in Git?

+

+ It is an absolute separate line from the main branch of a project, + which can be changed without affecting the main branch. +

+
+
+ + + diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..161b8cae5 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -8,12 +8,15 @@
-

Wireframe

-

- This is the default, provided code and no changes have been made yet. -

+

Mohsen Zamani Wireframe

+

This will be my portfolio.

+

Title

@@ -25,9 +28,7 @@

Title

diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..f6c1217a0 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -20,6 +20,7 @@ As well as useful links to learn more */ --paper: oklch(7 0 0); --ink: color-mix(in oklab, var(--color) 5%, black); --font: 100%/1.5 system-ui; + --hover: 50%/2.5 system-ui; --space: clamp(6px, 6px + 2vw, 15px); --line: 1px solid; --container: 1280px; @@ -65,9 +66,23 @@ main { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space); - > *:first-child { + /* > *:first-child { grid-column: span 2; - } + } */ +} + +aside { + display: flex; + flex-direction: column; + background-color: rgb(219, 222, 225); + border: var(--line); +} +a { + text-decoration: none; + border: 0; +} +a:hover { + color: var(--hover); } /* ====== Article Layout ====== Setting the rules for how elements are placed in the article. @@ -85,5 +100,6 @@ article { } > img { grid-column: span 3; + max-width: 100%; } }