hackit.css 2.6 KB

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