hackit.css 2.3 KB

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