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