snuviscript.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. table
  2. {
  3. margin-top: 10px;
  4. margin-bottom: 10px;
  5. width: 100%;
  6. table-layout: fixed;
  7. overflow-wrap: break-word;
  8. }
  9. .bold
  10. {
  11. font-weight: bold;
  12. text-align: right;
  13. }
  14. .command
  15. {
  16. font-weight: bold;
  17. width: 30%;
  18. text-align: left;
  19. color: #D0D0D0;
  20. }
  21. .desc
  22. {
  23. font-weight: bold;
  24. text-align: left;
  25. color: #D0D0D0;
  26. }
  27. table, th, td
  28. {
  29. border-width: 2px;
  30. border-color: #202020;
  31. border-style: solid;
  32. border-collapse: collapse;
  33. font-weight: normal;
  34. }
  35. td
  36. {
  37. background-color: #707070;
  38. padding: 5px;
  39. }
  40. th
  41. {
  42. background-color: #505050;
  43. padding: 5px;
  44. }
  45. .menu
  46. {
  47. background-color: #602020;
  48. margin-top: 10px;
  49. margin-bottom: 10px;
  50. padding: 5px;
  51. border-width: 2px;
  52. border-color: #202020;
  53. border-style: solid;
  54. }
  55. table a
  56. {
  57. text-decoration: none;
  58. color: #801010;
  59. }
  60. table a:hover
  61. {
  62. color: #700000;
  63. }
  64. .menu a
  65. {
  66. color: #FFFFFF;
  67. text-decoration: none;
  68. display: inline-block;
  69. padding-right: 6px;
  70. margin-right: 6px;
  71. border-right-width: 2px;
  72. border-right-color: #000000;
  73. border-right-style: solid;
  74. }
  75. .menu a:hover
  76. {
  77. color: #CCCCCC;
  78. }
  79. .title
  80. {
  81. background-color: #602020;
  82. padding-top: 8px;
  83. padding-bottom: 8px;
  84. text-align: center;
  85. color: #FFFFFF;
  86. border-width: 2px;
  87. border-color: #202020;
  88. border-style: solid;
  89. font-weight: bold;
  90. }
  91. section
  92. {
  93. margin-bottom: 50px;
  94. margin-left: auto;
  95. margin-right: auto;
  96. overflow: hidden;
  97. }
  98. @media(max-width: 788px)
  99. {
  100. .command
  101. {
  102. width: 40%;
  103. font-size: 14px;
  104. }
  105. td, th, .menu a
  106. {
  107. font-size: 12px;
  108. }
  109. }