diff --git a/Wireframe/index.html b/Wireframe/index.html index 0e014e53..0886af54 100644 --- a/Wireframe/index.html +++ b/Wireframe/index.html @@ -1,33 +1,64 @@ - - - - Wireframe - - - -
-

Wireframe

+ + + + + đŸ”„Mira's cool Wireframe + + + + +
+

Wire Dish 101

+

+ Dishing out wireframe and design advice since 2030. 😉 +

+
+ +
+ +
+ +

Anyone using READ.me's here?

- This is the default, provided code and no changes have been made yet. + READ.mes have been in style since the mid 70s. Read more below.

-
-
-
- -

Title

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, - voluptates. Quisquam, voluptates. -

- Read more -
-
- - - + + Discover + + + +
+ +

Now what are wireframes?

+

+ Hang on to your ropes because there's more we'll tell you. +

+ + Discover + +
+ + + + + + + \ No newline at end of file diff --git a/Wireframe/style.css b/Wireframe/style.css index be835b6c..6ce92bbb 100644 --- a/Wireframe/style.css +++ b/Wireframe/style.css @@ -1,9 +1,3 @@ -/* 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 @@ -17,43 +11,86 @@ As well as useful links to learn more */ https://scrimba.com/learn-css-variables-c026 ====== Design Palette ====== */ :root { - --paper: oklch(7 0 0); - --ink: color-mix(in oklab, var(--color) 5%, black); + --paper: #5B4ACC; + --ink: #edecf7; + /*--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; + --line: 0.5px solid #edecf7; + --container: 900px; +} + +h2 { + margin-bottom: 0; } -/* ====== Base Elements ====== - General rules for basic HTML elements in any context */ + +/* ====== Base Elements ====== */ body { background: var(--paper); color: var(--ink); font: var(--font); } + a { padding: var(--space); border: var(--line); max-width: fit-content; + border-radius: 5px; + color: var(--ink); + text-decoration: none; + transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s; } + +header a { + padding: 0; + border: none; + border-radius: 0; + text-decoration: none; +} + +header a:hover { + text-decoration: underline; +} + img, svg { width: 100%; + height: 350px; + object-position: center; object-fit: cover; + transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s; } + +img:hover, +a:hover { + scale: 0.9; +} + + +/* ====== Header ====== */ + +header { + text-align: center; + margin: 80px 0; +} + +header h1 { + font-size: clamp(2rem, 2rem + 5vw, 5rem); + margin: var(--space) auto; + margin-bottom: 0; +} + + /* ====== 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; } -footer { - 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 @@ -65,10 +102,13 @@ main { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space); - > *:first-child { + margin-bottom: 20vh; + + >*: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. @@ -76,14 +116,35 @@ Keeping things orderly and separate is the key to good, simple CSS. */ article { border: var(--line); + border-radius: 5px; padding-bottom: var(--space); text-align: left; display: grid; grid-template-columns: var(--space) 1fr var(--space); - > * { + + >* { grid-column: 2/3; } - > img { + + >img { grid-column: span 3; } } + +footer { + position: fixed; + width: clamp(25%, 30%, 40%); + bottom: 0; + text-align: left; + font-size: 12px; + margin-bottom: 30px; + mix-blend-mode: overlay; +} + +@media only screen and (max-width: 600px) { + body { + footer { + width: clamp(40%, 70%, 70%); + } + } +} \ No newline at end of file diff --git a/Wireframe/wireframeBranch.html b/Wireframe/wireframeBranch.html new file mode 100644 index 00000000..28178a78 --- /dev/null +++ b/Wireframe/wireframeBranch.html @@ -0,0 +1,76 @@ + + + + + + + About Branches + + + + +
+ +

Wire Dish 101

+
+

+ Dishing out wireframe and design advice since 2030. 😉 +

+
+ +
+ +
+ +

Branch in here darling

+

