diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..cf916626c 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -10,23 +10,78 @@

Wireframe

- This is the default, provided code and no changes have been made yet. + This web page is a brief guide on some of the terms we use in coding. I + will explain in my own words what the main terms mean and how they apply + to our code.

- -

Title

+ +

Purpose of a README File

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. + A README file is a document that provides information about a project. + It typically includes details such as the project's purpose, how to + install and use it, and any other relevant information that users or + developers might need. The README file is often the first thing that + users see when they visit a project's repository, so it's important to + make it clear and informative.

- Read more + More Info +
+
+ +

Wireframe

+

+ A wireframe is a visual representation of a web page or application. + It serves as a blueprint for the design and layout of the page, + showing where elements like text, images, and buttons will be placed. + Wireframes are often created in the early stages of a project to help + designers and developers plan the structure and functionality of the + page before moving on to more detailed design work. +

+ More Info +
+
+ +

Git Branch

+

+ A branch in Git is a separate line of development within a project. It + allows developers to work on new features or bug fixes without + affecting the main codebase. When a branch is created, it starts as a + copy of the main branch (usually called "main" or "master"). + Developers can make changes in their branch and then merge those + changes back into the main branch when they're ready. +

+ More Info
diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c7..d69b35e08 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -49,10 +49,30 @@ main { max-width: var(--container); margin: 0 auto calc(var(--space) * 4) auto; } + +header h1,p { + text-align: center; + margin: var(--space) 0; +} + +article p{ + text-align: left; +} + +h2 { + text-align: center; + margin: var(--space) 0; +} + footer { position: fixed; bottom: 0; text-align: center; + left: 2%; + background: var(--paper); /* to add contrast */ +} +footer p { + text-align: center; } /* ====== Articles Grid Layout ==== Setting the rules for how articles are placed in the main element. @@ -87,3 +107,10 @@ article { grid-column: span 3; } } + +.second-line img { + height: 150px; /* or any height you prefer */ + object-fit: contain; /* keeps the aspect ratio */ + display: block; + margin: 0 auto; /* optional: centers the image */ +}