Files
uTools-Manuals/assets/style.css
fofolee 7ca94f1141 0.0.1
2019-04-08 23:22:26 +08:00

88 lines
1.4 KiB
CSS

#mainlist {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
#mainlist .info {
background: #f5f5f533;
cursor: pointer;
height: 50px;
}
#mainlist .name {
padding-top: 10px;
font-family: "consolas";
}
#mainlist .type {
float: right;
margin: 15px 10px;
height: 20px;
color: #666666
}
#mainlist .description {
color: #888888;
font-size: small;
font-family: "consolas";
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
#mainlist .index {
float: left;
margin: 15px 10px;
height: 20px;
font-size: 20px;
font-weight: bold;
font-family: "courier new",;
color: #2196F3;
text-shadow: 1px 1px black;
}
#mainlist .select{
background: #ebebeb;
}
#content {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
display: none;
overflow: auto;
}
.founds {
background-color: #ff572236;
color: #fd4005;
border-radius: 4px;
}
.firstFound{
box-shadow: 0px 0px 5px 1px #FF5722;
}
::-webkit-scrollbar
{
width: 7px;
height: 5px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-track
{
box-shadow:inset 0 0 6px rgba(0, 0, 0, 0.2);
border-radius:5px;
background-color:#F5F5F5;
}
::-webkit-scrollbar-thumb
{
border-radius:5px;
box-shadow:inset 0 0 6px rgba(0,0,0,.3);
background-color:#959da5;
}