This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/resources/assets/less/yuuno/base.less

116 lines
1.4 KiB
Text
Raw Normal View History

2016-11-13 23:29:31 +00:00
@cute-font: "Segoe UI", "Open Sans", sans-serif;
2016-11-08 19:56:37 +00:00
* {
margin: 0;
padding: 0;
position: relative;
}
html,
body {
width: 100%;
height: 100%;
}
body {
font: 12px/20px Verdana, sans-serif;
background: linear-gradient(180deg, #C2AFFE, #FBEEFF) no-repeat scroll left top #FBEEFF;
background-size: cover;
color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
2016-11-13 23:29:31 +00:00
font-family: @cute-font;
2016-11-08 19:56:37 +00:00
font-weight: 100;
margin: 5px 0;
}
h1 {
text-shadow: 0 0 5px #8364A1;
color: #614390;
}
2016-11-09 18:32:23 +00:00
a {
color: #22E;
text-decoration: none;
&:hover {
text-decoration: underline;
}
&:active {
color: #E22;
}
}
2016-11-08 19:56:37 +00:00
hr {
border: 0;
height: 1px;
color: #9475B2;
background: #9475B2;
}
img {
max-width: 100%;
max-height: 100%;
&.emoticon {
vertical-align: middle;
}
}
.clear {
clear: both !important;
float: none !important;
}
.hidden {
display: none !important;
visibility: hidden !important;
}
2016-11-09 18:32:23 +00:00
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes slideInFromRight {
0% {
right: -100%;
}
100% {
right: 0;
}
}
@keyframes slideOutToBottom {
0% {
bottom: 0;
}
100% {
bottom: -100%;
}
}