51 lines
797 B
CSS
51 lines
797 B
CSS
@font-face {
|
|
font-family: "NotoSansT";
|
|
src: url("ttf/sans.ttf");
|
|
}
|
|
|
|
img {
|
|
border: 1px solid white;
|
|
}
|
|
|
|
.rainbow-text {
|
|
text-align: center;
|
|
background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
|
|
background-clip: text;
|
|
color: transparent !important;
|
|
animation: rainbow_anim 15s ease-in-out infinite;
|
|
background-size: 400% 100%;
|
|
}
|
|
|
|
#main-box {
|
|
padding: 10px;
|
|
margin-left: 25%;
|
|
margin-right: 25%;
|
|
}
|
|
|
|
h2 {
|
|
font-weight: 400;
|
|
}
|
|
|
|
a:visited {
|
|
color: #cba6f7 !important;
|
|
}
|
|
|
|
a {
|
|
color: #89b4fa;
|
|
}
|
|
|
|
a:hover {
|
|
background-color: #dce0e8;
|
|
color: #4c4f69 !important;
|
|
}
|
|
|
|
#footer, hr{
|
|
color: #bac2de;
|
|
}
|
|
|
|
body {
|
|
font-family: "NotoSansT";
|
|
font-size: 16px;
|
|
color: #cdd6f4;
|
|
background-color: #181825;
|
|
}
|