hackit.css 2.8 KB

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