Title
-- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. -
- Read more -diff --git a/Wireframe/Styles/style.css b/Wireframe/Styles/style.css new file mode 100644 index 000000000..1e4541591 --- /dev/null +++ b/Wireframe/Styles/style.css @@ -0,0 +1,97 @@ +/* ====== Base ====== */ +body { + margin: 0; + box-sizing: border-box; + line-height: 1.5; + font-family: "Cantarell", sans-serif; + font-weight: 400; + color: #222; +} + +img { + width: 100%; + display: block; +} + +/* ====== Layout ====== */ +.container { + width: 70%; + max-width: 1200px; + margin: 0 auto; +} + +/* ====== Header ====== */ +.header__content { + text-align: center; + padding: 20px; +} + +.header__title { + font-weight: 900; + font-style: italic; + color: #c1121f; + margin-bottom: 0; +} + +.header__tagline { + color: #780000; + margin-top: 0; + font-size: 18px; + font-weight: 700; +} + +/* ====== Articles ====== */ +article { + border: 1px solid #ced4da; +} + +.article-feature-text { + padding: 0 0 2em 2em; +} + +.article-secondary-flex { + display: flex; + justify-content: space-between; + gap: 1rem; +} + +.article-sec { + margin-top: 1.5em; + padding: 1.5em; + width: 44%; +} + +/* ====== Buttons / Links ====== */ +.article__link { + text-decoration: none; + border: 1px solid #ced4da; + padding: 0.7em 1.2em; + color: #fff; + background: #e76f51; + border-radius: 2px; + display: inline-block; +} + +.article__link:hover, +.article__link:focus { + background: #ffc300; + color: black; +} + +/* ====== Footer ====== */ +.site-footer { + text-align: center; + padding: 20px 0; +} + +/* ====== Responsive ====== */ +@media (max-width: 750px) { + .article-secondary-flex { + flex-direction: column; + } + + .article-sec{ + width: 90%; + } + +} \ No newline at end of file diff --git a/Wireframe/images/git.webp b/Wireframe/images/git.webp new file mode 100644 index 000000000..779928a41 Binary files /dev/null and b/Wireframe/images/git.webp differ diff --git a/Wireframe/images/readme.png b/Wireframe/images/readme.png new file mode 100644 index 000000000..b7af6f648 Binary files /dev/null and b/Wireframe/images/readme.png differ diff --git a/Wireframe/images/wireframe-hero.png b/Wireframe/images/wireframe-hero.png new file mode 100644 index 000000000..95d28083c Binary files /dev/null and b/Wireframe/images/wireframe-hero.png differ diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e535..06beb68f5 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,97 @@ -
- - -- This is the default, provided code and no changes have been made yet. -
-A blog on learning programming
+- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. -
- Read more -
+ + according to GitHub Docs, a README file serves as the primary source of information about a project + and + helps users understand how to install, use, and contribute to it (GitHub Docs, n.d.). +
++ A README file is one of the most important documents within a software + project. It is usually the first file that users, developers, recruiters, + or potential employers look at when they visit a project's repository. + The name "README" comes from the idea that it should be the file people + read before doing anything else with the project. +
+ README file ... +
+ + A wireframe is a simple visual representation of a website or application's layout. It acts as a + blueprint. +
+Figma describes a wireframe as a low-fidelity representation of a user interface that focuses on + layout, + structure, and functionality before visual design decisions are made (Figma, n.d.).
+ Wireframes +
+ Git documentation explains that branches allow developers to diverge from the main line of + development + and work independently on features before merging their changes back into the project + (Git SCM, n.d.).
++
+ A branch in Git is a separate line of development that allows developers to + work on changes independently without affecting the main project. +
+ Git + branching +