hackit.css 3.1 KB

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