41 lines
922 B
CSS
41 lines
922 B
CSS
|
:root {
|
||
|
--bgColor: #F7DEE9;
|
||
|
--fgColor: #626865;
|
||
|
--metaColor: #F6E6E6;
|
||
|
--headColor: #6caecf;
|
||
|
--linkColor: #d36977;
|
||
|
--hovColor: #FF5686;
|
||
|
--bgSelect: #BAD4AF;
|
||
|
--sidebarUrl: url("/img/zeudontumblr.png");
|
||
|
background-color: var(--bgColor);
|
||
|
background-size: 10px 10px;
|
||
|
background-image:
|
||
|
linear-gradient(to right, #F2EAEA 1px, transparent 1px),
|
||
|
linear-gradient(to bottom, #F2EAEA 1px, transparent 1px);
|
||
|
--bullet: url("/img/acrylliaDA-sakurabulletdark.png")
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: dokidoki;
|
||
|
src: url("/fonts/dokidoki.otf")
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
font: .9rem 'dokidoki', monospace;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: underline dotted 2px var(--hovColor);
|
||
|
}
|
||
|
|
||
|
.left-sidebar {
|
||
|
background-size:cover;
|
||
|
}
|
||
|
|
||
|
.fave ul {
|
||
|
list-style-image: url("/img/tamagotchininja_heart.gif");
|
||
|
}
|
||
|
|
||
|
.update ul {
|
||
|
list-style-image: url("/img/pinkarrow.gif");
|
||
|
}
|