Skip to content

Commit 39af18b

Browse files
committed
complete wireframe webpage layou
1 parent 67160aa commit 39af18b

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

Wireframe/style.css

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,30 @@ As well as useful links to learn more */
2727
/* ====== Base Elements ======
2828
General rules for basic HTML elements in any context */
2929
body {
30-
background: var(--paper);
30+
background: skyblue;
3131
color: var(--ink);
3232
font: var(--font);
33+
margin: 0;
3334
}
3435
header {
3536
text-align: center;
36-
padding: var(--space);
37+
padding: calc(var(--space) * 2);
3738
}
3839
a {
3940
padding: var(--space);
4041
border: var(--line);
4142
max-width: fit-content;
43+
text-decoration: none;
44+
display: inline-block;
45+
margin-top: var(--space);
46+
border-radius: 6px;
47+
color: black;
48+
background-color: white;
49+
}
50+
51+
a:hover {
52+
background-color: skyblue;
53+
color: black;
4254
}
4355
img,
4456
svg {
@@ -52,6 +64,7 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/
5264
main {
5365
max-width: var(--container);
5466
margin: 0 auto calc(var(--space) * 4) auto;
67+
padding-bottom: 80px;
5568
}
5669
footer {
5770
position: fixed;

0 commit comments

Comments
 (0)