User:Irukaza/common.css:修订间差异

H萌娘,万物皆可H的百科全书!
跳到导航 跳到搜索
imported>=海豚=
无编辑摘要
imported>=海豚=
无编辑摘要
(未显示同一用户的1个中间版本)
第1行: 第1行:
html {
 
  scrollbar-color: rgb(213, 213, 213) #fff;
::-webkit-scrollbar {
  scrollbar-color: var(--scrollbar-thumb) var(--background-body);
  height: 10px;
   scrollbar-width: thin;
   width: 10px;
}
}
input {
 
   transition:
::-webkit-scrollbar-track {
   background-color 0.1s linear,
   background: #efefef;
   border-color 0.1s linear,
  background: var(--background);
   color 0.1s linear,
  border-radius: 6px;
   box-shadow 0.1s linear,
}
   transform 0.1s ease;
 
   transition:
  ::-webkit-scrollbar-track {
   background-color var(--animation-duration) linear,
  background: #161f27;
   border-color var(--animation-duration) linear,
   background: var(--background);
   color var(--animation-duration) linear,
}
   box-shadow var(--animation-duration) linear,
 
   transform var(--animation-duration) ease;
::-webkit-scrollbar-thumb {
  background: rgb(213, 213, 213);
  background: var(--scrollbar-thumb);
  border-radius: 6px;
}
 
 
 
 
::-webkit-scrollbar-thumb:hover {
  background: rgb(196, 196, 196);
  background: var(--scrollbar-thumb-hover);
}
}

2021年4月7日 (三) 20:21的版本

::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #efefef;
  background: var(--background);
  border-radius: 6px;
}

  ::-webkit-scrollbar-track {
  background: #161f27;
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: rgb(213, 213, 213);
  background: var(--scrollbar-thumb);
  border-radius: 6px;
}




::-webkit-scrollbar-thumb:hover {
  background: rgb(196, 196, 196);
  background: var(--scrollbar-thumb-hover);
}