123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- html {
- height: 100%;
- }
- body {
- color: #c7c7c7;
- background-color: #161616;
- font-family: 'Anaheim';
- font-size: 2.2em;
- height: 100%;
- }
- a,
- a:hover,
- a:focus,
- .entry-content a,
- .entry-content a:hover,
- .entry-content a:focus
- {
- color: #f44;
- text-decoration: none;
- border-bottom: none;
- }
- .entry-content a:hover {
- border-bottom: 2px solid;
- }
- h2 {
- text-align: center;
- }
- h4 {
- font-size: 25px !important;
- }
- h1, h2, h3, h4, strong, tt {
- color: white;
- }
- .navbar {
- background-color: #e12b2b;
- }
- .navbar .navbar-brand,
- .navbar .navbar-nav > li > a {
- color: black;
- }
- .navbar .navbar-nav > li > a {
- transition: background-color .3s;
- background-color: #e12b2b;
- }
- .navbar .navbar-nav > .active > a,
- .navbar .navbar-nav > .active > a:hover,
- .navbar .navbar-nav > .active > a:focus {
- color: white;
- background-color: #161616;
- }
- .navbar .navbar-nav > li > a:hover,
- .navbar .navbar-nav > li > a:focus,
- .navbar .navbar-brand:hover,
- .navbar .navbar-brand:focus {
- color: black;
- background-color: #ff7456;
- }
- .navbar-brand {
- font-size: 21px;
- }
- .navbar-right li form {
- line-height: 21px;
- padding-top: 10px;
- padding-bottom: 10px;
- }
- #tipue_search_input {
- width: 2em !important;
- transition: all 0.5s;
- }
- #tipue_search_input:focus {
- width: 10em !important;
- }
- /* HOME {{{ */
- .body-index blockquote {
- border: 1px solid #383838;
- background-color: #272626;
- font-size: 21px;
- margin-left: auto;
- margin-right: auto;
- }
- .body-index h3 {
- text-align: center;
- font-size: 24px;
- }
- /* END HOME }}} */
- /* TALK {{{ */
- .talk-grid {
- table-layout: auto;
- width: 100%;
- border-collapse: collapse;
- text-align: center;
- }
- .talk-grid > thead th:first-child {
- max-width: 5em;
- }
- .talk-grid > thead th {
- text-align: center;
- }
- .talk-grid tr { height: 1.5em; }
- .rooms-4 .talk { width: 25%; }
- .rooms-3 .talk { width: 33%; }
- .rooms-2 .talk { width: 50%; }
- .rooms-1 .talk { width: 100%; }
- td.talk {
- border: 1px solid #444;
- padding: 4px;
- }
- td.talk > a {
- text-decoration: none;
- }
- .talk-grid tr { line-height: 1em; }
- .talk-grid tr:hover td:first-child {
- background-color: rgb(152, 14, 14);
- background-color: rgba(152, 14, 14, 0.79);
- }
- .talk-grid tr:hover td {
- background-color: rgb(60, 22, 22)
- }
- .talk-title a { font-size: 50%; }
- /* END TALK }}} */
|