theme.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. html, body {
  2. font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;
  3. /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
  4. font-size: 1.1rem;
  5. padding: 3rem;
  6. background-color: #222 !important;
  7. /* color: #fff; */
  8. }
  9. body {
  10. padding: 1rem;
  11. background-color: #444;
  12. border-radius: 1rem;
  13. }
  14. h1, h2, h3, h4 {
  15. /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
  16. /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
  17. /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
  18. font-family: Verdana, Geneva, Tahoma, sans-serif;
  19. font-weight: bold;
  20. }
  21. h4 {
  22. font-size: 1.2em;
  23. }
  24. a {
  25. color: orange;
  26. transition: color .5s;
  27. }
  28. a:hover {
  29. color: orangered;
  30. text-decoration: none;
  31. }
  32. table td {
  33. padding-left: 0.5em;
  34. padding-right: 0.5em;
  35. border-right : 1px solid #555;
  36. }
  37. table tr {
  38. border-left: 2px solid transparent;
  39. }
  40. table tr:nth-child(even) {
  41. background-color: #333;
  42. }
  43. table tr:hover {
  44. border-left: 2px solid orangered;
  45. }
  46. blockquote {
  47. color: rgba(255, 255, 255, 0.7);
  48. border-radius: 0 15px 15px 0;
  49. padding: 1em;
  50. border-left: .4em solid #555;
  51. background-color: rgba(0, 0, 0, 0.4);
  52. }
  53. blockquote p {
  54. margin: 0;
  55. }
  56. #header {
  57. border-radius: 1rem;
  58. padding: 1em;
  59. background-color: rgba(0, 0, 0, 0.4);
  60. }
  61. #header h2 {
  62. margin: 0;
  63. }
  64. code {
  65. color: white;
  66. font-weight: bold;
  67. }
  68. .nav-link {
  69. /* background-color: orangered; */
  70. font-weight: bold;
  71. /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
  72. }
  73. .btn {
  74. color: black !important;
  75. background-color: red;
  76. }
  77. .btn:hover {
  78. color: white !important;
  79. }
  80. .nav-active, .nav-active:hover {
  81. background-color: black;
  82. color: red !important;
  83. }
  84. @media (max-width: 480px) {
  85. html {
  86. padding: 0;
  87. }
  88. body {
  89. padding: 1rem;
  90. font-size: 0.8rem;
  91. }
  92. #header {
  93. padding:
  94. }
  95. #header h1, #header h2{
  96. font-size: 1.3em;
  97. }
  98. }
  99. img {
  100. max-width: 100%;
  101. }
  102. /* VINZ HEADER */
  103. /* .scrolltext_container{
  104. margin: 0 auto;
  105. width: max-content;
  106. }
  107. .scrolltext_letter {
  108. font-family: Verdana, Geneva, Tahoma, sans-serif;
  109. font-size: 2.5rem;
  110. font-weight: bold;
  111. display: block;
  112. float: left;
  113. text-align: center;
  114. position: relative;
  115. z-index: 0;
  116. } */
  117. #bannerone {
  118. position: fixed;
  119. transform: rotate(5deg);
  120. font-size: 30px;
  121. font-weight: bold;
  122. font-family: Helvetica, sans-serif;
  123. color: white;
  124. width: 110%;
  125. text-shadow: 2px 5px 5px black;
  126. padding: 30px;
  127. line-height: 28px;
  128. padding-right: 30px;
  129. text-align: center;
  130. overflow: hidden;
  131. left: -10px;
  132. top: 165px;
  133. box-shadow: 1px 1px 25px white;
  134. background-color: orangered;
  135. transition: background-color 1s;
  136. z-index: 1;
  137. }
  138. #bannerone span {
  139. display: block;
  140. font-size: 14px;
  141. font-weight: normal;
  142. box-shadow: 0px;
  143. text-shadow: none;
  144. color: black;
  145. }
  146. #hackit_banner {
  147. position: fixed;
  148. transform: rotate(45deg);
  149. font-size: 18px;
  150. font-weight: bold;
  151. font-family: Helvetica, sans-serif;
  152. color: black;
  153. width: 200px;
  154. line-height: 25px;
  155. text-align: center;
  156. overflow: hidden;
  157. top: 25px;
  158. box-shadow: 1px 1px 25px rgba(233, 6, 229, .8);
  159. background-color: red;
  160. right: -50px;
  161. transition: background-color 1s;
  162. }
  163. @keyframes pulse {
  164. 0% { background-color: red; }
  165. 50% { background-color: white; }
  166. 100% { background-color: red; }
  167. }
  168. #hackit_banner:hover {
  169. text-decoration: none;
  170. animation-name: pulse;
  171. animation-duration: 1s;
  172. animation-iteration-count: infinite;
  173. }