2017-08-13 05:02:56 +00:00
|
|
|
/* archive/style.css */
|
2017-08-13 01:57:08 +00:00
|
|
|
|
|
|
|
/* Page style */
|
|
|
|
|
|
|
|
html {
|
|
|
|
overflow-y:scroll;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
html,body {
|
|
|
|
margin:0;padding:0;border:0;
|
|
|
|
font-family:"Segoe UI",Arial,sans-serif;
|
|
|
|
font-size:12px;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
a {
|
|
|
|
color: blue;
|
2017-08-13 04:41:34 +00:00
|
|
|
cursor: pointer;
|
2017-08-13 01:57:08 +00:00
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
ul {
|
|
|
|
margin:0;
|
|
|
|
padding-left:20px;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.mini-separator {
|
|
|
|
display: inline-block;
|
|
|
|
zoom: 1;
|
|
|
|
height: 16px;
|
|
|
|
width: 0px;
|
|
|
|
border-left: 1px solid darkgrey;
|
|
|
|
border-right: 1px solid #DDD;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
select {
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Layout */
|
|
|
|
|
|
|
|
.layout-top {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 22px;
|
2017-08-13 05:02:56 +00:00
|
|
|
padding: 3px;
|
|
|
|
margin-bottom: 8px;
|
2017-08-13 01:57:08 +00:00
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.layout-body {
|
|
|
|
margin-top:40px;
|
|
|
|
padding:3px;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.layout-pushdown {
|
|
|
|
position:relative;
|
|
|
|
top:3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Chat styling */
|
|
|
|
|
|
|
|
#chatarea {
|
|
|
|
word-break:break-word;
|
2017-12-10 01:05:45 +00:00
|
|
|
white-space: pre; /* Safari 1/2, IE 6/7 */
|
|
|
|
white-space: pre-wrap; /* Chrome, Firefox, IE8++ */
|
2017-08-13 01:57:08 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 05:02:56 +00:00
|
|
|
.timestamp {
|
|
|
|
color: #BBB;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat {
|
|
|
|
font-weight:bold;
|
|
|
|
color: darkblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sys {
|
|
|
|
font-style:italic;
|
|
|
|
color: darkgreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gt {
|
|
|
|
color:#0A0;
|
|
|
|
font-weight:bold;
|
|
|
|
}
|
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.line-highlighted {
|
|
|
|
background:lightyellow;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Toolbar styling */
|
|
|
|
|
2017-08-13 05:02:56 +00:00
|
|
|
.pad {
|
|
|
|
display:inline;
|
|
|
|
padding:0 8px;
|
|
|
|
}
|
2017-08-13 01:57:08 +00:00
|
|
|
|
|
|
|
.nav {
|
2017-08-13 05:02:56 +00:00
|
|
|
background: #DDD;
|
|
|
|
box-shadow: 0px 4px 24px #CCC;
|
2017-12-10 00:03:47 +00:00
|
|
|
|
|
|
|
font-size:0; /* remove phantom spaces between elements */
|
2017-08-13 05:02:56 +00:00
|
|
|
}
|
|
|
|
.nav form {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:37:33 +00:00
|
|
|
.nav a, .nav .current-page, .nav select {
|
2017-12-10 00:03:47 +00:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 12px;
|
|
|
|
}
|
|
|
|
|
2017-08-13 05:02:56 +00:00
|
|
|
.nav .btn {
|
|
|
|
background: white;
|
|
|
|
color:black;
|
|
|
|
border: 1px solid lightgrey;
|
|
|
|
padding: 0 6px;
|
|
|
|
text-decoration:none;
|
2017-08-13 01:57:08 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:44:33 +00:00
|
|
|
.nav a {
|
|
|
|
transition:all 0.1s linear;
|
|
|
|
}
|
|
|
|
|
2017-08-13 05:02:56 +00:00
|
|
|
.nav a:hover {
|
|
|
|
border-color: grey black black grey;
|
2017-12-10 00:44:33 +00:00
|
|
|
|
|
|
|
transition:all 0s linear;
|
2017-08-13 05:02:56 +00:00
|
|
|
}
|
2017-08-13 01:57:08 +00:00
|
|
|
|
|
|
|
.area-search {
|
|
|
|
float:right;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
#searchbox {
|
|
|
|
width:170px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
2017-12-09 23:19:07 +00:00
|
|
|
cursor:pointer;
|
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
display:inline-block;
|
|
|
|
width:16px;
|
|
|
|
height:16px;
|
|
|
|
margin-left:2px;
|
|
|
|
margin-right:4px;
|
|
|
|
}
|
|
|
|
|
2017-12-09 23:20:18 +00:00
|
|
|
/* Utility class */
|
|
|
|
|
|
|
|
.noselect {
|
|
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
|
|
-webkit-user-select: none; /* Safari */
|
|
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
|
|
-moz-user-select: none; /* Firefox */
|
|
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
|
|
user-select: none; /* Non-prefixed version, currently
|
|
|
|
supported by Chrome and Opera */
|
|
|
|
}
|
|
|
|
|
2017-08-13 04:41:34 +00:00
|
|
|
/* Dropdown */
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-12-09 23:20:18 +00:00
|
|
|
#menu-container {
|
|
|
|
display:none; /* default */
|
|
|
|
}
|
|
|
|
|
2017-08-13 04:41:34 +00:00
|
|
|
.ddmenu {
|
|
|
|
display:block;
|
|
|
|
position:absolute;
|
|
|
|
top:28px;
|
|
|
|
left:0px;
|
|
|
|
width:180px;
|
|
|
|
border-top:1px solid #999;
|
|
|
|
box-shadow: 0px 4px 24px #CCC;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 04:41:34 +00:00
|
|
|
.ddmenu a {
|
|
|
|
color:black;
|
|
|
|
display:inline-block;
|
|
|
|
border:1px solid #999;
|
|
|
|
border-top:0px;
|
|
|
|
width:170px;
|
|
|
|
padding:4px;
|
|
|
|
background:#EEE;
|
|
|
|
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 04:41:34 +00:00
|
|
|
.ddmenu a:hover {
|
|
|
|
background:#FFF;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 04:41:34 +00:00
|
|
|
#tr1 {
|
2017-08-13 05:02:56 +00:00
|
|
|
width:0px;
|
|
|
|
height:0px;
|
|
|
|
border-bottom:10px solid #999;
|
|
|
|
border-right:10px solid transparent;
|
|
|
|
border-left:10px solid transparent;
|
|
|
|
position:absolute;
|
|
|
|
top:18px;
|
|
|
|
left:3px;
|
|
|
|
z-index:1;
|
2017-08-13 04:41:34 +00:00
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 04:41:34 +00:00
|
|
|
#tr2 {
|
2017-08-13 05:02:56 +00:00
|
|
|
width:0px;
|
|
|
|
height:0px;
|
|
|
|
border-bottom:10px solid #EEE;
|
|
|
|
border-right:10px solid transparent;
|
|
|
|
border-left:10px solid transparent;
|
|
|
|
position:absolute;
|
|
|
|
top:19px;
|
|
|
|
left:3px;
|
|
|
|
z-index:3;
|
2017-08-13 04:41:34 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
/* Mobile view */
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
@media (max-width: 600px) {
|
2017-08-13 04:41:34 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.nav {
|
|
|
|
height: 55px;
|
|
|
|
text-align:center;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-12-10 00:37:33 +00:00
|
|
|
.nav a, .nav .current-page, .nav select {
|
2017-08-13 01:57:08 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height:16px;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.nav .btn {
|
|
|
|
padding: 2px 12px;
|
|
|
|
margin: 4px 0;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.pad {
|
|
|
|
display:block;
|
|
|
|
padding:0;
|
|
|
|
height:8px;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.layout-body {
|
|
|
|
margin-top:75px;
|
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
.mini-separator {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.area-search {
|
2017-12-10 00:03:47 +00:00
|
|
|
display:block;
|
2017-08-13 01:57:08 +00:00
|
|
|
float:none;
|
2017-12-10 00:03:47 +00:00
|
|
|
margin-top: 4px;
|
2017-08-13 01:57:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchbox {
|
|
|
|
width:auto;
|
|
|
|
}
|
2017-12-10 01:05:45 +00:00
|
|
|
|
|
|
|
ul.search-results {
|
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-results li a:first-child {
|
|
|
|
/* convert mini link to touchable */
|
|
|
|
display:inline-block;
|
|
|
|
padding: 2px 6px;
|
|
|
|
margin: 2px;
|
|
|
|
border: 1px solid grey;
|
|
|
|
background: lightgrey;
|
|
|
|
|
|
|
|
}
|
2017-08-13 01:57:08 +00:00
|
|
|
}
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
@media (max-width: 400px) {
|
2017-08-13 05:02:56 +00:00
|
|
|
|
2017-08-13 04:41:34 +00:00
|
|
|
.area-nav select {
|
|
|
|
max-width:60px;
|
|
|
|
}
|
|
|
|
|
2017-08-13 05:02:56 +00:00
|
|
|
.ts_split_d, .ts_split_s {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
2017-08-13 01:57:08 +00:00
|
|
|
}
|