hackit.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. tt.literal {
  46. font-size: 80%;
  47. }
  48. .navbar {
  49. background-color: #EA8711;
  50. }
  51. .navbar .navbar-brand,
  52. .navbar .navbar-nav > li > a {
  53. color: black;
  54. }
  55. .navbar .navbar-nav > li > a {
  56. transition: background-color .3s;
  57. background-color: #ea8711;
  58. }
  59. .navbar .navbar-nav > .active > a,
  60. .navbar .navbar-nav > .active > a:hover,
  61. .navbar .navbar-nav > .active > a:focus {
  62. color: white;
  63. background-color: #161616;
  64. }
  65. .navbar .navbar-nav > li > a:hover,
  66. .navbar .navbar-nav > li > a:focus,
  67. .navbar .navbar-brand:hover,
  68. .navbar .navbar-brand:focus {
  69. color: black;
  70. background-color: #ff7456;
  71. }
  72. .navbar-brand {
  73. font-size: 21px;
  74. }
  75. .navbar-right li form {
  76. line-height: 21px;
  77. padding-top: 10px;
  78. padding-bottom: 10px;
  79. }
  80. #tipue_search_input {
  81. width: 2em !important;
  82. transition: all 0.5s;
  83. }
  84. #tipue_search_input:focus {
  85. width: 10em !important;
  86. }
  87. /* HOME {{{ */
  88. .body-index blockquote {
  89. border: 1px solid #383838;
  90. background-color: #272626;
  91. font-size: 21px;
  92. margin-left: auto;
  93. margin-right: auto;
  94. }
  95. .body-index h3 {
  96. text-align: center;
  97. font-size: 24px;
  98. }
  99. /* END HOME }}} */
  100. /* TALK {{{ */
  101. .talk-grid {
  102. table-layout: auto;
  103. width: 100%;
  104. border-collapse: collapse;
  105. text-align: center;
  106. }
  107. .talk-grid > thead th:first-child {
  108. max-width: 5em;
  109. }
  110. .talk-grid > thead th {
  111. text-align: center;
  112. }
  113. .talk-grid tr {
  114. height: 1.5em;
  115. }
  116. .rooms-4 .talk {
  117. width: 25%;
  118. }
  119. .rooms-3 .talk {
  120. width: 33%;
  121. }
  122. .rooms-2 .talk {
  123. width: 50%;
  124. }
  125. .rooms-1 .talk {
  126. width: 100%;
  127. }
  128. td.talk {
  129. border: 1px solid #444;
  130. padding: 4px;
  131. }
  132. td.talk > a {
  133. text-decoration: none;
  134. }
  135. .talk-grid tr {
  136. line-height: 1em;
  137. }
  138. .talk-grid tr:hover td:first-child {
  139. background-color: rgb(152, 14, 14);
  140. background-color: rgba(152, 14, 14, 0.79);
  141. }
  142. .talk-grid tr:hover td {
  143. background-color: rgb(60, 22, 22)
  144. }
  145. .talk-title a {
  146. font-size: 50%;
  147. }
  148. /* END TALK }}} */