styled links
This commit is contained in:
parent
807ad242de
commit
6c0e705005
|
@ -14,6 +14,9 @@ body {
|
||||||
background-color: #594a54;
|
background-color: #594a54;
|
||||||
color: #d3cbd0;
|
color: #d3cbd0;
|
||||||
}
|
}
|
||||||
|
a {
|
||||||
|
color: #f69f8f;
|
||||||
|
}
|
||||||
canvas {
|
canvas {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
@light: #d3cbd0;
|
@light: #d3cbd0;
|
||||||
@dark: #594a54;
|
@dark: #594a54;
|
||||||
|
@accent: #f69f8f; // pink
|
||||||
|
|
||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -20,6 +21,10 @@ html, body {
|
||||||
color: @light;
|
color: @light;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: @accent;
|
||||||
|
}
|
||||||
|
|
||||||
canvas {
|
canvas {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue