Skip to content

Commit 425d7dc

Browse files
authored
Merge pull request #1 from khaliun-dev/feature/wireframe
London | 26 -ITP-January | Khaliun Baatarkhuu | Sprint 1 | Wireframe to Web Code
2 parents 72fe02b + 5177144 commit 425d7dc

2 files changed

Lines changed: 45 additions & 43 deletions

File tree

Wireframe/index.html

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,46 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<h1>Understanding the developmental cycle of a product</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
A simple website made to explain how README file + WIREFRAME + GIT branching complement each other in developmental workflow for a digital product.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
18+
<img src="placeholder.svg" alt="Image for wireframe article" />
19+
<h2>The purpose of a WIREFRAME</h2>
2020
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
21+
From a product developmental perspective wireframing is essentially a blueprint, an imagie file sent from a client, laying out the structure of a webpage for example, whether it be content placement, naviagation, basic interactions. Then from that skeletal blueprint developers take over and build the product itself.
2322
</p>
24-
<a href="">Read more</a>
23+
<a href="https://en.wikipedia.org/wiki/Website_wireframe">Read more</a>
2524
</article>
25+
26+
<article>
27+
<img src="placeholder.svg" alt="Image for README article" />
28+
<h2>Purpose of a README file</h2>
29+
<p>
30+
Now that you have your website layout, first thing you have to read is the README file. In there you will usually find information about the project, guidelines, requirements, licenses etc. The file acts as an evolving filing overview of the product.
31+
</p>
32+
<a href="https://en.wikipedia.org/wiki/README">Read more</a>
33+
</article>
34+
35+
<article>
36+
<img src="placeholder.svg" alt="Image for GIT branch article" />
37+
<h2>Purpose of a branch in GIT</h2>
38+
<p>
39+
And finally we have branching. As in any collaborative projects, especially if the team is spanning multiple locations, safety - security - support becomes very important. That's where GIT and GITHUB come in. Branching allows you to copy parts of the main code, to work on it independently without accidentally corrupting the main code, and to collaborate effectively on any changes made with your team. Once copy branch has been approved it gets merged into the main code.
40+
</p>
41+
<a href="https://en.wikipedia.org/wiki/Branching_(version_control)">Read more</a>
42+
</article>
43+
44+
45+
46+
2647
</main>
2748
<footer>
2849
<p>
29-
This is the default, provided code and no changes have been made yet.
50+
If you liked my website contact me directly on <a href="https://github.com/khaliun-dev">khaliun-dev</a>
3051
</p>
3152
</footer>
3253
</body>

Wireframe/style.css

Lines changed: 16 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
/* Here are some starter styles
2-
You can edit these or replace them entirely
3-
It's showing you a common way to organise CSS
4-
And includes solutions to common problems
5-
As well as useful links to learn more */
61

7-
/* ====== Design Palette ======
8-
This is our "design palette".
9-
It sets out the colours, fonts, styles etc to be used in this design
10-
At work, a designer will give these to you based on the corporate brand, but while you are learning
11-
You can design it yourself if you like
12-
Inspect the starter design with Devtools
13-
Click on the colour swatches to see what is happening
14-
I've put some useful CSS you won't have learned yet
15-
For you to explore and play with if you are interested
16-
https://web.dev/articles/min-max-clamp
17-
https://scrimba.com/learn-css-variables-c026
18-
====== Design Palette ====== */
192
:root {
203
--paper: oklch(7 0 0);
214
--ink: color-mix(in oklab, var(--color) 5%, black);
@@ -24,8 +7,7 @@ As well as useful links to learn more */
247
--line: 1px solid;
258
--container: 1280px;
269
}
27-
/* ====== Base Elements ======
28-
General rules for basic HTML elements in any context */
10+
2911
body {
3012
background: var(--paper);
3113
color: var(--ink);
@@ -41,26 +23,27 @@ svg {
4123
width: 100%;
4224
object-fit: cover;
4325
}
44-
/* ====== Site Layout ======
45-
Setting the overall rules for page regions
46-
https://www.w3.org/WAI/tutorials/page-structure/regions/
47-
*/
26+
4827
main {
4928
max-width: var(--container);
5029
margin: 0 auto calc(var(--space) * 4) auto;
5130
}
31+
header {
32+
text-align: center;
33+
padding: calc(var(--space) *2);
34+
border-bottom: var(--line);
35+
}
5236
footer {
5337
position: fixed;
5438
bottom: 0;
39+
left: 0;
40+
width: 100%;
41+
background: #222;
42+
color: white;
43+
padding: var(--space);
5544
text-align: center;
5645
}
57-
/* ====== Articles Grid Layout ====
58-
Setting the rules for how articles are placed in the main element.
59-
Inspect this in Devtools and click the "grid" button in the Elements view
60-
Play with the options that come up.
61-
https://developer.chrome.com/docs/devtools/css/grid
62-
https://gridbyexample.com/learn/
63-
*/
46+
6447
main {
6548
display: grid;
6649
grid-template-columns: 1fr 1fr;
@@ -69,13 +52,11 @@ main {
6952
grid-column: span 2;
7053
}
7154
}
72-
/* ====== Article Layout ======
73-
Setting the rules for how elements are placed in the article.
74-
Now laying out just the INSIDE of the repeated card/article design.
75-
Keeping things orderly and separate is the key to good, simple CSS.
76-
*/
55+
7756
article {
57+
background: white;
7858
border: var(--line);
59+
border-radius: 4px
7960
padding-bottom: var(--space);
8061
text-align: left;
8162
display: grid;

0 commit comments

Comments
 (0)