File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 */
2929body {
30- background : var ( --paper ) ;
30+ background : skyblue ;
3131 color : var (--ink );
3232 font : var (--font );
33+ margin : 0 ;
3334}
3435header {
3536 text-align : center;
36- padding : var (--space );
37+ padding : calc ( var (--space ) * 2 );
3738}
3839a {
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}
4355img ,
4456svg {
@@ -52,6 +64,7 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/
5264main {
5365 max-width : var (--container );
5466 margin : 0 auto calc (var (--space ) * 4 ) auto;
67+ padding-bottom : 80px ;
5568}
5669footer {
5770 position : fixed;
You can’t perform that action at this time.
0 commit comments