body { background-color:#B8860B; /网页主体背景色/
background-size:cover;
-moz-background-size:cover;
-webkit-background-size:cover;
text-align:center;/网页整体居中/
color: #000000;/默认字体颜色/
/font: 17px Trebuchet MS, Tahoma;(字体大小,删除前后缀及此括号生效)*/
overflow-wrap: break-word;
margin: 10px;
}
text-align: center;/框内整体居中/
margin: auto;
padding: 10px 5px;
background: #DEB887;/框内颜色/
border-radius: 12px;
box-shadow: 5px 3px 16px #111;
}
ul.file_list {
margin:1px;
padding;1px;
}
.file_list li {
background-color : #F5F5DC;/文件列表背景色/
margin-top : 1px;
margin-bottom : 1px;
padding : 2px;
border : 1px solid #323232;
text-align: left;
font: 15px Trebuchet MS, Tahoma;
display: block;
}
//.file_list a{
display:block;padding:5px;margin:2px 1px;line-height:1.3em;height:2.6em;;border-radius:2px;word-wrap:break-word;word-break:break-all;border:1px solid ;box-shadow:0px 1px 5px ;overflow:hidden;
}
.file_list li:nth-of-type(odd){
background:#ccc;
/奇数行背景色/
}
.file_list li:nth-of-type(even){
background:grey;
/偶数行背景色/
}
.file_list li:nth-of-type(odd) a{
color:#333;
/奇数行链接文字颜色/
}
.file_list li:nth-of-type(even) a{
color:#fff;
/偶数行链接文字颜色/
}//
.file_list{
counter-reset: xws;
}
.file_list li{
counter-increment: xws;
margin: 4px auto;
}
.file_list li:before{
content: counter(xws);
background: red;
color: yellow;
padding: 2px 4px;
font:1.2em bold italic;
border-radius:.8em;