Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
70 changes: 70 additions & 0 deletions Wireframe /index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>README, Wireframes and Git Branches</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>README, Wireframes and Git Branches</h1>
<p>A simple guide to three important web development concepts.</p>
</header>
<main>
<article>
<img
src="https://myscope.training/images/RDM-module/figure_22.jpg"
alt="README file illustration"
/>
<h2>What is the purpose of a README file?</h2>
<p>
A README file explains what a project is, how it works, and how
someone can use it. It often includes setup instructions, features,
and important notes for developers.
</p>
<a
href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes"
>Read more</a
>
</article>

<article>
<img
src="https://www.oursky.com/images/blogs/86256bf2c9_6799482b54769870a1e9c883_1.jpeg"
alt="Wireframe file illustration"
/>
<h2>What is the purpose of a wireframe?</h2>
<p>
A wireframe is a simple plan for a webpage or app. It shows where
content, images, buttons, and sections will go before the final design
is created.
</p>
<a
href="https://github.com/dwyl/learn-wireframing/blob/master/README.md"
>Read more</a
>
</article>

<article>
<img
src="https://www.sqlshack.com/wp-content/uploads/2020/09/git-branch-and-timelines.png"
alt="Git branch file illustration"
/>
<h2>What is a branch in Git?</h2>
<p>
A branch in Git is a separate version of a project. It lets developers
work on new features or fixes without changing the main version of the
code.
</p>
<a
href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches"
>Read more</a
>
</article>
</main>
<footer>
<p>Created as a beginner guide to key web development terms.</p>
</footer>
</body>
</html>
File renamed without changes
41 changes: 32 additions & 9 deletions Wireframe/style.css → Wireframe /style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,23 @@ As well as useful links to learn more */
====== Design Palette ====== */
:root {
--paper: oklch(7 0 0);
--ink: color-mix(in oklab, var(--color) 5%, black);
--ink: blue;
--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 */
header {
text-align: center;
}
/* Futuristic font */
body {
background: var(--paper);
color: var(--ink);
font: var(--font);
font-family: "Orbitron", "Rajdhani", "Segoe UI", sans-serif;
}
a {
padding: var(--space);
Expand All @@ -39,7 +44,10 @@ a {
img,
svg {
width: 100%;
height: 250px;
object-fit: cover;
border: 3px solid blue;
border-radius: 20px;
}
/* ====== Site Layout ======
Setting the overall rules for page regions
Expand All @@ -50,9 +58,11 @@ main {
margin: 0 auto calc(var(--space) * 4) auto;
}
footer {
position: fixed;
bottom: 0;
text-align: center;
font-size: 0.8rem;
color: var(--ink);
margin-top: 40px;
padding: 20px;
}
/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Expand All @@ -76,14 +86,27 @@ Keeping things orderly and separate is the key to good, simple CSS.
*/
article {
border: var(--line);
border-radius: 20px;
box-shadow: 0 0 15px blue;
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;
}
}
article > * {
grid-column: 2 / 3;
}
article > img {
grid-column: 2 / 3;
margin-top: var(--space);
}
> img {
grid-column: 2 / 3;
margin-top: var(--space);
}
h1,
h2,
a {
text-transform: uppercase;
letter-spacing: 1px;
}
File renamed without changes
33 changes: 0 additions & 33 deletions Wireframe/index.html

This file was deleted.

Loading