+ Branches let you work on new features, fix bugs, or try out wild ideas without messing up the main + version + of your code. When you make a branch, you're basically saying, “Let me try something new over here + without changing what’s already working.” If everything goes well, you can merge it back into the main + project. If not, no worries—you just toss that branch away like it never happened.

+ + Branches are super important because they keep things organized and safe. Imagine if everyone in a group + project edited the same Google Doc at the same time with no rules—it would be total chaos. Branches make + sure each person can work on their own thing, test it, and then combine it smoothly when it's ready (use + Pull Requests for this darling). + It’s like teamwork with boundaries, so the project doesn't turn into a big digital mess. +

+ +
+ +
+ A placeholder image gotten from pinterest +

Anyone using READ.me's here?

+

+ READ.mes have been in style since the mid 70s. Read more below. +

+ + Discover + +
+ +
+ A placeholder image gotten from pinterest +

Now what are wireframes?

+

+ Hang on to your ropes because there's more we'll tell you. +

+ + Discover + +
+ +
+ + + + \ No newline at end of file diff --git a/Wireframe/wireframeREADme.html b/Wireframe/wireframeREADme.html new file mode 100644 index 00000000..8c5e82ca --- /dev/null +++ b/Wireframe/wireframeREADme.html @@ -0,0 +1,78 @@ + + + + + + + About READ.me Files + + + + +
+ +

Wire Dish 101

+
+

+ Dishing out wireframe and design advice since 2030. 😉 +

+
+ +
+ +
+ A placeholder image gotten from pinterest +

Anyone using READ.me's here?

+

+ A README file is like a welcome note or instruction manual for a project, usually a software or design + project. When someone opens a folder full of code or digital files, the README is the first thing they + should read (that’s why it’s called "README"). It tells people what the project is about, how to use it, + and how to get it running on their own computer. Think of it like the "How to Play" section in a video + game or the guide that comes with a new LEGO set. + + README files have actually been around since the 1970s (yep, even before Wi-Fi and TikTok were things), + helping developers and creators share their work in a way that’s easy to understand. Whether you’re + building a game, making a website, or creating an art project with code, a README makes sure anyone who + finds your project knows what it does and how to use it without needing to message you 20 times asking, + “ummm what’s this for?” +

+ +
+ +
+ A placeholder image gotten from pinterest +

Branch in here darling

+

+ And if you don't know what a branch is, then you need to read more. +

+ + Discover + +
+ +
+ A placeholder image gotten from pinterest +

Now what are wireframes?

+

+ Hang on to your ropes because there's more we'll tell you. +

+ + Discover + +
+ + +
+ + + + \ No newline at end of file diff --git a/Wireframe/wireframeWF.html b/Wireframe/wireframeWF.html new file mode 100644 index 00000000..decdb6a6 --- /dev/null +++ b/Wireframe/wireframeWF.html @@ -0,0 +1,76 @@ + + + + + + + About Wireframes + + + + +
+ +

Wire Dish 101

+
+

+ Dishing out wireframe and design advice since 2030. 😉 +

+
+ +
+ +
+ a wireframe image +

Now what are wireframes?

+

+ A wireframe is like a blueprint for a website or app. It's a super simple sketch that shows what goes + where, like buttons, text, images, and menus, without any fancy colors or design elements. Think of it + like drawing out your dream treehouse with just lines and labels before you actually build it. It helps + people figure out how things will be laid out and how users will move around the site or app. +

+ +

+ Wireframes are used by designers, developers, and product teams to plan things before writing any code + or adding visual details. It saves time and helps everyone agree on how things should work before + building starts. Whether you’re designing an app for school or planning the next big social platform, + wireframes keep the vision clear and help avoid confusion later. +

+ +
+ +
+ a guy reading a book +

Branch in here darling

+

+ And if you don't know what a branch is, then you need to read more. +

+ + Discover + +
+ +
+ a cool artwork +

Anyone using READ.me's here?

+

+ READ.mes have been in style since the mid 70s. Read more below. +

+ + Discover + +
+ +
+ + + + \ No newline at end of file