style.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* Empty. Add your own CSS if you like */
  2. .pList-scroll{
  3.   position: absolute;
  4. top: 40px!important;
  5. bottom: 0;
  6. left: 0;
  7. right: 0;
  8. }
  9. ul{
  10. width: 90%;
  11. margin: 0 auto ;
  12. font-size: 10px;
  13. }
  14. ul:nth-child(3){
  15. height: 120px;
  16. }
  17. ul:nth-child(5){
  18. height: 150px;
  19. }
  20. ul:nth-child(7){
  21. height: 210px;
  22. }
  23. ul:nth-child(9){
  24. height: 150px;
  25. }
  26. li{
  27. text-align: center;
  28. border: 1px solid black;
  29. float: left;
  30. height: 16px;
  31. line-height: 16px;
  32. }
  33. li:nth-child(4n-3){
  34. font-weight: bold;
  35. width: 30%;
  36. }
  37. li:nth-child(4n-2){
  38. width: 30%;
  39. }
  40. li:nth-child(4n-1){
  41. font-weight: bold;
  42. width: 30%;
  43. }
  44. li:nth-child(4n){
  45. width: 10%;
  46. }
  47. .line{
  48. width: 90%;
  49. line-height: 23px;
  50. font-size: 18px;
  51. text-align: center;
  52. height: 23px;
  53. background: pink;
  54. border: 1px solid black;
  55. margin: 0 auto;
  56. float: left;
  57. margin-left: 5%;
  58. }