hackit.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. color: #c7c7c7;
  6. background-color: #161616;
  7. font-family: 'Anaheim';
  8. font-size: 2.2em;
  9. height: 100%;
  10. background-image: -moz-linear-gradient(0deg, transparent 1px, #161616 1px), -moz-linear-gradient(-90deg, #6c6 1px, #161616 1px);
  11. background-size: 10px 10px;
  12. background-position: 5px 5px;
  13. }
  14. .navbar::after, .navbar-collapse::after, .container::after{
  15. clear:none !important
  16. }
  17. ul, p {background-color: rgba(16,16,16,0.5);}
  18. a,
  19. a:hover,
  20. a:focus,
  21. .entry-content a,
  22. .entry-content a:hover,
  23. .entry-content a:focus {
  24. color: #ea8711;
  25. text-decoration: none;
  26. border-bottom: none;
  27. }
  28. .entry-content a:hover {
  29. border-bottom: 2px solid;
  30. }
  31. h2 {
  32. text-align: center;
  33. }
  34. h4 {
  35. font-size: 25px !important;
  36. }
  37. h1,
  38. h2,
  39. h3,
  40. h4,
  41. strong,
  42. tt {
  43. color: white;
  44. }
  45. .navbar {
  46. background-color: #EA8711;
  47. }
  48. .navbar .navbar-brand,
  49. .navbar .navbar-nav > li > a {
  50. color: black;
  51. }
  52. .navbar .navbar-nav > li > a {
  53. transition: background-color .3s;
  54. background-color: #ea8711;
  55. }
  56. .navbar .navbar-nav > .active > a,
  57. .navbar .navbar-nav > .active > a:hover,
  58. .navbar .navbar-nav > .active > a:focus {
  59. color: white;
  60. background-color: #161616;
  61. }
  62. .navbar .navbar-nav > li > a:hover,
  63. .navbar .navbar-nav > li > a:focus,
  64. .navbar .navbar-brand:hover,
  65. .navbar .navbar-brand:focus {
  66. color: black;
  67. background-color: #ff7456;
  68. }
  69. .navbar-brand {
  70. font-size: 21px;
  71. }
  72. .navbar-right li form {
  73. line-height: 21px;
  74. padding-top: 10px;
  75. padding-bottom: 10px;
  76. }
  77. #tipue_search_input {
  78. width: 2em !important;
  79. transition: all 0.5s;
  80. }
  81. #tipue_search_input:focus {
  82. width: 10em !important;
  83. }
  84. /* HOME {{{ */
  85. .body-index blockquote {
  86. border: 1px solid #383838;
  87. background-color: #272626;
  88. font-size: 21px;
  89. margin-left: auto;
  90. margin-right: auto;
  91. }
  92. .body-index h3 {
  93. text-align: center;
  94. font-size: 24px;
  95. }
  96. /* END HOME }}} */
  97. /* TALK {{{ */
  98. .talk-grid {
  99. table-layout: auto;
  100. width: 100%;
  101. border-collapse: collapse;
  102. text-align: center;
  103. }
  104. .talk-grid > thead th:first-child {
  105. max-width: 5em;
  106. }
  107. .talk-grid > thead th {
  108. text-align: center;
  109. }
  110. .talk-grid tr {
  111. height: 1.5em;
  112. }
  113. .rooms-4 .talk {
  114. width: 25%;
  115. }
  116. .rooms-3 .talk {
  117. width: 33%;
  118. }
  119. .rooms-2 .talk {
  120. width: 50%;
  121. }
  122. .rooms-1 .talk {
  123. width: 100%;
  124. }
  125. td.talk {
  126. border: 1px solid #444;
  127. padding: 4px;
  128. }
  129. td.talk > a {
  130. text-decoration: none;
  131. }
  132. .talk-grid tr {
  133. line-height: 1em;
  134. }
  135. .talk-grid tr:hover td:first-child {
  136. background-color: rgb(152, 14, 14);
  137. background-color: rgba(152, 14, 14, 0.79);
  138. }
  139. .talk-grid tr:hover td {
  140. background-color: rgb(60, 22, 22)
  141. }
  142. .talk-title a {
  143. font-size: 50%;
  144. }
  145. /* END TALK }}} */