snuviscript.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. body {
  2. background-color: #303030;
  3. }
  4. .textwall-container {
  5. text-align: justify;
  6. font-family: sans-serif;
  7. margin-left: 20%;
  8. margin-right: 20%;
  9. flex: 1;
  10. }
  11. @media only screen and (max-width: 1000px) {
  12. .textwall-container {
  13. margin-left: 2%;
  14. margin-right: 2%;
  15. }
  16. }
  17. #snuviscript table
  18. {
  19. margin-top: 10px;
  20. margin-bottom: 10px;
  21. width: 100%;
  22. table-layout: fixed;
  23. overflow-wrap: break-word;
  24. }
  25. .bold
  26. {
  27. font-weight: bold !important;
  28. text-align: right;
  29. }
  30. .command
  31. {
  32. font-weight: bold !important;
  33. width: 30%;
  34. text-align: left;
  35. color: #D0D0D0;
  36. }
  37. .desc
  38. {
  39. font-weight: bold !important;
  40. text-align: left;
  41. color: #D0D0D0;
  42. }
  43. #snuviscript table, #snuviscript th, #snuviscript td
  44. {
  45. border-width: 2px;
  46. border-color: #202020;
  47. border-style: solid;
  48. border-collapse: collapse;
  49. font-weight: normal;
  50. font-family: "Montserrat", sans-serif;
  51. }
  52. #snuviscript td
  53. {
  54. background-color: #707070;
  55. padding: 5px;
  56. }
  57. #snuviscript th
  58. {
  59. background-color: #505050;
  60. padding: 5px;
  61. }
  62. .menu
  63. {
  64. background-color: #602020;
  65. margin-top: 10px;
  66. margin-bottom: 10px;
  67. padding: 5px;
  68. border-width: 2px;
  69. border-color: #202020;
  70. border-style: solid;
  71. font-family: "Montserrat", sans-serif;
  72. }
  73. #snuviscript table a
  74. {
  75. text-decoration: none;
  76. color: #801010;
  77. }
  78. #snuviscript table a:hover
  79. {
  80. color: #700000;
  81. }
  82. .menu a
  83. {
  84. color: #FFFFFF;
  85. text-decoration: none;
  86. display: inline-block;
  87. }
  88. .whitePipe
  89. {
  90. padding-right: 8px;
  91. margin-right: 8px;
  92. border-right-width: 1px;
  93. border-right-color: #FFFFFF;
  94. border-right-style: solid;
  95. }
  96. .menu a:hover
  97. {
  98. color: #CCCCCC;
  99. }
  100. .snuviTitle
  101. {
  102. background-color: #602020;
  103. padding-top: 8px;
  104. padding-bottom: 8px;
  105. text-align: center;
  106. color: #FFFFFF;
  107. border-width: 2px;
  108. border-color: #202020;
  109. border-style: solid;
  110. font-weight: bold;
  111. font-family: "Montserrat", sans-serif;
  112. }
  113. #snuviscript section
  114. {
  115. margin-bottom: 50px;
  116. margin-left: auto;
  117. margin-right: auto;
  118. overflow: hidden;
  119. }
  120. @media(max-width: 788px)
  121. {
  122. .command
  123. {
  124. width: 40%;
  125. font-size: 14px;
  126. }
  127. #snuviscript td, #snuviscript th, .menu a
  128. {
  129. font-size: 12px;
  130. }
  131. }