- UID
- 178613
- 帖子
- 521
- 精华
- 0
- 贡献
- 0
- 推广
- 0
- 有效BUG
- 0
- 注册时间
- 2009-2-8
|
3#
发表于 2011-3-26 17:11
| 只看该作者
@namespace url(http://www.w3.org/1999/xhtml);
/*
Name: Night style
Version: 0.6 (06.04.2008)
Author: Nikita Vasilyev
Description: http://usercss.ru/styles/night/
http://usercss.com/styles/night/
*/
html {
background:#333 !important;
}
html * {
background: none !important;
color:#bbb !important;
border-color:#333 !important;
border-width:0 !important;
}
html a,
html a * {
color:#5c8599 !important;
text-decoration:underline !important
}
html a:visited,
html a:visited *,
html a:active,
html a:active * {
color:#525f66 !important
}
html a:hover,
html a:hover * {
color:#cef !important;
background:#023 !important;
}
html input,
html select,
html button,
html textarea {
background:#4d4c40 !important;
border: 1px solid #5c5a46 !important;
border-top-color: #474531 !important;
border-bottom-color: #7a7967 !important;
}
html input[type=button],
html input[type=submit],
html input[type=reset],
html input[type=image],
html button {
border-top-color: #7a7967 !important;
border-bottom-color: #474531 !important;
}
html input:focus,
html select:focus,
html option:focus,
html button:focus,
html textarea:focus {
background:#5c5b3e !important;
color:#fff !important;
border-color: #474100 #665d00 #7a7849 !important;
/*border-top-color: #5c5400 !important;*/
outline: 2px solid #041d29 !important;
}
html input[type=button]:focus,
html input[type=submit]:focus,
html input[type=reset]:focus,
html input[type=image]:focus,
html button:focus {
border-color: #7a7849 #665d00 #474100 !important;
}
html input[type=radio] {
background:none !important;
border-color:#333 !important;
border-width:0 !important;
}
html img[src],
html input[type=image] {opacity:.5}
html img[src]:hover,
html input[type=image]:hover {opacity:1}
html,
html body {
scrollbar-base-color: #4d4c40 !important;
scrollbar-face-color: #5c5b3e !important;
scrollbar-shadow-color: #5c5b3e !important;
scrollbar-highlight-color: #5c5b3e !important;
scrollbar-dlight-color: #5c5b3e !important;
scrollbar-darkshadow-color: #474531 !important;
scrollbar-track-color: #4d4c40 !important;
scrollbar-arrow-color: #000 !important;
scrollbar-3dlight-color: #7a7967 !important;
}
/* Link shadows */
/*
@media screen and (min-width: 128px) {
html a:hover,
html a:hover * {
background-color: #333 !important;
text-shadow: 0 0 1em #023 !important;
}
}
*/
/* Webkit */
@media all and (-webkit-min-device-pixel-ratio:0) {
html body * {
-webkit-transition: color 1s ease-in, background-color 2s ease-out !important;
}
html a,
html textarea,
html input,
html select {
-webkit-transition: color .4s ease-in, background-color .4s ease-out !important;
}
html img[src],
html input[type=image] {
-webkit-transition: opacity .4s ease-in !important;
}
html input:focus,
html select:focus,
html option:focus,
html button:focus,
html textarea:focus {
outline-style: outset !important;
}
}
/* Something ugly */
/*
html textarea,
html select,
html input {
scrollbar-base-color: #4d4c40 !important;
scrollbar-face-color: #4d4c40 !important;
scrollbar-shadow-color: #4d4c40 !important;
scrollbar-highlight-color: #474531 !important;
scrollbar-dlight-color: #7a7967 !important;
scrollbar-darkshadow-color: #7a7967 !important;
scrollbar-track-color: #4d4c40 !important;
scrollbar-arrow-color: #000 !important;
scrollbar-3dlight-color: #5c5a46 !important;
}
*/ |
|