There was an error while loading. Please reload this page.
1 parent 57c0984 commit 481dd13Copy full SHA for 481dd13
1 file changed
Wireframe/style.css
@@ -26,16 +26,19 @@ As well as useful links to learn more */
26
}
27
/* ====== Base Elements ======
28
General rules for basic HTML elements in any context */
29
+
30
+* {
31
+ box-sizing: border-box;
32
+}
33
34
body {
35
background: var(--paper);
36
color: var(--ink);
37
font: var(--font);
38
39
40
-* {
- box-sizing: border-box;
-}
41
42
43
header {
44
max-width: var(--container);
@@ -66,6 +69,11 @@ a {
66
69
transition: all 0.3s ease;
67
70
68
71
72
+a:hover {
73
+ background-color: color-mix(in oklab, var(--paper)90%, white);
74
+ transform: scale(1.02);
75
76
77
img,
78
svg {
79
width: 100%;
0 commit comments