diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..61975ed64 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,4 +1,4 @@ - + @@ -7,26 +7,144 @@ -
-

Wireframe

-

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

-
-
-
- -

Title

+
+
+

Course Work on Wireframe

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A Course Work on Wireframe and How Web Developers Use it to Develop + Web Codes.

- Read more -
-
+ +
+
+ +

A README file

+
+

Definition

+

+ According to wikipedia, a A README file contains descriptive + information about the content of a directory in which the file is + located. The scope orientational information about the directory + content. +

+
+
+ +

Summary of README File

+ + A README.md is a key document in repositories, especially on + GitHub. It introduces the project, explains its purpose, setup, + and usage, and helps users and developers contribute effectively. + A well-written README is important because: Allows formatted + documentation. The extension .md stands for markdown. It is meant + to be the first document to be read by someone starting on the + project. Gives a high-level description: what this software or + project does, why it exists, who it is for and how to install / + configure. It can include code examples, API usage, command-line + usage, etc. It states the license under which the software is + released, gives credit to authors or collaborators. Looks polished + when hosted as a webpage. +
+
+ + Read more +
+ +
+
+ placeholder +

What is the Purpose of Wireframes

+ +
+

Definition

+

+ Wireframes are skeleton of the
+ + This skeleton is a two-dimensional depiction of a pages + interface +
that shows the spacing of elements on the page, how + content is prioritized, what functionalities are available, +
and how users will interact with the site
+ + They also play a vital role in connecting information + architecture +
to the visual aspects of the design by showing pathways + between the various pages. +
+ + Wireframes are intentionally void of color, graphics and + stylized fonts. +

+
+ +
+ +

Summary of Wireframe

+ Wireframing is a quick and effective way to identify usability + issues early on in your design process. +
+
+ + Read More +
+
+  placeholder +

What is Branch in Git

+
+

Definition

+

+ A Git branch is a separate workspace used to make changes + without +
+ affecting the main project. Once the work is complete, the + changes +
can be merged back into the main or master branch. +
Branches make it easy to: +

+
    +
  • Manage different tasks or features independently
  • +
  • Test changes without affecting live code
  • +
  • Collaborate with others efficiently
  • +
+
+
+ +

Summary of Branching

+ Without branching developers will not have the flexibility of +
making changes and contributing to the main branch after a + pull request +
+
+ + + Read More +
+
+
+ diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..637556465 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -1,89 +1,145 @@ -/* Here are some starter styles -You can edit these or replace them entirely -It's showing you a common way to organise CSS -And includes solutions to common problems -As well as useful links to learn more */ - -/* ====== Design Palette ====== - This is our "design palette". - It sets out the colours, fonts, styles etc to be used in this design - At work, a designer will give these to you based on the corporate brand, but while you are learning - You can design it yourself if you like - Inspect the starter design with Devtools - Click on the colour swatches to see what is happening - I've put some useful CSS you won't have learned yet - For you to explore and play with if you are interested - https://web.dev/articles/min-max-clamp - https://scrimba.com/learn-css-variables-c026 -====== Design Palette ====== */ -:root { - --paper: oklch(7 0 0); - --ink: color-mix(in oklab, var(--color) 5%, black); - --font: 100%/1.5 system-ui; - --space: clamp(6px, 6px + 2vw, 15px); - --line: 1px solid; - --container: 1280px; -} + + /* ====== Base Elements ====== General rules for basic HTML elements in any context */ -body { - background: var(--paper); - color: var(--ink); - font: var(--font); + +body { + display: flex; + align-items: center; + flex-direction: column; + background-color: rgb(220, 245, 245); + justify-content: center; + +} +.page{ + display: flex; + justify-content: center; + width: 100%; + max-width: 1280px; + display: flex; + flex-direction: column; + align-items: center; + + + } +h3{ + + color: blue; +} + a { - padding: var(--space); - border: var(--line); + padding: 1px; + border: solid 1px ; max-width: fit-content; + height: 15px; + text-decoration: none; + +} + +.readme{ + border: solid red 1px; + min-height: 300px; + width:100% ; + border-radius: 10px; + padding: 20px 10px 20px 10px; + margin-bottom: 10px; + } -img, -svg { + +#svg1{ width: 100%; object-fit: cover; } -/* ====== Site Layout ====== -Setting the overall rules for page regions -https://www.w3.org/WAI/tutorials/page-structure/regions/ -*/ -main { - max-width: var(--container); - margin: 0 auto calc(var(--space) * 4) auto; +main{ + display: flex; + flex-direction: column; + gap: 15px; + align-items: center; + justify-content: center; + min-height: 300px; + width: 80%; + + + + +} +.sub-main { + display: flex; + width: 102.5%; + gap: 10px; + border-radius: 10px; + padding: 20px; + } -footer { + +.sub-main > * { + flex: 1; + padding: 10px; + +} + + +#svg2, +#svg3 { + width: 100%; + object-fit: cover; + border-radius: 10px; + +} +.image-container{ + width: 100%; + height: 35%; + border: solid burlywood 4px; + border-radius: 10px; + object-fit: cover; + +} + +.branch-article, +.wireframe-article { + + padding: 10px; + height: 30%; + margin: 0; + + +} +details{ + margin: 0; + padding: 10px; +} + +.branch, +.wireframe{ + width: 100%; + display: flex; + flex-direction: column; + gap: 4px; + border: 1px solid orange; + margin-bottom: 80px; + border-radius: 10px; + padding: 20px 10px 20px 10px; + +} + +summary { + list-style: none; + cursor: pointer; + padding: 0; + margin: 0; +} + +footer{ + display: flex; + flex-direction: column; + justify-content: center; position: fixed; bottom: 0; - 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 -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. -Keeping things orderly and separate is the key to good, simple CSS. -*/ -article { - border: var(--line); - padding-bottom: var(--space); - text-align: left; - display: grid; - grid-template-columns: var(--space) 1fr var(--space); - > * { - grid-column: 2/3; - } - > img { - grid-column: span 3; - } + width: 99%; +background-color: antiquewhite; + align-items: center; + padding: 10px; + margin: 10px 20px 0 20px; + z-index: 99; }