hackit.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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. /* ci sono due selettori diversi perche' quando genera da markdown e da restructuredtext fa due output un po'
  49. * diversi */
  50. #content .entry-content > h2,
  51. #content .entry-content > .section:first-child>h2
  52. {
  53. background-color: white;
  54. padding: 1em 0;
  55. color: black;
  56. margin-bottom: 1em;
  57. left: 0;
  58. font-size: 200%;
  59. text-align: center;
  60. position: relative;
  61. width: 100vw;
  62. transform: translate(-8%,0);
  63. }
  64. h4 {
  65. font-size: 25px !important;
  66. }
  67. a.toc-backref,
  68. h1,
  69. h2,
  70. h3,
  71. h4,
  72. strong,
  73. tt {
  74. background: #fff;
  75. padding: 6px 10px;
  76. font-weight: 600;
  77. color: #9c2f2f;
  78. border-bottom; 0px;
  79. }
  80. a.toc-backref,
  81. h1,
  82. h2,
  83. h3,
  84. h4,
  85. tt {
  86. display: inline-block;
  87. }
  88. a.toc-backref:hover {
  89. color: rgba(0,0,0,1);
  90. }
  91. tt.literal {
  92. font-size: 80%;
  93. }
  94. .navbar-brand {
  95. display: none;
  96. }
  97. .navbar {
  98. background-color: #000;
  99. }
  100. .navbar .navbar-brand,
  101. .navbar .navbar-nav > li > a {
  102. color: #fff;
  103. }
  104. .navbar .navbar-nav > li > a {
  105. transition: background-color .3s;
  106. background-color: #000;
  107. }
  108. .navbar .navbar-nav > .active > a,
  109. .navbar .navbar-nav > .active > a:hover,
  110. .navbar .navbar-nav > .active > a:focus {
  111. color: #333;
  112. background-color: white;
  113. }
  114. .navbar .navbar-nav > li > a:hover,
  115. .navbar .navbar-nav > li > a:focus,
  116. .navbar .navbar-brand:hover,
  117. .navbar .navbar-brand:focus {
  118. color: white;
  119. background-color: #333;
  120. }
  121. .navbar-brand {
  122. font-size: 21px;
  123. }
  124. .navbar-right li form {
  125. line-height: 21px;
  126. padding-top: 10px;
  127. padding-bottom: 10px;
  128. }
  129. #tipue_search_input {
  130. width: 2em !important;
  131. transition: all 0.5s;
  132. }
  133. #tipue_search_input:focus {
  134. width: 10em !important;
  135. }
  136. /* HOME {{{ */
  137. .body-index blockquote {
  138. font-size: 21px;
  139. margin-left: auto;
  140. margin-right: auto;
  141. }
  142. .body-index h3 {
  143. text-align: center;
  144. font-size: 24px;
  145. }
  146. /* END HOME }}} */
  147. {
  148. position:relative;
  149. width:100%;
  150. }
  151. /* TALK {{{ */
  152. .talk-grid {
  153. table-layout: auto;
  154. width: 100%;
  155. border-collapse: collapse;
  156. text-align: center;
  157. }
  158. .talk-grid > thead th:first-child {
  159. max-width: 5em;
  160. }
  161. .talk-grid > thead th {
  162. text-align: center;
  163. }
  164. .talk-grid tr {
  165. height: 1.5em;
  166. }
  167. .rooms-4 .talk {
  168. width: 25%;
  169. }
  170. .rooms-3 .talk {
  171. width: 33%;
  172. }
  173. .rooms-2 .talk {
  174. width: 50%;
  175. }
  176. .rooms-1 .talk {
  177. width: 100%;
  178. }
  179. td.talk {
  180. border: 1px solid #444;
  181. padding: 4px;
  182. }
  183. td.talk > a {
  184. text-decoration: none;
  185. }
  186. .talk-grid tr {
  187. line-height: 1em;
  188. }
  189. .talk-grid tr:hover td:first-child {
  190. background-color: rgb(152, 14, 14);
  191. background-color: rgba(152, 14, 14, 0.79);
  192. }
  193. .talk-grid tr:hover td {
  194. background-color: rgb(60, 22, 22)
  195. }
  196. .talk-title a {
  197. font-size: 50%;
  198. }
  199. /* END TALK }}} */
  200. /*media query*/
  201. @media all and (min-width: 770px) {
  202. .navbar, .navbar .navbar-brand,
  203. .navbar .navbar-nav > li > a {
  204. background-color: #9c2f2f;
  205. }
  206. }