12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* Empty. Add your own CSS if you like */
- .pList-scroll{
- position: absolute;
- top: 40px!important;
- bottom: 0;
- left: 0;
- right: 0;
- }
-
- ul{
- width: 90%;
- margin: 0 auto ;
- font-size: 10px;
- }
- ul:nth-child(3){
- height: 120px;
- }
- ul:nth-child(5){
- height: 150px;
- }
- ul:nth-child(7){
- height: 210px;
- }
- ul:nth-child(9){
- height: 150px;
- }
- li{
- text-align: center;
- border: 1px solid black;
- float: left;
- height: 16px;
- line-height: 16px;
- }
- li:nth-child(4n-3){
- font-weight: bold;
- width: 30%;
- }
- li:nth-child(4n-2){
- width: 30%;
- }
- li:nth-child(4n-1){
- font-weight: bold;
- width: 30%;
- }
- li:nth-child(4n){
- width: 10%;
- }
- .line{
- width: 90%;
- line-height: 23px;
- font-size: 18px;
- text-align: center;
- height: 23px;
- background: pink;
- border: 1px solid black;
- margin: 0 auto;
- float: left;
- margin-left: 5%;
- }
|