mirror of
https://github.com/xevidos/codiad.git
synced 2025-01-03 11:42:12 +01:00
60 lines
No EOL
1.1 KiB
CSS
60 lines
No EOL
1.1 KiB
CSS
/* WEBKIT SCROLLBARS */
|
|
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track-piece {
|
|
background-color: #333;
|
|
-webkit-border-radius: 0;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:vertical {
|
|
height: 5px;
|
|
background-color: #666;
|
|
-webkit-border-radius: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:vertical:hover {
|
|
background-color: #999;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:horizontal {
|
|
width: 5px;
|
|
background-color: #666;
|
|
-webkit-border-radius: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:horizontal:hover {
|
|
background-color: #999;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background-color: #2D2D2D;
|
|
}
|
|
|
|
/* DOCUMENT */
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #1a1a1a;
|
|
color: #fff;
|
|
font: normal 13px 'Ubuntu', sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
div {
|
|
scrollbar-base-color:#1a1a1a;
|
|
scrollbar-3d-light-color:#1a1a1a;
|
|
scrollbar-arrow-color:#303030;
|
|
scrollbar-darkshadow-color:#303030;
|
|
scrollbar-face-color:#1a1a1a;
|
|
scrollbar-highlight-color:#303030;
|
|
scrollbar-shadow-color:#303030;
|
|
scrollbar-track-color:#303030;
|
|
|
|
scrollbar-color: #666 #333;
|
|
scrollbar-width: thin;
|
|
} |