17 lines
516 B
CSS
17 lines
516 B
CSS
@import url(jade-blog.css);
|
|
.base-body {
|
|
background-image: url(../images/jade-web-background.png);
|
|
background-repeat: repeat;
|
|
image-rendering: pixelated;
|
|
}
|
|
:root {
|
|
--jade-color-one: rgb(13, 109, 77);
|
|
--jade-color-two: rgb(93, 184, 71);
|
|
--navbar-accent-color: var(--jade-color-one);
|
|
--jade-color-three: rgb(70, 14, 116);
|
|
--fnColor: var(--jade-color-three);
|
|
--member-fg-color: rgb(243, 187, 187);
|
|
}
|
|
#navbar-accent {
|
|
background: linear-gradient(to right, var(--navbar-accent-color), var(--jade-color-two));
|
|
}
|