系统
设置项 内容 编辑
版本 2.5.6
语言 Chinese (Chinese)
支持 Discord | Github | Blog
捐赠 Paypal
外观
设置项 内容 编辑
背景图片 - 未设置 -
杂项
设置项 内容 编辑
主页搜索
默认搜索引擎 Baidu
链接打开方式 在同一个选项卡中打开
高级
设置项 内容 编辑
自定义 CSS
.searchform select {
  width: 100px;
}
.searchform button {
  width: 100px;
}
.searchform {
  margin-top: 6%;
  background-color: rgba(231, 80, 73, 0.1) !important;
  border: 0px solid rgba(231, 80, 73, 0.3);
  border-radius: 7px;
  padding: 1px;
  box-shadow: none;
}
.searchform input {
  outline: none;
}
.searchform select {
  background-color: rgba(231, 80, 73, 0.1) !important;
 border-right: 0px solid rgba(231, 80, 73, 0.8) !important;
  outline-color: rgba(231, 80, 73);
}
button, input, optgroup, select, textarea {
  color: red;
}
.tooltip{
  pointer-events: none;
  background-color: rgba(231, 80, 73, 0.4) !important;
  margin-bottom: 15px;
}
#app {
  background-position: right;
}
#app #sortable,
#app main {
  padding: 20px;
}
#config-buttons {
  border: 0px solid rgba(231, 80, 73, 0.8);
  bottom: 50%;
  transform: translateY(50%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: rgba(231, 80, 73, 0.1) -1px 1px 1px 0, rgba(231, 80, 73, 0.1) 0 -1px 1px 0,
    rgba(0, 0, 0, 0.1) -1px 0 20px 5px;
  background-color: rgba(232, 216, 214, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#config-buttons a {
  background: none;
}
#config-buttons a svg {
  transition: all 0.1s ease-in-out;
  color: rgba(231, 80, 73, 0.5);
}
#config-buttons a:hover svg {
  transform: scale(1.1);
  color: red;
}

.black {
  color: red !important;
}
.white {
  color: red !important;
}

.item {
  box-shadow: rgba(0, 0, 0, 0.05) -1px -1px 5px 0, rgba(0, 0, 0, 0.15) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.01) 0px 10px 10px -5px !important;
  border-radius: 12px;
  background-image: none;
  border: 0px solid rgba(231, 80, 73, 0.3);
  outline: none;
  height: 100px;
  width: 300px;
  margin: 1.25rem;
  padding: 1rem 55px 1rem 1rem;
  transition: all 0.25s ease-in-out;
  transition-property: transform, box-shadow, background-color;
  background-color: rgba(232, 216, 214, 0.5) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.item:after {
  height: 100px;
  opacity: 0.35;
}
.item:hover {
  transform: scale(1.1);
  background-color: rgba(231, 80, 73, 0.3) !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 60px 40px -7px !important;
}
.item .svg-inline--fa {
  height: 100px;
  vertical-align: middle;
  opacity: 0.6;
}

@media only screen and (max-width: 750px) {
  .item {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #config-buttons {
    display: none;
  }
}

.details * {
  color: red !important;
}
.details {
  padding: 0 0.5rem;
}

.app-icon {
  filter: drop-shadow(1px 1px 2px rgba(10, 0, 20, 0.1));
}

.livestats-container {
  margin-top: 0.5rem;
}
.livestats-container .livestats .title {
  margin-bottom: 3px;
}
.livestats-container .livestats li {
  padding-right: 1rem;
}

.livestats-container strong {
  font-weight: 500 !important;
  padding: 0 2px;
}

.details > .title {
  font-weight: 800;
  font-size: 1.3rem !important;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
  text-shadow: rgba(10, 0, 60, 0.25) 1px 0 5px;
  text-shadow: -1px -1px 1px rgba(231, 80, 73, 0.1), 1px 1px 2px rgba(10, 0, 60, 0.25);
  transition: all 0.25s ease-in-out;
}
.item:hover .details > .title {
  text-shadow: -1px -1px 1px rgba(231, 80, 73, 0.1), 1px 1px 5px rgba(10, 0, 60, 0.2);
}
自定义 JavaScript
// 替换 ${hostname} 为当前路径 hostname
var hostname = location.hostname;
var alist = document.querySelectorAll("a");
for(a of alist){
	let url = a.href;
	if(url.indexOf('${hostname}') != -1){
		a.href = url.replace('${hostname}', hostname);
	}
}
if(document.getElementsByClassName('homesearch')[0]){
	document.getElementsByClassName('homesearch')[0].placeholder='';
}
if(document.getElementByName('provider')){
	document.getElementByName('provider').value="";
}