37 lines
514 B
CSS
37 lines
514 B
CSS
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0px;
|
|
background: #111;
|
|
}
|
|
::-webkit-scrollbar-track
|
|
{
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
background-color: #ecf0f1;
|
|
}
|
|
|
|
::-webkit-scrollbar
|
|
{
|
|
width: 5px;
|
|
background-color: #ecf0f1;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb
|
|
{
|
|
background-color: #7f8c8d;
|
|
border-radius: 20px;
|
|
}
|
|
.content {
|
|
font-family: monospace;
|
|
padding: 30px;
|
|
color: #95a5a6;
|
|
}
|
|
.content p {
|
|
color: #7f8c8d;
|
|
}
|
|
strong {
|
|
font-size: 16px;
|
|
color: #95a5a6;
|
|
font-weight: bold;
|
|
}
|