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

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

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

html {
  scrollbar-color: rgb(213, 213, 213) #fff;
  scrollbar-color: var(--scrollbar-thumb) var(--background-body);
  scrollbar-width: thin;
}
input {
  transition:
    background-color 0.1s linear,
    border-color 0.1s linear,
    color 0.1s linear,
    box-shadow 0.1s linear,
    transform 0.1s ease;
  transition:
    background-color var(--animation-duration) linear,
    border-color var(--animation-duration) linear,
    color var(--animation-duration) linear,
    box-shadow var(--animation-duration) linear,
    transform var(--animation-duration) ease;
}