diff --git a/Wireframe/image1.png b/Wireframe/image1.png new file mode 100644 index 000000000..2e5d9047b Binary files /dev/null and b/Wireframe/image1.png differ diff --git a/Wireframe/image2.png b/Wireframe/image2.png new file mode 100644 index 000000000..1cb01284c Binary files /dev/null and b/Wireframe/image2.png differ diff --git a/Wireframe/image3.png b/Wireframe/image3.png new file mode 100644 index 000000000..e275bfa33 Binary files /dev/null and b/Wireframe/image3.png differ diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..6e69b35d9 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,88 @@ - - - - Wireframe - - - -
-

Wireframe

+ + + + + Wireframe + + + + +
+

SOFTWARE DEVELOPMENT LIFECYCLE TOOLS(SDLC)

+

+ SDLC tools are software applications that help development teams plan, design, build, test, and deploy software + systematically. SDLC tools are software applications that help development teams plan, design, build, test, and + deploy software systematically. +

+
+
+
+
+ an image of a readme.md +
+

README FILE

- This is the default, provided code and no changes have been made yet. + Just like the name implies, you should read a README file as it is the foundational documentation for a + software, dataset, or coding project. It serves as a project's "front door," designed to help users quickly + understand what the project does, how to install and use it, and how to contribute. It also contains + clear examples or tutorials demonstrating the project's features in action.

-
-
-
- -

Title

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. -

- Read more -
-
- - - + + Read + more + + + + + + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..b10d21a87 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -24,23 +24,40 @@ As well as useful links to learn more */ --line: 1px solid; --container: 1280px; } + /* ====== Base Elements ====== General rules for basic HTML elements in any context */ +h1 { + text-align: center; + color: palevioletred; +} + +h2 { + color: palevioletred; +} + body { background: var(--paper); color: var(--ink); font: var(--font); } + a { padding: var(--space); border: var(--line); max-width: fit-content; } + img, svg { width: 100%; object-fit: cover; } + +#basic { + text-align: center; +} + /* ====== Site Layout ====== Setting the overall rules for page regions https://www.w3.org/WAI/tutorials/page-structure/regions/ @@ -48,12 +65,25 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; + display: grid; + grid-template-columns: 1fr 1fr; + gap: var(--space); + + >*:first-child { + grid-column: span 2; + } } + footer { position: fixed; + left: 0; bottom: 0; + width: 100%; + background-color: rgb(231, 163, 200); + color: black; text-align: center; } + /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. Inspect this in Devtools and click the "grid" button in the Elements view @@ -61,14 +91,6 @@ Play with the options that come up. https://developer.chrome.com/docs/devtools/css/grid https://gridbyexample.com/learn/ */ -main { - display: grid; - grid-template-columns: 1fr 1fr; - gap: var(--space); - > *:first-child { - grid-column: span 2; - } -} /* ====== Article Layout ====== Setting the rules for how elements are placed in the article. Now laying out just the INSIDE of the repeated card/article design. @@ -80,10 +102,12 @@ article { text-align: left; display: grid; grid-template-columns: var(--space) 1fr var(--space); - > * { + + >* { grid-column: 2/3; } - > img { + + >img { grid-column: span 3; } -} +} \ No newline at end of file