mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-11 22:43:04 +00:00
68 lines
1.1 KiB
CSS
68 lines
1.1 KiB
CSS
|
|
#Title {
|
|
height: auto;
|
|
min-height: 60px;
|
|
padding: 12px 25px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#Title div {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
word-wrap: break-word;
|
|
white-space: normal;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
#Content {
|
|
flex: 1;
|
|
height: auto;
|
|
}
|
|
|
|
.PolicyArea
|
|
{
|
|
background-color: #4A4A51;
|
|
}
|
|
|
|
#PolicyTxt
|
|
{
|
|
padding: 12px;
|
|
word-wrap:break-word;
|
|
overflow-y: auto;
|
|
min-height: 200px;
|
|
text-indent: 2em;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-color: #D7D7D7;
|
|
}
|
|
|
|
#PolicyTxt::-webkit-scrollbar {/*滚动条整体样式*/
|
|
width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
|
|
height: 1px;
|
|
}
|
|
|
|
#PolicyTxt::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
|
|
border-radius: 10px;
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
background-color: #AAAAAA;
|
|
}
|
|
|
|
#PolicyTxt::-webkit-scrollbar-track {/*滚动条里面轨道*/
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
border-radius: 10px;
|
|
background: #EDEDED;
|
|
}
|
|
|
|
#C_List li
|
|
{
|
|
margin-left: 4em;
|
|
}
|
|
|
|
p
|
|
{
|
|
text-indent:2em;
|
|
margin-bottom: 2px;
|
|
} |