mirror of
https://github.com/Mistake35/Cedar-Django.git
synced 2026-07-18 00:21:14 +10:00
- Added list_filter in admin.py for more models. - IP bans now work when not signed in - Invites are void if you are banned or disabled. - Removed Discord video support (it was a pointless feature) - Various HTML changes - Made the theme much darker. - Changed the color of the logo and favicon. Too lazy to change the rest of the assets for now.
9599 lines
242 KiB
CSS
9599 lines
242 KiB
CSS
@charset 'UTF-8';
|
|
@font-face {
|
|
font-family: 'MiiverseSymbols';
|
|
src: url('img/font/Symbols.eot');
|
|
src: url('img/font/Symbols-IEFix.eot') format('embedded-opentype'), url('img/font/Symbols.woff') format('woff'), url('img/font/Symbols.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'MiiverseSymbols';
|
|
src: url('img/font/Symbols.eot');
|
|
src: url('img/font/Symbols-IEFix.eot') format('embedded-opentype'), url('img/font/Symbols.woff') format('woff'), url('img/font/Symbols.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
/* Clarification: I put this here because without it the layout would shift on my Mac. Sorry. */
|
|
html.os-mac::-webkit-scrollbar {
|
|
display: none !important;
|
|
}
|
|
body.modal-open { position: fixed; }
|
|
body {
|
|
position: relative;
|
|
font-size: 28px;
|
|
font-family: sans-serif;
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #323232;
|
|
}
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
ul,
|
|
ol,
|
|
menu,
|
|
li,
|
|
table,
|
|
tr,
|
|
th,
|
|
td {
|
|
font-size: 100%;
|
|
font-weight: normal;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
img#Preview {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
input,
|
|
textarea {
|
|
font-size: 24px;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
}
|
|
ul,
|
|
ol,
|
|
menu,
|
|
li {
|
|
list-style: none;
|
|
}
|
|
a {
|
|
color: var(--theme, #0070ff);
|
|
text-decoration: none;
|
|
}
|
|
img {
|
|
border: 0;
|
|
color: #ddd;
|
|
max-width: 100%;
|
|
}
|
|
.adx img {
|
|
max-height: 250px;
|
|
}
|
|
input,
|
|
label,
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
.auth-input {
|
|
border-radius: 5px;
|
|
font-size: 20px;
|
|
width: 175px;
|
|
}
|
|
.none {
|
|
display: none !important;
|
|
}
|
|
.left {
|
|
float: left;
|
|
}
|
|
.right {
|
|
float: right;
|
|
}
|
|
.tleft {
|
|
text-align: left;
|
|
}
|
|
.tright {
|
|
text-align: right;
|
|
}
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
.center-input {
|
|
margin-top: -5px;
|
|
margin-bottom: 8px;
|
|
}
|
|
input.disabled {
|
|
color: #969595 !important;
|
|
cursor: default !important;
|
|
}
|
|
.center-input input {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
width: 96%;
|
|
padding: 1.5%;
|
|
border: 1px solid #969696;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
-moz-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
-ms-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
-o-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
}
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
.pointer-events-none {
|
|
pointer-events: none;
|
|
}
|
|
.trigger {
|
|
cursor: pointer;
|
|
}
|
|
.pre-line {
|
|
white-space: pre-line;
|
|
}
|
|
.red {
|
|
color: red;
|
|
}
|
|
.green {
|
|
color: green !important;
|
|
}
|
|
.warning-reason {
|
|
margin-top: 6px;
|
|
}
|
|
.warning-note {
|
|
margin-top: 6px;
|
|
}
|
|
body {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
background-attachment: fixed;
|
|
-webkit-background-size: 120px;
|
|
-moz-background-size: 120px;
|
|
-ms-background-size: 120px;
|
|
-o-background-size: 120px;
|
|
background-size: 120px;
|
|
-webkit-text-size-adjust: 100%;
|
|
-moz-text-size-adjust: 100%;
|
|
-ms-text-size-adjust: 100%;
|
|
-o-text-size-adjust: 100%;
|
|
text-size-adjust: 100%;
|
|
word-wrap: break-word;
|
|
background: #e2e2e2;
|
|
}
|
|
.trigger:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.trigger:active {
|
|
background-color: #dddddd;
|
|
}
|
|
.trigger a:link:hover,
|
|
.trigger a:visited:hover,
|
|
.trigger button.report-violation-button:hover {
|
|
text-decoration: underline;
|
|
}
|
|
html body {
|
|
font-family: 'Helvetica', 'Arial', sans-serif;
|
|
}
|
|
html.os-win body {
|
|
font-family: 'Helvetica', 'Arial', 'Meiryo', '\30E1 \30A4 \30EA \30AA ', sans-serif;
|
|
}
|
|
html.os-mac body {
|
|
font-family: 'Helvetica', 'Arial', '\30D2 \30E9 \30AE \30CE \89D2 \30B4 Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
|
|
}
|
|
html.os-win form input,
|
|
html.os-win button {
|
|
font-family: 'Helvetica', 'Arial', 'Meiryo', '\30E1 \30A4 \30EA \30AA ', sans-serif;
|
|
}
|
|
.symbol:before {
|
|
font-family: 'MiiverseSymbols', sans-serif !important;
|
|
font-weight: normal!important;
|
|
}
|
|
.symbol span.symbol-label {
|
|
display: none;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
*margin-right: 3px;
|
|
}
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
#wrapper {
|
|
height: auto !important;
|
|
min-height: 100%;
|
|
position: relative;
|
|
width: 100%;
|
|
min-width: 320px;
|
|
margin: auto 0;
|
|
text-align: left;
|
|
background: var(--theme, #eee) var(--background, url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAIAAAC2BqGFAAADF0lEQVR4nO2dwW7bMBAFuRLz/5+bgyWyhwUE13ELtN43EIE3pyQHZj1YUoRMPcX393fT8Hg8zvOcc4rGryUi9n3/+voSjb+Jxm2tbdsWEbrxa4mIbVPa0A1tnrFoCIuGsGgIi4awaAiLhrBoCIuGsGgIi4awaAiLhrBoCIuGsGgIi4awaAiLhrBoCKHoOecqX4E3fbUS0RGxluUkaxZ9c6/q6DnnGEM0uIgxhq456kVnO+fRmYWaOqvNshVNXS96znkcx0JnlC5S9HEcisorRWcjnOd5nmfhsDBX/bV93UtGyZrGGFnl20XjqvsO58Su8l7qzF+zqfd9z0NiJQ1eIzovI1cv/KwsK87zbTcRnTVHxMtF+8V1RJQU3B+Px4eH+66i2zvFWeW2bYVFl/B89Wu/V54/jzHGGCXNMcbo53l+uA/70zRsraXZfd9rp2EJ1ySLiLcTMS1nG30oes7ZdZuw/Ay99+zl+yhOsp7s1og4jqP9Ycn++ff/QHuvI3u53amRX8jCrjp1qETnitF7v8+i/BeeZ57oX6judaToG64Yb8nth/Ryrerom2zj/gnp0xXCpWOVdk6yqZdcOhQjq1lv6TAvWDSERUNYNIRFQ1g0hEVDWDSERUNYNIRFQ1g0hEVDWDSERUNYNIRFQ1g0hEVDWDSERUNYNIRFQ1g0hEVDWDSERUNYNIRFQ1g0hEVDWDSERUNYNIRFQ1g0hEVDWDSERUNYNIRFQ1g0hEVDSESvFS34jK5yYWSmLudTgTpPVSVamvMpQpqnKlw6dDmf5QB5qsKlQ5fzWQ6Qp6rddYhyPgvB8lT755krfM5nCWSe6pyzXwo+GQXO+SyBzFMdY/SSd7uTOZ8lwHmq+77XpO2SOZ8l8HmqNaLhnE8dujzVyl0HlvMpRZSnKnmZgjrnU4Q0T1XyMgV1zqcCdZ6qMDJTl/MpQrojUt3rWKudE2meqrDp1nKtrnax2b0uFg1h0RAWDWHREBYNYdEQFg1h0RAWDWHREBYNYdEQFg1h0RAWDWHREBYNYdEQFg0hFL3W0xXS5ypaa78A+zg9ngAQ62UAAAAASUVORK5CYII='));
|
|
background-attachment: fixed;
|
|
}
|
|
#sub-body {
|
|
top: 0;
|
|
width: 100%;
|
|
height: 54px;
|
|
position: fixed;
|
|
z-index: 20;
|
|
background: #fff;
|
|
border-bottom: 2px solid #e5e5e5;
|
|
}
|
|
#global-menu {
|
|
max-width: 950px;
|
|
margin: 0 auto;
|
|
*zoom: 1;
|
|
}
|
|
#global-menu:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#main-body {
|
|
padding: 71px 0 170px !important;
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
*zoom: 1;
|
|
}
|
|
#main-body:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.main-column {
|
|
width: 625px;
|
|
margin: 0 auto;
|
|
}
|
|
#sidebar + .main-column {
|
|
float: right;
|
|
}
|
|
#sidebar {
|
|
width: 320px;
|
|
float: left;
|
|
}
|
|
.post-list-outline {
|
|
margin: 0 0 15px 0;
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
*zoom: 1;
|
|
}
|
|
.post-list-outline:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.post-list-outline + .big-button,
|
|
.post-list-outline + .buttons-content {
|
|
margin-bottom: 30px;
|
|
}
|
|
#footer {
|
|
background: #e2e2e2;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
#wrapper.post-permlink #footer {
|
|
position: bottom !important;
|
|
}
|
|
#wrapper.guest #footer {
|
|
bottom: -60px !important;
|
|
}
|
|
#wrapper.guest-top #footer {
|
|
bottom: -60px !important;
|
|
}
|
|
#footer-inner {
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
padding: 30px 0;
|
|
*zoom: 1;
|
|
}
|
|
#footer-inner:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#footer-inner p {
|
|
display: inline-block;
|
|
padding: 0 5px;
|
|
}
|
|
#footer-inner p a {
|
|
color: #969696;
|
|
font-size: 12px;
|
|
}
|
|
#footer-inner p a:hover {
|
|
color: #646464;
|
|
text-decoration: underline;
|
|
}
|
|
#footer-inner #copyright {
|
|
display: block;
|
|
}
|
|
.link-container {
|
|
text-align: center;
|
|
}
|
|
.link-container p {
|
|
display: inline-block;
|
|
padding: 0 5px;
|
|
}
|
|
.link-container p a {
|
|
color: #969696;
|
|
font-size: 12px;
|
|
}
|
|
.link-container p a:hover {
|
|
color: #646464;
|
|
text-decoration: underline;
|
|
}
|
|
.list > li span {
|
|
padding: 5px !important;
|
|
}
|
|
.post-list.empty,
|
|
.album-list.empty,
|
|
.list > .no-content,
|
|
.no-content {
|
|
color: #969696;
|
|
font-size: 16px;
|
|
display: table;
|
|
width: 100%;
|
|
height: 250px;
|
|
padding: 0;
|
|
}
|
|
.post-list.empty > div,
|
|
.album-list.empty > div,
|
|
.list > .no-content > div,
|
|
.no-content > div,
|
|
.post-list.empty > p,
|
|
.album-list.empty > p,
|
|
.list > .no-content > p,
|
|
.no-content > p {
|
|
display: table-cell;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
padding: 0 30px;
|
|
text-align: center;
|
|
}
|
|
.post-list.empty > div p,
|
|
.album-list.empty > div p,
|
|
.list > .no-content > div p,
|
|
.no-content > div p {
|
|
padding: 0;
|
|
display: block;
|
|
}
|
|
.post-list.empty.no-content-favorites,
|
|
.album-list.empty.no-content-favorites,
|
|
.list > .no-content.no-content-favorites,
|
|
.no-content.no-content-favorites {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
position: relative;
|
|
height: auto;
|
|
}
|
|
.post-list.empty.no-content-favorites > div,
|
|
.album-list.empty.no-content-favorites > div,
|
|
.list > .no-content.no-content-favorites > div,
|
|
.no-content.no-content-favorites > div {
|
|
padding: 20px 70px 20px 20px;
|
|
}
|
|
.post-list.empty.no-content-favorites p,
|
|
.album-list.empty.no-content-favorites p,
|
|
.list > .no-content.no-content-favorites p,
|
|
.no-content.no-content-favorites p {
|
|
text-align: left;
|
|
}
|
|
#main-body > .no-content {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
max-width: 625px;
|
|
margin: 20px auto;
|
|
width: 90%;
|
|
}
|
|
.simple-wrapper {
|
|
background-color: #f4f4f4;
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAArUlEQVQoFYWQuwrCQBBFd42FlaYQRMRCO3vBNpA/8HNtBbt04gcItnaKoLKegRnYTRYzcLjzuLNh4kMILooh+SeqO6kYJOawhzE0cIBsDLRboRPwsIUFZMMWTM1UWNJWMx4ZPHV4Rq9to9U+OlpeHcHDhjmNF3LzHc01yBdPEOwvkXdiQ6fW7gp9QWM3aD+RWVI5N5X638KF+VuXvqjUru+GEs8SbnCH3gXxJPEDtBsiPW8IwCQAAAAASUVORK5CYII=');
|
|
background-attachment: fixed;
|
|
border: 0;
|
|
}
|
|
.simple-wrapper #wrapper {
|
|
margin-top: 0;
|
|
}
|
|
.simple-wrapper #sub-body,
|
|
.simple-wrapper #footer {
|
|
display: none;
|
|
}
|
|
.simple-wrapper #cookie-policy-notice {
|
|
top: 0;
|
|
}
|
|
.simple-wrapper #main-body {
|
|
border: 0;
|
|
background: transparent;
|
|
}
|
|
.simple-wrapper #lector {
|
|
border-top: 1px solid #dddddd;
|
|
margin-left: 0;
|
|
}
|
|
.simple-wrapper.simple-wrapper-content #wrapper {
|
|
margin: 50px auto 0;
|
|
}
|
|
.simple-wrapper.simple-wrapper-content #main-body {
|
|
padding: 0;
|
|
}
|
|
.simple-wrapper.simple-wrapper-content #footer {
|
|
background-color: transparent;
|
|
position: static;
|
|
text-align: center;
|
|
width: auto;
|
|
display: block;
|
|
}
|
|
#memo-drawboard-page {
|
|
user-select: none;
|
|
}
|
|
#memo-drawboard-page .window {
|
|
width: 344px;
|
|
}
|
|
#memo-drawboard-page .window .window-body {
|
|
height: 222px;
|
|
}
|
|
#memo-drawboard-page .window-body .memo-buttons {
|
|
margin-left: 10px;
|
|
position: fixed;
|
|
}
|
|
#memo-drawboard-page .memo-buttons button {
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|
|
#memo-drawboard-page button.artwork-lock {
|
|
margin-left: -40px;
|
|
height: 40px;
|
|
float: right;
|
|
}
|
|
#memo-drawboard-page button.selected {
|
|
background: var(--theme, #0070ff);
|
|
}
|
|
#memo-drawboard-page button.artwork-clear:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAClSURBVHjapJNJFsMwCEOl+x9aXdQDIPCiZZEXhm8TUCgAhJCN2g90GUceANAhE0AQAGQFnS/y+7YYxJIMnL5PxpAIxHIVL98CWXlKb0Rc3vu8GxXrtG55Gd0+F49Yu5yXpX3FZho5/Aok09DGP4Cr1MeqCaDql9C3pUcyqt8Wd0Wg0Mogy0FirZKTnIfc0RivHKtmaErecBNsf9Fyty2tmf+q+AwA6wtxB5rezbYAAAAASUVORK5CYII=');
|
|
}
|
|
#memo-drawboard-page button.artwork-undo:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAB3SURBVHjavJRRCsAgDEOT+x86+9BqZehS2Oaf0NfGNEihdvgfQHlwL6LcacVKX0luTsBExAAawn3lAiAQnpovQDTfKeMdaIgeLJqSxvUlIE+3gUDyps8u9Zev0ThvgoAKWcpBqoRjypedJUMJoHDRBsL07z+BawCI1EgB+/fGrQAAAABJRU5ErkJggg==');
|
|
}
|
|
#memo-drawboard-page button.artwork-pencil.small:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABwSURBVHjazNMxDsAgDENRcv9Du0NVFSXfUbpUsOKHkAOh9W3FnyBoX/nQHghSDcCDPRBf3gHoQuEBVueBuj4rMPFnIwMbZ9DECbTxAkJ3D4mV6jagWIPRAHgbpNGnN7INxzwtABw3YDCSo//0bF0DALiCRAFLB28mAAAAAElFTkSuQmCC');
|
|
}
|
|
#memo-drawboard-page button.artwork-pencil.medium:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAB6SURBVHjarNRJDsAgDANA8v9Hpwdakc1OWpUrHgmCheh6t+QjEJzQtVTm4D7AIRyY8z6EgXC9TTAopqGCQTk8DBRPtAIgvjcygPEakHgFaDyDJh5BG/dgEDdA1D0KiDsQqkXaEkDfRvPcpo2k7QGweAKxBP9+AvN1DQBwc0oBRN8v9gAAAABJRU5ErkJggg==');
|
|
}
|
|
#memo-drawboard-page button.artwork-pencil.large:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAB+SURBVHjalJM5EsAwCAOl/z9aKTIZwOEyjZvdMdiIwlyUHRQ48fLmLMQWOAlK2uMF3gsqHoAXeD1DgVc3lHguNHj2Dw2eCS3+Fwb8FEY8CgvcCyvchCX+CWscEAgBIk6tXDBCYghigx+CZbcLCN+BRUt5H0AnzLgT4kZ29QwAnplFBUt4JkYAAAAASUVORK5CYII=');
|
|
}
|
|
#memo-drawboard-page button.artwork-eraser.small:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABsSURBVHja3FNJEsAgCEv+/+j00DrKJvYqJw0JAUYp/AveLaCyfAQgm3CMwsHA9aW21U6Q1RBPivUCAu1I6xGQGB1EQoU2Wf1spnCwoKd7AWBcIj0O/UmmW7P0IRlOL6L9W8JS3dOv/3F5PAMA2JRDARqv+DEAAAAASUVORK5CYII=');
|
|
}
|
|
#memo-drawboard-page button.artwork-eraser.medium:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAACOSURBVHjavNRLEoAgDAPQ5P6HjgsG+oECbnDlSN5YSpXCv4tvAd29QAHiFZBbyKQA/nEkC6BpY55MQMs+GElAZds6Seu7LjcS37A9lAncxF3qLj5ylIjjhgegDO7jHQAq2ma1QwEAAuMUxTgQalgTH0/ASC9xNdr5HAYh6hmZp1WgteD4iTZSx1/8BL4BAA4JVgFAxTGJAAAAAElFTkSuQmCC');
|
|
}
|
|
#memo-drawboard-page button.artwork-eraser.large:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAACSSURBVHjalJNBEoAgDAOT/z86HkS0kLboQWdwt9QSKVQX9dzCCgDQ8dtLlUIo3Atrr6wF92nMBeUzcEI1ONIMoh90GAP+CC0eWzrAvzsc4ZM7xWXSVeBDoMRG+oYPEhlTkuJDMElMcAz4bswrWyYZnqtiMj9qW8X+U/dYYRpLsvIcXCj+btuHjyrxcF6TKoN7DQDFlVMFmREVnwAAAABJRU5ErkJggg==');
|
|
}
|
|
|
|
#memo-drawboard-page button.artwork-zoom:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAACMSURBVHjavFRbDsAgCKP3P3T34+RhxS1Z5tcsLUghA+3dwYeCENKfbaZ5rbiZ0WGYDcChGLERX8DAFQLL2UMVYi/ArAXel6OAtbVWMPN6LSUQDnU9cLEcyTVpeBoMsmtJwMPglwfzEb1ZK6LOv10qAqVI4YkdlPRs1ZbeC6C63gpqqweB0/nLT0CfawDTRF8BBXckvAAAAABJRU5ErkJggg==');
|
|
}
|
|
#memo-drawboard-page button.artwork-zoom.out:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAACKSURBVHjavFRBDoAwDIL/Pxovi63YdpoYd3GloIMuUni3+KEgtert+KazdByAAiawgIByB6sfoOKxuIUACVLeQOwFwUrFTiC3NgoUAZy+CoHb2nhQEzm7lOSDMcql0mbwtwPrEX24VqLPf7xUIu0jVQB2hIp+zaGlzwJWrluBW90Igq5ffgL1OgYA7gNeAcZXpMIAAAAASUVORK5CYII=');
|
|
}
|
|
#memo-drawboard-page button.artwork-fill:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAJ1JREFUeNrs1cESgCAIBNDd//9oOjil6argaKe6VQwvGDCaGU5e/IEtAMknyAAi8FENQLKOMQAc3OcXAp4BKjlOAWVyWUUUUMlLANWzZUAlq1tlvYGZAXIwREWpADFhUYCdyjJiRg8wGnSOcA+wutrHgFfbdrQIqvdRwIOo4yMEzEa1iYuOaQ9R51BatHsbgoDrkCMJF/D/Mj8HrgEAEQ+j0SRhapIAAAAASUVORK5CYII=');
|
|
}
|
|
#memo-drawboard-page .memo-canvas {
|
|
margin-top: 48px;
|
|
height: 128px;
|
|
}
|
|
#memo-drawboard-page button.artwork-lock:before {
|
|
content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABnSURBVHjatJRBDsAgCAR3///o6cUmNVCIrXIhbhiDLmq0Fv4JWJKYBRqAZkv6DicxX3hkYlUG+CEhSdgZWwHSjXwHWkNMksrAWwErWFgAWK/qHmBcJEtn4DRw3ocWiC+tnqWDv8Y1AKETUgGf7LYxAAAAAElFTkSuQmCC');
|
|
}
|
|
#memo-drawboard-page .memo-canvas.zoom {
|
|
overflow-x: scroll;
|
|
}
|
|
#memo-drawboard-page .memo-canvas.locked {
|
|
overflow: hidden;
|
|
}
|
|
#memo-drawboard-page .memo-canvas #artwork-canvas {
|
|
-ms-interpolation-mode: nearest-neighbor;
|
|
image-rendering: -webkit-optimize-contrast;
|
|
image-rendering: optimize-contrast;
|
|
image-rendering: -moz-crisp-edges;
|
|
image-rendering: -o-crisp-edges;
|
|
image-rendering: optimizeSpeed;
|
|
image-rendering: pixelated;
|
|
border: 1px solid var(--theme, #0070ff);
|
|
}
|
|
#memo-drawboard-page .memo-canvas canvas:not(#artwork-canvas) {
|
|
display: none;
|
|
}
|
|
#global-menu {
|
|
position: relative;
|
|
}
|
|
.notice {
|
|
padding: 15px 35px 15px 15px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid #5fd4ff;
|
|
border-radius: 4px;
|
|
color: #000000;
|
|
background-color: #cce8ff;
|
|
}
|
|
#global-menu #global-menu-logo {
|
|
padding: 12px 0;
|
|
text-align: center;
|
|
}
|
|
#global-menu #global-menu-logo h1 {
|
|
line-height: 1;
|
|
}
|
|
#global-menu #global-menu-logo img {
|
|
height: 32px;
|
|
animation: glow 1.5s infinite alternate;
|
|
}
|
|
#global-menu #global-menu-list {
|
|
float: right;
|
|
padding: 0;
|
|
*zoom: 1;
|
|
}
|
|
#global-menu #global-menu-list:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#global-menu li {
|
|
float: left;
|
|
padding: 0 10px;
|
|
line-height: 1;
|
|
}
|
|
#global-menu li a,
|
|
#global-menu li button {
|
|
position: relative;
|
|
line-height: 1;
|
|
color: #646464;
|
|
background-repeat: no-repeat;
|
|
padding: 0 5px;
|
|
display: table;
|
|
}
|
|
#global-menu li a:hover,
|
|
#global-menu li button:hover {
|
|
box-shadow: inset 0 -4px 0 -1px var(--theme, #0070ff);
|
|
}
|
|
#global-menu li a.login:hover {
|
|
box-shadow: none;
|
|
}
|
|
#global-menu li a:before,
|
|
#global-menu li button:before {
|
|
background: transparent;
|
|
font-size: 32px;
|
|
line-height: 54px;
|
|
vertical-align: middle;
|
|
padding-right: 8px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#global-menu li a span {
|
|
font-weight: bold;
|
|
padding-top: 5px;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#global-menu li#global-menu-logo a:hover {
|
|
box-shadow: none;
|
|
}
|
|
#global-menu li#global-menu-mymenu .icon-container {
|
|
padding: 0;
|
|
margin: 8px 10px 8px 0;
|
|
width: 38px;
|
|
height: 38px;
|
|
}
|
|
#global-menu li#global-menu-mymenu .icon-container img:not(.official-tag) {
|
|
border: 1px solid #ddd;
|
|
width: 36px;
|
|
height: 36px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#global-menu li#global-menu-feed a:before {
|
|
content: 'a';
|
|
}
|
|
#global-menu li#global-menu-community a:before {
|
|
content: 'c';
|
|
}
|
|
#global-menu li#global-menu-message a:before {
|
|
content: 'm';
|
|
}
|
|
#global-menu li#global-menu-news a:before {
|
|
content: 'n';
|
|
}
|
|
#global-menu li#global-menu-news a:before {
|
|
text-indent: 0;
|
|
padding-right: 0;
|
|
}
|
|
#global-menu li#global-menu-my-menu {
|
|
padding-right: 0;
|
|
}
|
|
#global-menu li#global-menu-my-menu button {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
border: 0;
|
|
background-color: transparent;
|
|
margin: 0 auto;
|
|
}
|
|
#global-menu li#global-menu-my-menu button:before {
|
|
padding-right: 0;
|
|
content: 'j';
|
|
font-size: 26px;
|
|
}
|
|
#global-menu li#global-menu-my-menu button:after {
|
|
font-family: 'MiiverseSymbols', sans-serif;
|
|
font-weight: normal;
|
|
content: 'V';
|
|
vertical-align: middle;
|
|
padding-left: 8px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.tab-icon-my-news .badge {
|
|
display: block;
|
|
padding: -120px;
|
|
height: 18px;
|
|
width: 9px;
|
|
padding: 1px 5px 0;
|
|
background: #fc951e;
|
|
color: #fff;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
line-height: 18px;
|
|
margin-top: -17px;
|
|
margin-left: 16px;
|
|
border-radius: 20px;
|
|
}
|
|
#global-menu li.selected a {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
#global-menu li.selected a:before {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
#global-menu .badge {
|
|
display: block;
|
|
position: absolute;
|
|
top: 50%;
|
|
height: 18px;
|
|
min-width: 9px;
|
|
padding: 1px 5px 0;
|
|
border: 2px solid #fff;
|
|
background: #fc951e;
|
|
color: #fff;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
line-height: 18px;
|
|
right: auto;
|
|
left: 50%;
|
|
margin-top: -6px;
|
|
margin-left: 8px;
|
|
-webkit-border-radius: 20px;
|
|
-moz-border-radius: 20px;
|
|
-ms-border-radius: 20px;
|
|
-o-border-radius: 20px;
|
|
border-radius: 20px;
|
|
}
|
|
#global-menu #global-menu-message .badge {
|
|
left: 10% !important;
|
|
}
|
|
#global-menu #global-my-menu {
|
|
background-color: #fff;
|
|
border: 2px solid #dddddd;
|
|
text-align: left;
|
|
top: 60px;
|
|
padding: 10px 5px;
|
|
position: absolute;
|
|
right: 0;
|
|
width: 240px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
|
|
-moz-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
|
|
-ms-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
|
|
-o-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
|
|
box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.4);
|
|
}
|
|
#global-menu #global-my-menu:before,
|
|
#global-menu #global-my-menu:after {
|
|
bottom: 100%;
|
|
right: 12%;
|
|
border: solid transparent;
|
|
content: " ";
|
|
height: 0;
|
|
width: 0;
|
|
position: absolute;
|
|
}
|
|
#global-menu #global-my-menu:after {
|
|
border-color: transparent;
|
|
border-bottom-color: #ffffff;
|
|
border-width: 10px;
|
|
margin-right: -10px;
|
|
}
|
|
#global-menu #global-my-menu:before {
|
|
border-color: transparent;
|
|
border-bottom-color: #dddddd;
|
|
border-width: 13px;
|
|
margin-right: -13px;
|
|
}
|
|
#global-menu #global-my-menu li {
|
|
float: none;
|
|
padding: 0;
|
|
}
|
|
#global-menu #global-my-menu a {
|
|
display: block;
|
|
padding: 8px 10px;
|
|
}
|
|
#global-menu #global-my-menu a:hover {
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-ms-box-shadow: none;
|
|
-o-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
#global-menu #global-my-menu a:hover span {
|
|
text-decoration: underline;
|
|
}
|
|
#global-menu #global-my-menu span {
|
|
padding: 0 0 0 30px;
|
|
font-weight: normal;
|
|
display: block;
|
|
}
|
|
#global-menu #global-my-menu form {
|
|
position: relative;
|
|
}
|
|
#global-menu #global-my-menu form:before {
|
|
content: 'b';
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 7px;
|
|
}
|
|
#global-menu #global-my-menu form input,
|
|
#global-menu #global-my-menu form input:hover,
|
|
#global-menu #global-my-menu form input:active {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
border: none;
|
|
background: transparent;
|
|
color: #646464;
|
|
display: block;
|
|
text-align: left;
|
|
text-indent: 30px;
|
|
font-size: 14px;
|
|
padding: 8px 10px;
|
|
margin: 0;
|
|
width: 100%;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
#global-menu #global-my-menu form input:hover,
|
|
#global-menu #global-my-menu form input:active {
|
|
text-decoration: underline;
|
|
}
|
|
#global-menu #global-my-menu .symbol:before {
|
|
font-size: 18px;
|
|
line-height: 18px;
|
|
width: 22px;
|
|
text-align: center;
|
|
color: var(--theme, #0070ff);
|
|
position: absolute;
|
|
top: 50%;
|
|
margin-top: -9px;
|
|
}
|
|
#global-menu #global-my-menu .my-menu-profile-setting:before {
|
|
content: "Z";
|
|
}
|
|
#global-menu #global-my-menu .my-menu-white-power:before {
|
|
content: url(img/font/wp.svg);
|
|
width: 20px;
|
|
}
|
|
#global-menu #global-my-menu .my-menu-account-setting:before {
|
|
content: "Y";
|
|
}
|
|
#global-menu #global-my-menu .my-menu-openman:before {
|
|
content: "w";
|
|
}
|
|
#global-menu #global-my-menu .my-menu-guide:before {
|
|
content: "g";
|
|
}
|
|
@-moz-document url-prefix( ) {
|
|
#global-menu #global-my-menu form input,
|
|
#global-menu #global-my-menu form input:hover,
|
|
#global-menu #global-my-menu form input:active {
|
|
text-indent: 27px;
|
|
}
|
|
}
|
|
h2.label {
|
|
border-bottom: 3px solid var(--theme, #0070ff);
|
|
color: var(--theme, #0070ff);
|
|
font-weight: normal;
|
|
font-size: 16px;
|
|
padding: 17px 15px 10px;
|
|
line-height: 1;
|
|
margin: 0;
|
|
}
|
|
h2.label:before {
|
|
font-size: 20px;
|
|
vertical-align: middle;
|
|
margin-right: 3px;
|
|
margin-top: -3px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
h3.label {
|
|
padding: 9px 15px 6px;
|
|
font-weight: bold;
|
|
line-height: 1.2;
|
|
}
|
|
h3.label.nnid > label > img {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin-top: -16px;
|
|
vertical-align: middle;
|
|
}
|
|
h3.label.label-wiiu {
|
|
background: #d8f2fc;
|
|
color: #1193c4;
|
|
-webkit-box-shadow: inset 0 1px 0 #c1eafa;
|
|
-moz-box-shadow: inset 0 1px 0 #c1eafa;
|
|
-ms-box-shadow: inset 0 1px 0 #c1eafa;
|
|
-o-box-shadow: inset 0 1px 0 #c1eafa;
|
|
box-shadow: inset 0 1px 0 #c1eafa;
|
|
}
|
|
h3.label.label-wiiu .with-filter-right {
|
|
color: #1193c4;
|
|
}
|
|
h3.label.label-3ds {
|
|
background: #fce9e9;
|
|
color: #ce181e;
|
|
-webkit-box-shadow: inset 0 1px 0 #fad2d3;
|
|
-moz-box-shadow: inset 0 1px 0 #fad2d3;
|
|
-ms-box-shadow: inset 0 1px 0 #fad2d3;
|
|
-o-box-shadow: inset 0 1px 0 #fad2d3;
|
|
box-shadow: inset 0 1px 0 #fad2d3;
|
|
}
|
|
h3.label.label-3ds .with-filter-right {
|
|
color: #ce181e;
|
|
}
|
|
h2.reply-label {
|
|
clear: both;
|
|
background: var(--theme, #0070ff);
|
|
color: #FFF;
|
|
border-top: 1px solid var(--theme, #3f93ff);
|
|
padding: 3px 10px 1px;
|
|
}
|
|
|
|
.community-switcher {
|
|
float: right;
|
|
}
|
|
.community-switcher .community-switcher-tab {
|
|
margin-bottom: 8px;
|
|
width: 80px;
|
|
padding: 10px 10px 8px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
background: url("/img/button-bg.gif") repeat-x 0 bottom #FFFFFF;
|
|
background-color: #ffffff;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#e6e6e6), color-stop(0.5, #FFFFFF));
|
|
background: -webkit-linear-gradient(top, #FFFFFF 0%, #FFFFFF 50%, #e6e6e6 100%);
|
|
background: -moz-linear-gradient(top, #FFFFFF 0%, #FFFFFF 50%, #e6e6e6 100%);
|
|
background: -ms-linear-gradient(top, #FFFFFF 0%, #FFFFFF 50%, #e6e6e6 100%);
|
|
background: -o-linear-gradient(top, #FFFFFF 0%, #FFFFFF 50%, #e6e6e6 100%);
|
|
background: linear-gradient(top, #FFFFFF 0%, #FFFFFF 50%, #e6e6e6 100%);
|
|
color: #323232;
|
|
line-height: 1;
|
|
border: 1px solid #ddd;
|
|
border-bottom-color: #ccc;
|
|
border-left: none;
|
|
}
|
|
.community-switcher .community-switcher-tab.selected {
|
|
background: -webkit-gradient(linear, left top, left bottom, from(var(--theme, #0070ff)), to(var(--theme-slightly-dark, #004aac)));
|
|
background: -webkit-linear-gradient(top,#0070ff #004aac);
|
|
background: -moz-linear-gradient(top,#0070ff #004aac);
|
|
background: -ms-linear-gradient(top,#0070ff #004aac);
|
|
background: -o-linear-gradient(top,#0070ff #004aac);
|
|
background: linear-gradient(top,#0070ff #004aac);
|
|
color: #fff;
|
|
}
|
|
.community-switcher .community-switcher-tab:first-of-type {
|
|
border-radius: 5px 0px 0px 5px;
|
|
border-left: 1px solid #ddd;
|
|
}
|
|
.community-switcher .community-switcher-tab:last-of-type {
|
|
border-radius: 0px 5px 5px 0px;
|
|
}
|
|
|
|
.count {
|
|
font-weight: bold;
|
|
color: var(--theme, #0070ff);
|
|
line-height: 1;
|
|
float: right;
|
|
padding: 17px 15px 10px;
|
|
margin: 13px 12px 6px;
|
|
padding: 4px 12px;
|
|
background-color: #bedcff;
|
|
}
|
|
.headline {
|
|
padding-bottom: 10px;
|
|
position: relative;
|
|
}
|
|
.headline h2 {
|
|
padding: 10px 285px 0 8px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #606060;
|
|
}
|
|
.headline h2 > span {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
padding: 3px 10px 0 0;
|
|
}
|
|
.post-filter {
|
|
display: inline-block;
|
|
margin-top: 4px;
|
|
}
|
|
.headline form.search {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
width: 250px;
|
|
margin-left: 10px;
|
|
margin-bottom: 0;
|
|
}
|
|
form.friend-search {
|
|
width: 250px !important;
|
|
margin: 8px 2px 9px 2px !important;
|
|
}
|
|
.headline .activity-headline:before {
|
|
content: 'a';
|
|
line-height: 23px;
|
|
font-size: 23px;
|
|
vertical-align: middle;
|
|
margin: -7px 5px 0 0;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
h2.label-diary_post,
|
|
h2.label-diary {
|
|
border-bottom: 3px solid #04c9db;
|
|
color: #00b7d8;
|
|
}
|
|
h2.label-diary_post:before,
|
|
h2.label-diary:before {
|
|
content: "%";
|
|
}
|
|
h2.label-artwork_post,
|
|
h2.label-artwork {
|
|
border-bottom: 3px solid #fcc735;
|
|
color: #ffae00;
|
|
}
|
|
h2.label-artwork_post:before,
|
|
h2.label-artwork:before {
|
|
content: "M";
|
|
}
|
|
h2.label-topic_post,
|
|
h2.label-topic {
|
|
border-bottom: 3px solid #e8316e;
|
|
color: #e8316e;
|
|
}
|
|
h2.label-topic_post:before,
|
|
h2.label-topic:before {
|
|
content: "t";
|
|
}
|
|
h2.label-via_api:before {
|
|
content: "&";
|
|
}
|
|
.with-filter-right {
|
|
float: right;
|
|
border: none;
|
|
padding: 0;
|
|
background: none;
|
|
vertical-align: top;
|
|
}
|
|
.with-filter-right:before {
|
|
content: "V";
|
|
float: right;
|
|
margin-left: 3px;
|
|
margin-top: 3px;
|
|
}
|
|
h2.label-diary .with-filter-right {
|
|
color: #00b7d8;
|
|
}
|
|
h2.label-artwork .with-filter-right {
|
|
color: #ffae00;
|
|
}
|
|
h2.label-topic .with-filter-right {
|
|
color: #e8316e;
|
|
}
|
|
.tab-container {
|
|
padding: 15px 15px 0;
|
|
}
|
|
.tab-container + .post-list {
|
|
margin-top: 15px;
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.tab-container + #community-post-list {
|
|
margin-top: 15px;
|
|
}
|
|
.tab-container + .community-list {
|
|
margin-top: 15px;
|
|
}
|
|
.tab-container#notification-tab-container {
|
|
margin-bottom: 15px;
|
|
}
|
|
.tab2,
|
|
.tab3 {
|
|
display: table;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
*zoom: 1;
|
|
}
|
|
.tab2:after,
|
|
.tab3:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.tab2 a,
|
|
.tab3 a {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
padding: 10px 10px 8px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
background: url("img/button-bg.gif") repeat-x 0 bottom #ffffff;
|
|
background-color: #ffffff;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e6e6e6), color-stop(0.5, #ffffff));
|
|
background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 50%, #e6e6e6 100%);
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 50%, #e6e6e6 100%);
|
|
background: -ms-linear-gradient(top, #ffffff 0%, #ffffff 50%, #e6e6e6 100%);
|
|
background: -o-linear-gradient(top, #ffffff 0%, #ffffff 50%, #e6e6e6 100%);
|
|
background: linear-gradient(top, #ffffff 0%, #ffffff 50%, #e6e6e6 100%);
|
|
color: #323232;
|
|
text-align: center;
|
|
line-height: 1.2;
|
|
border: 1px solid #dddddd;
|
|
border-bottom-color: #ccc;
|
|
border-left: none;
|
|
*float: left;
|
|
}
|
|
.tab2 a span,
|
|
.tab3 a span {
|
|
text-align: left;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.tab2 a span.label,
|
|
.tab3 a span.label {
|
|
float: left;
|
|
margin: 8px 0 0;
|
|
}
|
|
.tab2 a span.number,
|
|
.tab3 a span.number {
|
|
text-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
|
color: #FFF;
|
|
float: right;
|
|
font-size: 10px;
|
|
font-weight: normal;
|
|
background: #969696;
|
|
min-width: 4em;
|
|
padding: 1px 5px 0;
|
|
margin: 8px 0;
|
|
text-align: right;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.tab2.user-menu-activity a,
|
|
.tab3.user-menu-activity a {
|
|
padding: 0 10px;
|
|
}
|
|
.tab2.user-menu-friends a,
|
|
.tab3.user-menu-friends a {
|
|
padding: 8px 10px;
|
|
}
|
|
.tab2.user-menu-friends a span.name,
|
|
.tab3.user-menu-friends a span.name {
|
|
font-size: 12px;
|
|
}
|
|
.tab2.user-menu-friends a span.number,
|
|
.tab3.user-menu-friends a span.number {
|
|
width: 100%;
|
|
margin: 5px 0 0;
|
|
text-align: center;
|
|
padding: 2px 5px;
|
|
font-size: 12px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.tab2.user-menu-friends a span.number .denominator,
|
|
.tab3.user-menu-friends a span.number .denominator {
|
|
font-size: 10px;
|
|
font-weight: normal;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
padding-left: 2px;
|
|
}
|
|
.tab2 a:hover,
|
|
.tab3 a:hover {
|
|
background: #f9f9f9;
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-moz-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-ms-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-o-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.tab2 a.selected,
|
|
.tab3 a.selected {
|
|
color: #FFF;
|
|
background-color: #81e52e;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(var(--theme, #0070ff)), to(var(--theme-slightly-dark, #004aac)));
|
|
background: -webkit-linear-gradient(top, #0070ff #004aac);
|
|
background: -moz-linear-gradient(top, #0070ff #004aac);
|
|
background: -ms-linear-gradient(top, #0070ff #004aac);
|
|
background: -o-linear-gradient(top, #0070ff #004aac);
|
|
background: linear-gradient(top, #0070ff #004aac);
|
|
}
|
|
.tab2 a.selected span.number,
|
|
.tab3 a.selected span.number {
|
|
background: #003caa;
|
|
}
|
|
.tab2 a.selected:hover,
|
|
.tab3 a.selected:hover {
|
|
-webkit-box-shadow: inset 0 0 0 #fff, 0 0 0 rgba(0,0,0,0.1);
|
|
-moz-box-shadow: inset 0 0 0 #fff, 0 0 0 rgba(0,0,0,0.1);
|
|
-ms-box-shadow: inset 0 0 0 #fff, 0 0 0 rgba(0,0,0,0.1);
|
|
-o-box-shadow: inset 0 0 0 #fff, 0 0 0 rgba(0,0,0,0.1);
|
|
box-shadow: inset 0 0 0 #fff, 0 0 0 rgba(0,0,0,0.1);
|
|
}
|
|
.tab2 > a:first-child,
|
|
.tab3 > a:first-child {
|
|
border-left: 1px solid #dddddd;
|
|
-webkit-border-top-left-radius: 5px;
|
|
-moz-border-top-left-radius: 5px;
|
|
-ms-border-top-left-radius: 5px;
|
|
-o-border-top-left-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
-webkit-border-bottom-left-radius: 5px;
|
|
-moz-border-bottom-left-radius: 5px;
|
|
-ms-border-bottom-left-radius: 5px;
|
|
-o-border-bottom-left-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
.tab2 > a:last-child,
|
|
.tab3 > a:last-child {
|
|
-webkit-border-top-right-radius: 5px;
|
|
-moz-border-top-right-radius: 5px;
|
|
-ms-border-top-right-radius: 5px;
|
|
-o-border-top-right-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
-webkit-border-bottom-right-radius: 5px;
|
|
-moz-border-bottom-right-radius: 5px;
|
|
-ms-border-bottom-right-radius: 5px;
|
|
-o-border-bottom-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
.tab2 a {
|
|
width: 50%;
|
|
}
|
|
.tab-icon-my-news span.symbol {
|
|
margin-right: 5px;
|
|
}
|
|
span.symbol.nf:before {
|
|
content: "n";
|
|
}
|
|
span.symbol.fr:before {
|
|
content: "F";
|
|
}
|
|
span.owner-label {
|
|
float: right;
|
|
}
|
|
.icon-container {
|
|
width: 58px;
|
|
height: 58px;
|
|
float: left;
|
|
}
|
|
.icon-container .icon {
|
|
background: #fff;
|
|
border: 1px solid #dddddd;
|
|
vertical-align: middle;
|
|
width: 56px;
|
|
height: 56px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.official-tag {
|
|
position: absolute;
|
|
display: block;
|
|
margin-top: -4px;
|
|
margin-left: -4px;
|
|
top: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.icon-container.official {
|
|
position: relative;
|
|
}
|
|
/*.icon-container.official:after {
|
|
position: absolute;
|
|
display: block;
|
|
margin-top: -4px;
|
|
margin-left: -4px;
|
|
z-index: 2;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.icon-container.administrator:after {
|
|
content: url("img/administrator.png");
|
|
}
|
|
.icon-container.developer:after {
|
|
content: url("img/developer.png");
|
|
}
|
|
.icon-container.badgedes:after {
|
|
content: url("img/badgedes.png");
|
|
}
|
|
.icon-container.openverse:after {
|
|
content: url("img/open-dev.png");
|
|
}
|
|
.icon-container.urapp:after {
|
|
content: url("img/open-zsdev.png");
|
|
}
|
|
.icon-container.moderator:after {
|
|
content: url("img/moderator.png");
|
|
}
|
|
.icon-container.donator:after {
|
|
content: url("img/donator.png");
|
|
}
|
|
.icon-container.cool:after {
|
|
content: url("img/cool.png");
|
|
}
|
|
.icon-container.jack:after {
|
|
content: url("img/jack.png");
|
|
}
|
|
.icon-container.verifiedd:after {
|
|
content: url("img/verified.png");
|
|
}
|
|
*/
|
|
.multi-timeline-post-list .post .icon-container.offline:before,
|
|
.multi-timeline-post-list .post .icon-container.online:before,
|
|
.multi-timeline-post-list .post .icon-container.afk:before {
|
|
width: 5px !important;
|
|
height: 5px !important;
|
|
border: 1px solid #fff !important;
|
|
}
|
|
|
|
.icon-container.online, .icon-container.offline, .icon-container.afk {
|
|
position: relative;
|
|
}
|
|
.icon-container.online:before,
|
|
.icon-container.offline:before,
|
|
.icon-container.afk:before {
|
|
z-index: 1;
|
|
content: "";
|
|
position: absolute;
|
|
display: block;
|
|
bottom: 7px;
|
|
right: 1px;
|
|
width: 9px;
|
|
height: 9px;
|
|
border: 2px solid #fff;
|
|
background: #969696;
|
|
margin-bottom: -6px;
|
|
border-radius: 20px;
|
|
}
|
|
.icon-container.online:before {
|
|
background: #01a920;
|
|
}
|
|
.icon-container.afk:before {
|
|
background: #f7aa50;
|
|
}
|
|
|
|
/*
|
|
.icon-container.online, .icon-container.offline {
|
|
position: relative;
|
|
}
|
|
.icon-container.online:before {
|
|
z-index: 1;
|
|
content: url("https://pf2m.com/images/online.png");
|
|
position: absolute;
|
|
display: block;
|
|
bottom: 7px;
|
|
right: 1px;
|
|
width: 9px;
|
|
height: 9px;
|
|
}
|
|
.icon-container.offline:before {
|
|
z-index: 1;
|
|
content: url("https://pf2m.com/images/offline.png");
|
|
position: absolute;
|
|
display: block;
|
|
bottom: 7px;
|
|
right: 1px;
|
|
width: 9px;
|
|
height: 9px;
|
|
}*/
|
|
/*
|
|
.post-permalink-feeling-icon.administrator {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.developer {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.badgedes {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.openverse {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.urapp {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.moderator {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.donator {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.cool {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.jack {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.verifiedd {
|
|
position: relative;
|
|
}
|
|
.post-permalink-feeling-icon.administrator:after {
|
|
content: url("img/administrator.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.developer:after {
|
|
content: url("img/developer.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.badgedes:after {
|
|
content: url("img/badgedes.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.openverse:after {
|
|
content: url("img/open-dev.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.moderator:after {
|
|
content: url("img/moderator.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.donator:after {
|
|
content: url("img/donator.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.verifiedd:after {
|
|
content: url("img/verified.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.cool:after {
|
|
content: url("img/cool.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.post-permalink-feeling-icon.jack:after {
|
|
content: url("img/jack.png");
|
|
position: absolute;
|
|
display: block;
|
|
top: 0;
|
|
left: 0;
|
|
width: 22px;
|
|
height: 22px;
|
|
}*/
|
|
.button {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
padding: 12px 15px;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
border-bottom-color: #ccc;
|
|
background: #f6f6f6;
|
|
color: #323232;
|
|
display: block;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
max-width: 480px;
|
|
margin: 0 auto;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
-ms-box-shadow: inset 0 1px 0 #ffffff;
|
|
-o-box-shadow: inset 0 1px 0 #ffffff;
|
|
box-shadow: inset 0 1px 0 #ffffff;
|
|
}
|
|
.button:hover {
|
|
text-decoration: none!important;
|
|
background: #f6f6f6;
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-moz-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-ms-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-o-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.button.edit-button {
|
|
width: 34px;
|
|
float: right;
|
|
margin: 0 0 10px 10px;
|
|
padding: 4px 0 3px;
|
|
}
|
|
.button.edit-post-button:before {
|
|
content: "J" !important;
|
|
}
|
|
.button.lock-comments-button:before {
|
|
content: "p" !important;
|
|
}
|
|
.button.rm-post-button:before {
|
|
content: "d" !important;
|
|
}
|
|
.button.profile-post-button:before {
|
|
content: "P" !important;
|
|
}
|
|
.button.profile-post-button.done:before {
|
|
content: "s" !important;
|
|
}
|
|
.button.edit-button:hover {
|
|
text-decoration: none;
|
|
}
|
|
.button.edit-button:before {
|
|
content: "y";
|
|
font-size: 18px;
|
|
color: #969696;
|
|
}
|
|
|
|
.button.rm {
|
|
width: 34px;
|
|
float: right;
|
|
padding: 4px 0 3px;
|
|
}
|
|
.button.rm:hover {
|
|
text-decoration: none;
|
|
}
|
|
.button.rm:before {
|
|
content: "d";
|
|
font-size: 18px;
|
|
color: #969696;
|
|
}
|
|
|
|
.big-button {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
background-color: #f1f1f1;
|
|
display: block;
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
padding: 12px 0 10px;
|
|
color: #323232;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.big-button:hover {
|
|
background-color: #ededed;
|
|
}
|
|
.big-button.disabled {
|
|
color: #969696;
|
|
}
|
|
.big-button.disabled:hover {
|
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
-ms-box-shadow: inset 0 1px 0 #ffffff;
|
|
-o-box-shadow: inset 0 1px 0 #ffffff;
|
|
box-shadow: inset 0 1px 0 #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
.arrow-button {
|
|
clear: both;
|
|
display: block;
|
|
padding: 11px 20px 9px 15px;
|
|
background: url('img/icon-arrow-right.png') no-repeat 97.5% center;
|
|
color: #323232;
|
|
-webkit-background-size: 9px 15px;
|
|
-moz-background-size: 9px 15px;
|
|
-ms-background-size: 9px 15px;
|
|
-o-background-size: 9px 15px;
|
|
background-size: 9px 15px;
|
|
}
|
|
.arrow-button:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.sidebar-container .button {
|
|
margin: 5px auto 20px;
|
|
width: 80%;
|
|
}
|
|
.sidebar-container .title-settings-button:before {
|
|
content: "y";
|
|
font-size: 18px;
|
|
}
|
|
.sidebar-container .title-settings-button {
|
|
width: 15% !important;
|
|
|
|
float: right;
|
|
margin-top: -65px;
|
|
margin-right: 20px;
|
|
}
|
|
.favorite-button:before {
|
|
content: "P";
|
|
font-size: 20px;
|
|
margin: -2px 5px 0 0;
|
|
line-height: 11px;
|
|
color: #f79726;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
}
|
|
.favorite-button.checked:before {
|
|
content: "s";
|
|
}
|
|
.favorite-button.checked:before {
|
|
content: "s";
|
|
}
|
|
.ie .favorite-button.changing:before {
|
|
content: none;
|
|
}
|
|
.favorite-button .favorite-button-text {
|
|
padding: 4px 0 2px;
|
|
}
|
|
.filter-button {
|
|
background-color: rgba(0, 0, 0, 0.06);
|
|
border: none;
|
|
float: none;
|
|
padding: 4px 10px;
|
|
vertical-align: middle;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.filter-button:hover {
|
|
background-color: rgba(0, 0, 0, 0.08);
|
|
color: #323232;
|
|
}
|
|
.filter-button:before {
|
|
content: "V";
|
|
float: right;
|
|
font-size: 10px;
|
|
padding: 3px 0 0 5px;
|
|
}
|
|
.hidden-content-button {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
margin: 5px;
|
|
padding: 3px 5px;
|
|
border: 1px solid #dddddd;
|
|
border-bottom-color: #ccc;
|
|
background: #f6f6f6;
|
|
font-size: 12px;
|
|
color: #323232;
|
|
text-align: center;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
-ms-box-shadow: inset 0 1px 0 #ffffff;
|
|
-o-box-shadow: inset 0 1px 0 #ffffff;
|
|
box-shadow: inset 0 1px 0 #ffffff;
|
|
}
|
|
.hidden-content-button:hover {
|
|
text-decoration: none!important;
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-moz-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-ms-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-o-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.black-button {
|
|
min-width: 135px;
|
|
padding: 9px 10px 7px;
|
|
margin: 0;
|
|
border: 1px solid #444;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
|
|
background: url("img/black-button-bg.gif") repeat-x 0 bottom #646464;
|
|
background-color: #646464;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#646464), to(#323232), color-stop(0.96, #434343));
|
|
background: -webkit-linear-gradient(top, #646464 0%, #434343 96%, #323232 100%);
|
|
background: -moz-linear-gradient(top, #646464 0%, #434343 96%, #323232 100%);
|
|
background: -ms-linear-gradient(top, #646464 0%, #434343 96%, #323232 100%);
|
|
background: -o-linear-gradient(top, #646464 0%, #434343 96%, #323232 100%);
|
|
background: linear-gradient(top, #646464 0%, #434343 96%, #323232 100%);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
-ms-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
-o-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
vertical-align: middle;
|
|
min-height: 40px;
|
|
min-height: 30px\\9;
|
|
}
|
|
.black-button.disabled {
|
|
background: #dddddd;
|
|
background-color: #dddddd;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#dddddd), to(#d0d0d0), color-stop(0.96, #dddddd));
|
|
background: -webkit-linear-gradient(top, #dddddd 0%, #dddddd 96%, #d0d0d0 100%);
|
|
background: -moz-linear-gradient(top, #dddddd 0%, #dddddd 96%, #d0d0d0 100%);
|
|
background: -ms-linear-gradient(top, #dddddd 0%, #dddddd 96%, #d0d0d0 100%);
|
|
background: -o-linear-gradient(top, #dddddd 0%, #dddddd 96%, #d0d0d0 100%);
|
|
background: linear-gradient(top, #dddddd 0%, #dddddd 96%, #d0d0d0 100%);
|
|
border-color: #c4c4c4;
|
|
color: #919191;
|
|
text-shadow: 0 1px 0 #ffffff;
|
|
cursor: default;
|
|
}
|
|
.black-button.loading {
|
|
background: #dddddd;
|
|
border-color: #b7b7b7;
|
|
color: #969696;
|
|
background-color: #dddddd;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#dddddd), to(#b7b7b7), color-stop(0.96, #c4c4c4));
|
|
background: -webkit-linear-gradient(top, #dddddd 0%, #c4c4c4 96%, #b7b7b7 100%);
|
|
background: -moz-linear-gradient(top, #dddddd 0%, #c4c4c4 96%, #b7b7b7 100%);
|
|
background: -ms-linear-gradient(top, #dddddd 0%, #c4c4c4 96%, #b7b7b7 100%);
|
|
background: -o-linear-gradient(top, #dddddd 0%, #c4c4c4 96%, #b7b7b7 100%);
|
|
background: linear-gradient(top, #dddddd 0%, #c4c4c4 96%, #b7b7b7 100%);
|
|
text-shadow: 0 1px 0 #ffffff;
|
|
}
|
|
.gray-button {
|
|
min-width: 135px;
|
|
padding: 9px 10px 7px;
|
|
margin: 0;
|
|
border: 1px solid #bbb;
|
|
color: #323232;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-shadow: 0 1px 0 #fff;
|
|
background: url("img/gray-button-bg.gif") repeat-x 0 bottom #ffffff;
|
|
background-color: #ffffff;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#bbbbbb), color-stop(0.96, #dddddd));
|
|
background: -webkit-linear-gradient(top, #ffffff 0%, #dddddd 96%, #bbbbbb 100%);
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #dddddd 96%, #bbbbbb 100%);
|
|
background: -ms-linear-gradient(top, #ffffff 0%, #dddddd 96%, #bbbbbb 100%);
|
|
background: -o-linear-gradient(top, #ffffff 0%, #dddddd 96%, #bbbbbb 100%);
|
|
background: linear-gradient(top, #ffffff 0%, #dddddd 96%, #bbbbbb 100%);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
-ms-box-shadow: inset 0 1px 0 #ffffff;
|
|
-o-box-shadow: inset 0 1px 0 #ffffff;
|
|
box-shadow: inset 0 1px 0 #ffffff;
|
|
vertical-align: middle;
|
|
min-height: 40px;
|
|
min-height: 30px\\9;
|
|
}
|
|
.gray-button.disabled {
|
|
background: #dddddd;
|
|
color: #969696;
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-ms-box-shadow: none;
|
|
-o-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.buttons-content {
|
|
text-align: center;
|
|
}
|
|
.buttons-content a {
|
|
width: 45%;
|
|
display: inline-block;
|
|
margin: 0 0.5%;
|
|
}
|
|
.newest-more-button:before,
|
|
.new-topic-button:before {
|
|
content: "p";
|
|
vertical-align: middle;
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
}
|
|
.popular-more-button:before {
|
|
content: "W";
|
|
vertical-align: middle;
|
|
font-size: 22px;
|
|
line-height: 22px;
|
|
}
|
|
.pager-button {
|
|
display: table;
|
|
*zoom: 1;
|
|
width: 936px;
|
|
margin: 20px auto;
|
|
background: #f6f6f6;
|
|
width: auto;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.pager-button:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.pager-button .button {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
color: #323232;
|
|
text-align: center;
|
|
line-height: 1.2;
|
|
border: none;
|
|
}
|
|
.pager-button .selected {
|
|
width: 260px;
|
|
font-size: 14px;
|
|
}
|
|
.pager-button .back-button {
|
|
padding: 10px;
|
|
margin: 0;
|
|
border-right: 1px solid #dddddd;
|
|
width: 40px;
|
|
-webkit-border-radius: 3px 0 0 3px;
|
|
-moz-border-radius: 3px 0 0 3px;
|
|
-ms-border-radius: 3px 0 0 3px;
|
|
-o-border-radius: 3px 0 0 3px;
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
.pager-button .back-button:before {
|
|
content: "I";
|
|
}
|
|
.pager-button .next-button {
|
|
padding: 10px;
|
|
margin: 0;
|
|
border-left: 1px solid #dddddd;
|
|
width: 40px;
|
|
-webkit-border-radius: 0 3px 3px 0;
|
|
-moz-border-radius: 0 3px 3px 0;
|
|
-ms-border-radius: 0 3px 3px 0;
|
|
-o-border-radius: 0 3px 3px 0;
|
|
border-radius: 0 3px 3px 0;
|
|
}
|
|
.pager-button .next-button:before {
|
|
content: "R";
|
|
}
|
|
.report-buttons-content {
|
|
display: block;
|
|
float: right;
|
|
}
|
|
.report-violation-button,
|
|
.report-button {
|
|
font-size: 12px;
|
|
display: inline;
|
|
width: auto;
|
|
padding: 0;
|
|
margin: 0 0 0 10px;
|
|
border: none;
|
|
background: transparent;
|
|
-webkit-border-radius: 0;
|
|
-moz-border-radius: 0;
|
|
-ms-border-radius: 0;
|
|
-o-border-radius: 0;
|
|
border-radius: 0;
|
|
color: #dddddd;
|
|
}
|
|
.report-violation-button:hover,
|
|
.report-button:hover {
|
|
color: #969696;
|
|
text-decoration: underline;
|
|
}
|
|
.report-violation-button.disabled:hover,
|
|
.report-button.disabled:hover {
|
|
text-decoration: none;
|
|
color: #dddddd;
|
|
}
|
|
.closed-user-report-content {
|
|
margin-top: 15px;
|
|
}
|
|
.button-n3ds {
|
|
background-color: #ce181e;
|
|
}
|
|
.button-n3ds:hover {
|
|
background: #c0161c;
|
|
}
|
|
.button-wiiu {
|
|
background-color: #1193c4;
|
|
}
|
|
.button-wiiu:hover {
|
|
background: #1088b6;
|
|
}
|
|
.list .bigger {
|
|
padding: 29px;
|
|
}
|
|
.list > li,
|
|
.list > div,
|
|
.list > a,
|
|
.list > span {
|
|
*zoom: 1;
|
|
padding: 15px;
|
|
border-top: 1px solid #dddddd;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.list > li:after,
|
|
.list > div:after,
|
|
.list > a:after,
|
|
.list > span:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.list > a,
|
|
.list > span {
|
|
display: block;
|
|
padding-left: 52px;
|
|
color: #323232;
|
|
font-weight: bold;
|
|
}
|
|
.list.info-reply-list + .reply-list li:first-child {
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.list div#user-page-no-content.none + div {
|
|
border: 0;
|
|
}
|
|
.list .toggle-button {
|
|
margin-top: 7px;
|
|
margin-left: 10px;
|
|
float: right;
|
|
position: relative;
|
|
}
|
|
.list .toggle-button .button {
|
|
width: 100px;
|
|
padding: 0 30px 0 0;
|
|
height: 36px;
|
|
line-height: 34px;
|
|
}
|
|
.list .toggle-button .button:before {
|
|
color: #fff;
|
|
line-height: 34px;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
display: block;
|
|
width: 30px;
|
|
height: 34px;
|
|
border: 1px solid #dddddd;
|
|
border-left: none;
|
|
border-bottom-color: #ccc;
|
|
-webkit-box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.9);
|
|
-moz-box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.9);
|
|
-ms-box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.9);
|
|
-o-box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.9);
|
|
box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.9);
|
|
-webkit-border-top-right-radius: 5px;
|
|
-moz-border-top-right-radius: 5px;
|
|
-ms-border-top-right-radius: 5px;
|
|
-o-border-top-right-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
-webkit-border-bottom-right-radius: 5px;
|
|
-moz-border-bottom-right-radius: 5px;
|
|
-ms-border-bottom-right-radius: 5px;
|
|
-o-border-bottom-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
.list .toggle-button .unfollow-button:before {
|
|
background-color: #969696;
|
|
content: "x";
|
|
}
|
|
.list .toggle-button .follow-button:before {
|
|
color: var(--theme, #0070ff);
|
|
content: "Q";
|
|
}
|
|
.arrow-list .toggle-button .user-manage:before {
|
|
color: var(--theme, #0070ff);
|
|
content: "Y";
|
|
}
|
|
.list .toggle-button .friend-button:before {
|
|
color: var(--theme, #0070ff);
|
|
content: "F";
|
|
}
|
|
.list .toggle-button .unfriend-button:before {
|
|
color: var(--theme, #0070ff);
|
|
content: "f";
|
|
}
|
|
.list .toggle-button .follow-done-button:before {
|
|
color: var(--theme, #0070ff);
|
|
content: "v";
|
|
}
|
|
.list .toggle-button .follow-done-button:hover {
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-ms-box-shadow: none;
|
|
-o-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.community-list > li {
|
|
padding: 0;
|
|
}
|
|
.news-label,
|
|
.filtering-label {
|
|
display: block;
|
|
min-height: 70px;
|
|
padding: 0 0 0 60px !important;
|
|
font-size: 24px;
|
|
line-height: 28px;
|
|
color: #323232;
|
|
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAkCAYAAADsHujfAAAD2klEQVR4AbXUA7TjShwG8G+S2/Zmbdv2Hj3btm3btm2tbdu27fqyVjAvk+7Joi8vvZivDv79DckNP7a51yGRbwSR1CMEliECAdUolDRdkkloz01+1r0F1Rhy36QO5bWbOurpGOuLmJAAmkKRjmqIBuVQvEQ5b+KT1YchT6/oQuu2dEB0ENiFaoCa0RAvUVHuzoSiAfm8iU95qgVDnt/QldZuWoD8wzAUsWIF5ccYRjlv0tNVx5DnNnRhELPFbcTBuKPZ95DEOjgUX4dRJU9BFmO2mMlPe6uEIc+u72xClBTFW+3XQiqoY14w1fsx1meGQygg/40pURA6JoeiQeW5yU95h1Qa8sy6TiYkUabiq377lgC4jhASopSeO//oH7MWpr6UHJJgOUzsvrBXRsSv3DfpicphyNNrO5qQeKmK+EHp9T9u3v4JmObHFvU692i7D81KGjtqCLAKW03JkIqQW8f4GMY3pBKQ9rTWcUg6prFu1lunDFFlelSqJ9xTv62zXa0mou2q0lSGMe43MJOf8FcIQ55c045BzGKZqGZ0taoArtoCpHoiHIU6IuuwxaROwkx5MpA3hjyxuq0OEU/dK2RqfIoOQBBtERYYxcBMfSqYF4Y8vroNZV1fnTEx7ixm2lNFthjyy84H6EHHAhAB1YyBjlENTNSn3jft6eL/xZDixDH65eHLoDijAPhgwqxndMyMZ0osMYRSOtkd23ntz56bkBF5YTQDE/UzTOkQK0g7AJvdsR31fnTfyBfjyQ7TrGfLczCEvemYfgAWJ5Rwve8P3YCAtgsgfDARj5rFPMcwp0FOwcjhet8euB5BupMLJh1mw6QawzT7+fCQ0yAmpt5xTL9vDlyLgMYXEwto9815PjLEhFhhvt5/DVdMxKMZPTP3hegQ8y+sMF/uu1rH7OCKifm1+4zytpi9V8LPDUMRPqZmS9th4gyz5wr4KoChGtC31hVoVdgLklgXbWr0sbwuED7yjlE2X8wXey6HT91uj6FAc9Ib7/VdiXxjCzkd8/nuy2wxrMvba2fizcGzpwDYCiAEYAusE8oHkoP5bNelOmabJUaTgWbJQbFPzl1Wu/p6xALzyc5LLDFqBjir8LEjD/X/uj0HyOmYkIHxqltzqihJ4GzpsSMPD/yWGyQH8/GOi3MwcgLog+uXvnr2mHN5QnIwH22/yMSYEHLD0tf4Q3IxH26/EF7FwJiQ188Zyxligflg+wUGRk4CfQ3IOP4QS8y2C3A4sgX9hBuXvn4uV4g95p9dz6MxOo+9td/rt3KE2GMA9APwHiHkXb4Qe8w3AKbqkCnIM/8C+TLMZcAMCYoAAAAASUVORK5CYII=') no-repeat 20px 21px, -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(0.5, #ffffff), color-stop(0.8, #f6f6f6), color-stop(0.96, #f5f5f5), to(#bbbbbb)) 0 0;
|
|
border-radius: 12px;
|
|
-webkit-border-radius: 12px;
|
|
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
|
|
-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
|
|
}
|
|
.news-label p,
|
|
.filtering-label p {
|
|
display: box;
|
|
display: -webkit-box;
|
|
box-align: center;
|
|
-webkit-box-align: center;
|
|
width: 700px;
|
|
min-height: 70px;
|
|
}
|
|
.header-news-button,
|
|
.news-button {
|
|
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAIy0lEQVRYhbWZW48cRxXH/6cufZme9bK2WeN7Ak4cMFEsMCISUiIjJyJveeGFT8ObPwwSrwFxMUQxBHCIHRzLNmDsNeuNN17v2rPT07eq4qGrempqenaJCCUdVU13dfevz5w6l2oyl1ewoFHPmIJxeGy/Zqwg6MNj4bhr4guChgIArGduCOn3OgD1xb+Ggut6gRdpzxfWM14E3QdrvD4cLwLvjvnA+2mTeeJ+856X6NNwCKcCeI3F4DPQDngRbAjHgrF/jGFvDftgKuj9sZsbvjQBMGIfWB9wL/G17WvZ15YP2SfkzcEiaF/DIawPwtH+G673JQTvM4kQtAnENynl3WMOOrThEDaElF4vMQ/u/hG/+X+5D1lb4bb3FdYE17sXh8BiM/BhHWDk9W7szvdpOdRu7cFWPbB+a4AZ70IO2Neur2Ef1gHGXu/GobZ9N+cWUajVCrPmtJ93ceeNwKwnWAQbe5J4EimNBIBsNGJtjNQGQpsWmBE0IzSMqBYMJYCaMxQBsG+/i4AdNAs17MOGwAmA1InSSLVBWimTqezoEXn8/Gvy4MmzJKKMJwdWAUAVzzdNU43rpw/vjNev3+DjjccRpzEjTDibA+6DnBMyl1ck5rUqA4060AGAgdLIKmWGdbp6LH750jvxodOvwWiCKgGtAGPXCTGAcYDHADFTbj24Ud799Xtysvko4rTLGcYAcisTKwWA0oozoQZ2HZC5vBIFWnX2mlhgB5oByGqFpUljltnx713IXvnhj8kYiToHmgItcBMAixZYJIAcwBDV49u//Zle/8u1VNAzyTECMLbiwEsLXllxa0CFXiI0iRlzqBWGk8Ysi5d/9M7g1HfeQp0D1S5Q562oCtA1YOziJgKYBHgEyAHQFKBoKIfffOsneXboq5O7v3gPICN5b0ARtueY+mbyV7UfKObsV2mkk8Ys0Ynvvz44ef4S6hxYPg1wAaxdBYqdFljVsxrmFrgp7As1gFEYnDx/aZRvb0/+/aerjKjmbC6Y+EGFw/pzX8Ohh+iglUZSKjOskyMnD555413UE8LqOSBbbQEPfwt4chtoqn6TEBEgBoBqrI0bAIyGZ9549+mT+2tl9biKQTVnnQmEUbTTcJhl+dBdsKi1SfIKw8FLF98mmAhgQHakhVV1q7liFyjH/VLsAsUIKL2+3AXBRIOXLr6dVxjW2iSY9ethIOpMAlic6AilIRuNRA+PHksPn34V5QiA8WBLYO2PQDVuf/d6CQlo3WrWACBubTtGevj0q6Ph0WNNuTFSGtJzdz5wF/LDbK03eFQKSXLi/AVoRahzIN8CNq4DUQas/QHYvAk0pbVRhZnGOKCjfrtuPQclJ85fqO5uPEhFFzFD2I5x32yt1kYWtYkPLR97EU0J1EUL9/dfAsVzoBoBdWWB2wU14yVIA9oAxjohkgAvADG9V3Tg6Au7tYkHEpIz8h3AXEkWurVQeK0gao1IxNlKC1W3i6uxJtE0dqwssEsfrB7IRlVqWuF1O7+punvJZHiw1ohqBZGIubx6RsJU0Gm767UBUxqciSiF0e1frl1v7dVoa6NOjBXvnJvrrvOOMRGlSoO7HCRk8Ftf1TzXtAF1EHofcebQvb5NA/aab0z7jP+i9WnYtZl9A1VVBUxQgxqaLS27qs0BBefa9CW4B4OqqsKd7Xn2HHCYEfnVq7KPVvXk+Q6YQCfEWw/gerAet072GJudSxz+var82baxz0IbJBZma07DfdAKaPNZyVCNnz5aA48AZsUfk7SZqrCOJxgzYecE1/IY4BHy7Y2HkqFihMZ/dg9Xp2Fg9k/tikXJUDJCufXgk5sAM5Bp6z9FCvBkKiy2IPEUzD/mzxXuHgkAZrYefHKTEUrZJvmN93zfqACvCA33DDpgzqiOBfLRaOPRzua9O185fOoVRNnULYWRbc4Pc0DEgExbibI2c7P9zua9O2p3Yz0esDziVAXAKmCbs+GwYKw5oUwl8kTSaP3W+x9ogwbREK0sWRlORWZtoiMG7dg/F8zXBs36rfc/iAXtphI52sTHJe0+cMfIf3opdXVdb23HCEwbcGXA8klu8klZrxw7ewbkvBCbZmVMtiLiqdlEFjpeAuIDQLIEJMtANMT9v135VbV979ZyQk8ySc8jQWNMK45eeBFo1qVyfikuJKc8ixBVCltbDz/+KBosLx8/893XQaxdWNxCukgY5g0inppBsgREA6z/49qH2w8//ujQgLayiEaSUx6AOtOYWYQO2N9O8jc8KgBcMIhM0qhWEEpDfHb7d1eK8c7oxXNvXmSDgwIiBup0H+BW2xrU/OvGb67sPLx+bSWlz4cR7WSSRraadsANZm25Y/SBwx2a2jcNzkDDqA3lysDsPLz+4V8/X3v09W+/+YOV1Re+QfGQZhIgoF1wXAAihiFmtjfv//Pezd9fpeLp2oGEtpYT2hpG9Iwz5JjWcGHhObOzuQiYecBdphQLACBjDDQnVLvV0+Lun3/+WKSHvrZ66tzZlcOnTgkZJ+lwZQUAJrs7281kVGw/+XRtc+3TO81k67OBpGfDlLYPxPRsGNHzWGCM2Wq5b9FN46S5vOIyNn8/Ldye8kv+uNFIx5UZ7lYmG1dYymuzVDYYVMokxkBqAw4AjKCIUEecilggH0gaZRFGw4jGWUS7gs1UyK60D7XsBxMj7A+G6aZbVz9htnV2LhhUFlEjOYpUYlw22CkapGWDuNHgxgITtXNjQWUiMIkFFYlAEXEqxKzNuj5ccKGGtQhgfI+xENhCN4JRGXFMEJOY1CZWhrg24Eq3SRVn0IygOEGlkkoAjWAdlA/YZ7t94RnOhh2Q03K45ekD+wtTWAC+FFOO/bdbwx1Mf4PQ9wwNZiPcjJfwgdwDXGvQr33hgDHdNv1fNrQV5jUbahjANIEP885Fn6ZC1/dlfjLoyx3msjVnEt1Xmn2g/Yj4//4oMwcLzyT2gibvIgcW7nl90c9efqK+l0bnqpDQhimY4EP4D3UfT76MD4t7ajTo8R8O7GvP17p6+gAAAABJRU5ErkJggg==') no-repeat 15px center;
|
|
}
|
|
.news-label {
|
|
padding: 0 !important;
|
|
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAaCAQAAAAUYRSMAAABbklEQVR4AW2KJXTbYRwAPx1V/0ZeTdfbednIYceMZsy8MJcDDRfDNGZQUZkZ86Zu3/vnF86dvFPHNpzKnOMKV+sXNqphnHpygyniJJn9cs88ZDinc44qNYoksA8ul4gZWUuJFI7+xV+fp0xVNJZTPcN3V7K+rENFLOrF5eoa2IJl+d0CBUpiQS+ezoIJvSy+S5OnKOZJyyIwhmXhXZIseTFLEveTcyM9y6NMlBWyYoYk3ifne5cHmTDLZMRVUvgyqgOjWGqZIIusiMvEUYIsqxkLUZbaLvYOu83HuEuEhbbFRlfeZT7CVSaJkxIzH/+4Otl1lGtMECMprurMXsk7Xce4wSTzxMXKOywcw2TkcdcRyVGx3MnbRsbDR7nOBBHmxZLOjKkmO4wcIERYfPhQcpN9XNY5SEh8lUGycAgLcwTFlzqzSXVzpWFhljlt+J+RR1Uv31yuho8Z5r+/n+vNAnuxiFd7s4BJljOsVUP4D0R1qRL4an5FAAAAAElFTkSuQmCC') no-repeat 920px center, -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(0.5, #ffffff), color-stop(0.8, #f6f6f6), color-stop(0.96, #f5f5f5), to(#bbbbbb)) 0 0;
|
|
}
|
|
#header-news {
|
|
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAaCAQAAAAUYRSMAAABbklEQVR4AW2KJXTbYRwAPx1V/0ZeTdfbednIYceMZsy8MJcDDRfDNGZQUZkZ86Zu3/vnF86dvFPHNpzKnOMKV+sXNqphnHpygyniJJn9cs88ZDinc44qNYoksA8ul4gZWUuJFI7+xV+fp0xVNJZTPcN3V7K+rENFLOrF5eoa2IJl+d0CBUpiQS+ezoIJvSy+S5OnKOZJyyIwhmXhXZIseTFLEveTcyM9y6NMlBWyYoYk3ifne5cHmTDLZMRVUvgyqgOjWGqZIIusiMvEUYIsqxkLUZbaLvYOu83HuEuEhbbFRlfeZT7CVSaJkxIzH/+4Otl1lGtMECMprurMXsk7Xce4wSTzxMXKOywcw2TkcdcRyVGx3MnbRsbDR7nOBBHmxZLOjKkmO4wcIERYfPhQcpN9XNY5SEh8lUGycAgLcwTFlzqzSXVzpWFhljlt+J+RR1Uv31yuho8Z5r+/n+vNAnuxiFd7s4BJljOsVUP4D0R1qRL4an5FAAAAAElFTkSuQmCC') no-repeat 1160px center, -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(0.5, #ffffff), color-stop(0.8, #f6f6f6), color-stop(0.96, #f5f5f5), to(#bbbbbb)) 0 0;
|
|
}
|
|
#header-news .close-button {
|
|
display: block;
|
|
float: right;
|
|
width: 80px;
|
|
height: 70px;
|
|
border-left: 2px solid white;
|
|
-webkit-box-shadow: -2px 0 0 #dddddd;
|
|
}
|
|
#header-news .header-news-button {
|
|
display: block;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
line-height: 70px;
|
|
padding: 0 50px 0 65px;
|
|
font-size: 24px;
|
|
color: #323232;
|
|
}
|
|
#header-news .close-button {
|
|
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAiCAQAAACUuxN0AAACqUlEQVR4AY2QJ3TcTBSFBxuJnzRkvDS9b3Pb3ou2V8kdpaJQYyFX5m4jI6UzW86fP9gkPfJxYUI371jeSN4dl/ehmXe/q8Ja0ysOqD6176VHYGeMV+h76VMH1F6xbeGbTCCPAtIIaF7hdD2gpVGgZAK+SdvCPymiiRFikNZhfgXpYa1ACcpRWoS/VeEjXcYYxo8YQhEhrfNDPEJIK9LWTI2RIZpv0S9mIGGUrlrQWyBoVtj04NHTrdQoWRn0iyym1jFCRzsy8lTh/lfhJj0PuS01gjpiKpPeyBjpQEIOAaow9YCWg8RJyZDesKVJCcOdmL9Jcwkuwa+JdOJlJCxNMtTWVBlDHBrIIqgFtSwa3L2MNRU1BgeUNVXCIIc6ikSdu5NAugIHYww3oKyqDUgcGgT/fpV03GDmmBV1NC9I3a5bFStqDY0LUMOKXbdXLKsVWp9NBcuWzqsoo3oGZb5ur5j7WEKFD0qY+8jVrfnirOt5CvLJo65/cZ6h3xU8WpRiRT60icKj3RUYf+4ILi2ELApnkEUILu2OwNMdzp0g0sidDSWCcO7ccXTorr0gUhAvQIoqXHsnKm6THqJF9oKkEKKK262KWw7nXgAJpDkUjILBu08gAOfeLapgN6893vMjjhQH0dhe2F4QDc6ODD8e7928xh5M+uiQ7IT0rQVMYGKLKjh7snx4MMn63oeR4JA19csEVWQNXiaMvvdsdCNCXe1kjnVGY1ZkjM5UBKMb7MfTih7DSdI23apIG+25iv7jKUNkd7KqR2GRMjYt3VaxuZAy7LmqvjuJCEMXnuqTFT0CkyRHtyqSRitX0fVJPEUXrcwK+VuYrsVDS+dXiIdtOjuugLK5oK5DsXR+BRR1nR6itHSrYhQK8crS+RWUUEydt+xmFxh02x/yFy98PdyB7+HaAAAAAElFTkSuQmCC') no-repeat center center;
|
|
}
|
|
.community-list .community-list-body {
|
|
display: table;
|
|
width: 100%;
|
|
padding: 10px 0;
|
|
}
|
|
.community-list .news-community-badge {
|
|
background: var(--theme, #0070ff);
|
|
color: #FFF;
|
|
display: inline-block;
|
|
font-size: 10px;
|
|
margin: 0;
|
|
position: relative;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.community-list .news-community-badge + .title {
|
|
margin-top: 0;
|
|
}
|
|
.community-list .community-list-body {
|
|
display: table;
|
|
width: 100%;
|
|
padding: 10px 0;
|
|
}
|
|
.community-list .icon-container {
|
|
float: none;
|
|
display: table-cell;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
line-height: 0;
|
|
padding: 0 0 0 10px;
|
|
}
|
|
.community-list .icon-container .icon {
|
|
border: 1px solid #dddddd;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.community-list .user-community .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.community-list .title {
|
|
display: block;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #323232;
|
|
margin-bottom: 2px;
|
|
margin-top: 3px;
|
|
line-height: 1.2;
|
|
position: relative;
|
|
}
|
|
.community-list .title:hover {
|
|
text-decoration: none;
|
|
}
|
|
.community-list .text {
|
|
color: #969696;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
display: block;
|
|
}
|
|
.community-list .body {
|
|
margin-left: 0;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
padding: 5px 15px 0 10px;
|
|
word-wrap: break-word;
|
|
max-width: 176px;
|
|
}
|
|
.community-list .community-list-cover {
|
|
display: none;
|
|
}
|
|
.community-list.other-communities-list .text {
|
|
display: none;
|
|
}
|
|
.community-list .siblings {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
padding: 0 5px;
|
|
width: 40px;
|
|
color: #969696;
|
|
text-align: center;
|
|
border-left: 1px solid #dddddd;
|
|
*width: 70px;
|
|
*text-align: left;
|
|
*cursor: pointer;
|
|
z-index: 2;
|
|
}
|
|
.community-list .siblings:before {
|
|
content: 'l';
|
|
font-size: 30px;
|
|
line-height: 56px;
|
|
}
|
|
.community-list .siblings:hover {
|
|
text-decoration: none;
|
|
}
|
|
.community-card-list {
|
|
margin-bottom: 3px;
|
|
*zoom: 1;
|
|
}
|
|
.community-card-list:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.community-card-list > li {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
margin: 0 1% 8px 0;
|
|
width: 49.5%;
|
|
float: left;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.community-card-list > li:after {
|
|
content: none;
|
|
}
|
|
.community-card-list > li:nth-child(2n) {
|
|
margin-right: 0;
|
|
}
|
|
.community-card-list > li:nth-child(2n+1) {
|
|
clear: both;
|
|
}
|
|
.community-card-list .community-list-body {
|
|
padding: 0;
|
|
}
|
|
.community-card-list .icon-container {
|
|
padding: 10px 0 10px 10px;
|
|
}
|
|
.community-card-list .body {
|
|
padding: 5px 10px 0;
|
|
}
|
|
.community-card-list .community-list-cover {
|
|
display: block;
|
|
}
|
|
.community-card-list .title {
|
|
overflow: hidden;
|
|
max-height: 2.4em;
|
|
-webkit-line-clamp: 2;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
.community-small-list .icon-container {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.community-small-list .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.community-small-list .body {
|
|
padding: 10px 15px 10px 10px;
|
|
}
|
|
.device-new-community-list .community-list-cover,
|
|
.special-community-list .community-list-cover {
|
|
display: none;
|
|
}
|
|
.community-list-cover {
|
|
max-width: 100%;
|
|
min-height: 60px;
|
|
display: block;
|
|
border-radius: 3px 3px 0 0;
|
|
max-height: 300px;
|
|
margin: auto;
|
|
}
|
|
.post-list-loading {
|
|
text-align: center;
|
|
}
|
|
.post-list-loading img {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
.list-content-with-icon-and-text li {
|
|
*zoom: 1;
|
|
padding: 15px;
|
|
border-top: 1px solid #dddddd;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.list-content-with-icon-and-text li:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.list-content-with-icon-and-text .title {
|
|
margin-bottom: 2px;
|
|
margin-top: 6px;
|
|
display: block;
|
|
}
|
|
.list-content-with-icon-and-text .text {
|
|
color: #969696;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
display: block;
|
|
height: 1.6em;
|
|
}
|
|
.list-content-with-icon-and-text .text.placeholder {
|
|
color: #999 !important;
|
|
}
|
|
.list-content-with-icon-and-text .text.type-memo {
|
|
font-style: italic;
|
|
}
|
|
.list-content-with-icon-and-text .text.my:before {
|
|
content: "b";
|
|
font-family: "MiiverseSymbols";
|
|
margin-right: 5px;
|
|
}
|
|
.list-content-with-icon-and-text .timestamp {
|
|
float: right;
|
|
margin: 0 5px;
|
|
color: #969696;
|
|
}
|
|
.list-content-with-icon-and-text .body {
|
|
margin-left: 66px;
|
|
}
|
|
.list-content-with-icon-and-text .nick-name {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #323232;
|
|
}
|
|
.list-content-with-icon-and-text .nick-name a {
|
|
color: #323232;
|
|
}
|
|
.list-content-with-icon-and-text .id-name {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
padding: 1px 3px;
|
|
margin-top: 2px;
|
|
color: #969696;
|
|
margin-right: 5px;
|
|
}
|
|
.list-content-with-icon-and-text .toggle-button {
|
|
float: right;
|
|
margin: 10px 0 0 10px;
|
|
}
|
|
.list-content-with-icon-and-text .user-profile-memo-content {
|
|
margin-top: 10px;
|
|
margin-bottom: 5px;
|
|
text-align: center;
|
|
margin-right: 62px;
|
|
}
|
|
.list-content-with-icon-and-text .user-profile-memo-content img {
|
|
width: 100%;
|
|
max-width: 320px;
|
|
vertical-align: bottom;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
select {
|
|
min-width: 80%;
|
|
margin: 0;
|
|
font-size: 16px;
|
|
border: 1px solid #bbb;
|
|
}
|
|
form.search {
|
|
margin: 0 0 15px;
|
|
text-align: left;
|
|
background: #fff;
|
|
border: 3px solid #e0e0e0;
|
|
width: 100%;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
form.search input[type="text"] {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
box-shadow: none;
|
|
border: none;
|
|
font-size: 16px;
|
|
width: 86%;
|
|
height: 32px;
|
|
padding: 0 0 0 2%;
|
|
line-height: 32px;
|
|
margin: 0;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
form.search input[type="text"]:focus {
|
|
outline: none;
|
|
}
|
|
form.search input[type="submit"] {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
background: #fff;
|
|
background-image: none;
|
|
border: none;
|
|
color: #646464;
|
|
font-family: 'MiiverseSymbols', sans-serif !important;
|
|
font-size: 16px;
|
|
font-weight: normal!important;
|
|
height: 32px;
|
|
margin: 0;
|
|
padding: 0;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
width: 12%;
|
|
float: right;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#post-form {
|
|
margin: 15px;
|
|
position: relative;
|
|
}
|
|
#post-form.folded {
|
|
margin: 15px 15px 10px;
|
|
}
|
|
#post-form.folded .textarea-text {
|
|
height: 3.4em;
|
|
line-height: 1.2em;
|
|
}
|
|
.textarea-memo img {
|
|
margin-top: 30px;
|
|
margin-bottom: 10px;
|
|
}
|
|
/*
|
|
canvas {
|
|
|
|
}
|
|
*/
|
|
#post-form.folded .feeling-selector,
|
|
#post-form.folded .multi-language-selector,
|
|
#post-form.folded .language-id-selector,
|
|
#post-form.folded .language-bodies,
|
|
#post-form.folded .spoiler-button,
|
|
#post-form.folded .select-from-album-button,
|
|
#post-form.folded .topic-categories-container,
|
|
#post-form.folded .url-form,
|
|
#post-form.folded .form-buttons,
|
|
#post-form.folded .file-button-container,
|
|
#post-form.folded .textarea-menu,
|
|
#post-form.folded .region-ids,
|
|
#post-form.folded .open-topic-post-existing-warning,
|
|
#post-form.folded.body-folded .textarea-text {
|
|
display: none;
|
|
}
|
|
#post-form + #community-post-list .list > div:first-child {
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.tutorial-window {
|
|
background-color: rgba(255, 255, 255, 0.9);
|
|
width: 100%;
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-box;
|
|
display: -o-box;
|
|
display: box;
|
|
-webkit-box-align: center;
|
|
-moz-box-align: center;
|
|
-ms-box-align: center;
|
|
-o-box-align: center;
|
|
box-align: center;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.tutorial-window .content {
|
|
border: 2px solid var(--theme, #0070ff);
|
|
padding: 25px 20px;
|
|
-webkit-border-radius: 10px;
|
|
-moz-border-radius: 10px;
|
|
-ms-border-radius: 10px;
|
|
-o-border-radius: 10px;
|
|
border-radius: 10px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
.tutorial-window .window-bottom-buttons {
|
|
margin-top: 12px;
|
|
}
|
|
.open-topic-post-existing-warning {
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
position: absolute;
|
|
z-index: 2;
|
|
}
|
|
.open-topic-post-existing-warning + .textarea-container .textarea {
|
|
margin: 0 0 -10px;
|
|
outline: none;
|
|
}
|
|
.topic-title-input,
|
|
.textarea {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
resize: vertical;
|
|
width: 96%;
|
|
padding: 1.8%;
|
|
margin: 0 0 10px;
|
|
border: 1px solid #969696;
|
|
font-size: 16px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
-moz-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
-ms-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
-o-box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
}
|
|
.topic-title-input.with-image,
|
|
.textarea.with-image {
|
|
padding-left: 23.8%;
|
|
width: 74%;
|
|
}
|
|
.textarea {
|
|
height: 5.6em;
|
|
}
|
|
.feeling-selector {
|
|
height: 61px;
|
|
margin-bottom: 15px;
|
|
text-align: center;
|
|
background-color: #646464;
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#646464), to(#969696));
|
|
background: -webkit-linear-gradient(top, #646464 #969696);
|
|
background: -moz-linear-gradient(top, #646464 #969696);
|
|
background: -ms-linear-gradient(top, #646464 #969696);
|
|
background: -o-linear-gradient(top, #646464 #969696);
|
|
background: linear-gradient(top, #646464 #969696);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.feeling-selector .feeling-button {
|
|
font-size: 45px;
|
|
font-weight: normal !important;
|
|
color: #FFFFFF;
|
|
text-shadow: 0px 1px 6px #000000;
|
|
-ms-filter: progid:DXImageTransform.Microsoft.DropShadow(offx=0px, offy=1px, color=#000000);
|
|
line-height: 60px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
width: 15%;
|
|
position: relative;
|
|
}
|
|
.feeling-selector .feeling-button.checked {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.feeling-selector input {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
outline: 0;
|
|
-webkit-opacity: 0;
|
|
-moz-opacity: 0;
|
|
-ms-opacity: 0;
|
|
-o-opacity: 0;
|
|
opacity: 0;
|
|
}
|
|
.ie8-earlier .feeling-selector input {
|
|
display: inline;
|
|
height: 0;
|
|
width: 0;
|
|
outline: none;
|
|
}
|
|
.ie8-earlier .feeling-selector .feeling-button.changing:before {
|
|
content: none;
|
|
}
|
|
.feeling-selector .feeling-button-normal:before {
|
|
content: "C";
|
|
}
|
|
.feeling-selector .feeling-button-happy:before {
|
|
content: "H";
|
|
}
|
|
.feeling-selector .feeling-button-like:before {
|
|
content: "L";
|
|
}
|
|
.feeling-selector .feeling-button-surprised:before {
|
|
content: "O";
|
|
}
|
|
.feeling-selector .feeling-button-frustrated:before {
|
|
content: "G";
|
|
}
|
|
.feeling-selector .feeling-button-puzzled:before {
|
|
content: "U";
|
|
}
|
|
.topic-categories-container {
|
|
position: relative;
|
|
margin: 5px 0 15px;
|
|
background: #fff;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: 0 1px 0 #ffffff;
|
|
-moz-box-shadow: 0 1px 0 #ffffff;
|
|
-ms-box-shadow: 0 1px 0 #ffffff;
|
|
-o-box-shadow: 0 1px 0 #ffffff;
|
|
box-shadow: 0 1px 0 #ffffff;
|
|
width: 100%;
|
|
padding: 0;
|
|
}
|
|
.topic-categories-container .tag-categories-icon {
|
|
position: relative;
|
|
display: block;
|
|
float: left;
|
|
padding: 3px 10px 1px;
|
|
border-radius: 6px;
|
|
background: #e8316e;
|
|
height: 25px;
|
|
width: 27px;
|
|
}
|
|
.topic-categories-container .tag-categories-icon:before {
|
|
position: absolute;
|
|
left: 16px;
|
|
top: 2px;
|
|
content: "t";
|
|
font-size: 19px;
|
|
color: #fff;
|
|
}
|
|
.topic-categories-container .tag-categories-icon:after {
|
|
left: 100%;
|
|
top: 50%;
|
|
border: solid transparent;
|
|
content: " ";
|
|
height: 0;
|
|
width: 0;
|
|
position: absolute;
|
|
pointer-events: none;
|
|
border-color: rgba(213, 115, 180, 0);
|
|
border-left-color: #e8316e;
|
|
border-width: 6px;
|
|
margin-top: -6px;
|
|
}
|
|
.ie8-earlier .topic-categories-container.changing:before {
|
|
content: none;
|
|
}
|
|
.topic-categories-container select {
|
|
display: block;
|
|
margin-left: 60px;
|
|
min-width: 532px;
|
|
height: 30px;
|
|
}
|
|
.language-id-selector:not(.none) + .topic-categories-container + .topic-title-input {
|
|
display: none;
|
|
}
|
|
.post-count-container {
|
|
text-align: right;
|
|
color: #969696;
|
|
font-size: 11px;
|
|
margin-bottom: 3px;
|
|
}
|
|
.post-count-container .remaining-today-post-count {
|
|
color: #646464;
|
|
font-size: 13px;
|
|
padding: 0 7px 0 3px;
|
|
}
|
|
.post-form-footer-options {
|
|
display: table;
|
|
width: 100%;
|
|
margin: 0 0 15px;
|
|
}
|
|
.post-form-footer-options .post-form-footer-option-inner {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
.post-form-footer-options .post-form-select-from-album {
|
|
width: 60%;
|
|
padding-right: 10px;
|
|
}
|
|
.post-form-footer-options .select-from-album-button {
|
|
width: 100%;
|
|
font-size: 14px;
|
|
}
|
|
.post-form-footer-options .select-from-album-button:before {
|
|
content: "X";
|
|
vertical-align: middle;
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
}
|
|
.spoiler-button {
|
|
position: relative;
|
|
display: block;
|
|
margin: 0;
|
|
border: 1px solid #dddddd;
|
|
background: #fff;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding: 10px 0;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: 0 1px 0 #ffffff;
|
|
-moz-box-shadow: 0 1px 0 #ffffff;
|
|
-ms-box-shadow: 0 1px 0 #ffffff;
|
|
-o-box-shadow: 0 1px 0 #ffffff;
|
|
box-shadow: 0 1px 0 #ffffff;
|
|
}
|
|
.spoiler-button:before {
|
|
content: "v";
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
color: #dddddd;
|
|
}
|
|
.spoiler-button input {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
-webkit-opacity: 0;
|
|
-moz-opacity: 0;
|
|
-ms-opacity: 0;
|
|
-o-opacity: 0;
|
|
opacity: 0;
|
|
}
|
|
.spoiler-button.checked {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.spoiler-button.checked:before {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.form-buttons {
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
.form-buttons.three button {
|
|
margin-bottom: 10px;
|
|
}
|
|
.form-buttons.three {
|
|
margin-bottom: -14px;
|
|
}
|
|
.form-buttons input {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.form-buttons .gray-button {
|
|
margin-right: 10px;
|
|
}
|
|
.warning-content-forward .age-gate p {
|
|
padding: 20px 0;
|
|
}
|
|
.warning-content-forward .age-gate .select-content {
|
|
margin: 0 0 30px;
|
|
}
|
|
.warning-content-forward .age-gate .select-button {
|
|
width: 90px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.warning-content-forward .age-gate .year-select {
|
|
width: 110px;
|
|
}
|
|
.warning-content-forward .age-gate select {
|
|
height: 28px;
|
|
}
|
|
#community-content {
|
|
padding-bottom: 10px;
|
|
overflow: hidden;
|
|
}
|
|
.url-form {
|
|
width: 96%;
|
|
padding: 1.8%;
|
|
border: 1px solid #969696;
|
|
font-size: 16px;
|
|
border-radius: 5px;
|
|
box-shadow: inset 0 2px 6px rgba(0,0,0,0.12), 0 1px 0 #fff;
|
|
}
|
|
.file-button-container {
|
|
margin-top: 15px;
|
|
background: #f6f6f6;
|
|
padding: 1.8%;
|
|
display: block;
|
|
margin-bottom: 15px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.input-label {
|
|
display: block;
|
|
color: #646464;
|
|
}
|
|
.input-label span {
|
|
font-size: 12px;
|
|
color: #969696;
|
|
}
|
|
input.file-button {
|
|
font-size: 16px;
|
|
color: #646464;
|
|
margin-top: 5px;
|
|
background: #f6f6f6;
|
|
width: 96%;
|
|
}
|
|
.region-ids,
|
|
.multi-language-selector,
|
|
.language-id-selector {
|
|
margin: 15px 0 10px;
|
|
background: #f6f6f6;
|
|
padding: 1.8%;
|
|
display: block;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.language-id-selector:not(.none) + .textarea-container .album-image-preview {
|
|
position: static;
|
|
text-align: center;
|
|
width: 100%;
|
|
margin: 12px 0 0 0;
|
|
}
|
|
.language-id-selector:not(.none) + .textarea-container .album-image-preview img {
|
|
height: 80px;
|
|
width: auto;
|
|
}
|
|
.region-ids label {
|
|
margin: 0 5px 5px 0;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#reply-form {
|
|
margin: 15px 15px 20px;
|
|
}
|
|
.textarea-container {
|
|
position: relative;
|
|
}
|
|
.textarea-container .community-container {
|
|
background: #f6f6f6;
|
|
padding: 5px;
|
|
margin-bottom: 5px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.textarea-container .community-container .community-icon {
|
|
width: 28px;
|
|
height: 28px;
|
|
vertical-align: middle;
|
|
margin-right: 4px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.textarea-container .album-image-preview {
|
|
position: absolute;
|
|
left: 2%;
|
|
top: 55px;
|
|
width: 20%;
|
|
}
|
|
.textarea-container .album-image-preview img {
|
|
height: auto;
|
|
width: 100%;
|
|
vertical-align: bottom;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.community-post-list .textarea-container .community-container,
|
|
.community-top .textarea-container .community-container {
|
|
display: none;
|
|
}
|
|
.community-post-list .textarea-container .album-image-preview,
|
|
.community-top .textarea-container .album-image-preview {
|
|
top: 15px;
|
|
}
|
|
.mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
background: url('img/mask-bg-white.png');
|
|
background: rgba(240, 240, 240, 0.6);
|
|
z-index: 31;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
}
|
|
body.masked {
|
|
overflow: hidden;
|
|
|
|
}
|
|
.dialog {
|
|
display: table;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 30;
|
|
}
|
|
.dialog.active-dialog {
|
|
z-index: 32;
|
|
}
|
|
.dialog.track-error .window-body {
|
|
padding: 30px 25px 40px;
|
|
}
|
|
.dialog .dialog-inner {
|
|
/*
|
|
-webkit-backdrop-filter: blur(5px);
|
|
backdrop-filter: blur(5px);
|
|
*/
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
*padding-top: 20px;
|
|
}
|
|
.dialog .window {
|
|
width: 615px;
|
|
margin: auto;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
|
-moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
|
-ms-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
|
-o-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
|
}
|
|
.dialog .window-title {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
height: 34px;
|
|
padding: 0 10px;
|
|
border-top: 1px solid var(--theme, #4697ff);
|
|
border-bottom: 1px solid var(--theme, #004baa);
|
|
background: var(--theme, #0070ff);
|
|
color: #fff;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
line-height: 34px;
|
|
text-align: center;
|
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
|
|
-webkit-border-radius: 5px 5px 0 0;
|
|
-moz-border-radius: 5px 5px 0 0;
|
|
-ms-border-radius: 5px 5px 0 0;
|
|
-o-border-radius: 5px 5px 0 0;
|
|
border-radius: 5px 5px 0 0;
|
|
}
|
|
.dialog .window-body {
|
|
padding: 10px 10px 20px;
|
|
-webkit-border-radius: 0 0 5px 5px;
|
|
-moz-border-radius: 0 0 5px 5px;
|
|
-ms-border-radius: 0 0 5px 5px;
|
|
-o-border-radius: 0 0 5px 5px;
|
|
border-radius: 0 0 5px 5px;
|
|
background: #fff;
|
|
border: 1px solid #dddddd;
|
|
border-top: none;
|
|
/*text-align: center;*/
|
|
}
|
|
.dialog .window-body-content {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
padding: 10px 0;
|
|
}
|
|
.dialog .select-content {
|
|
text-align: center;
|
|
}
|
|
.dialog .select-button-content {
|
|
padding: 10px 0;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.dialog .textarea {
|
|
margin: 15px 0 0;
|
|
}
|
|
.dialog .form-buttons {
|
|
margin-top: 10px;
|
|
}
|
|
.dialog p.description {
|
|
text-align: left;
|
|
margin: 0 0 10px 0px;
|
|
}
|
|
.dialog span.note {
|
|
font-size: 12px;
|
|
color: #969696;
|
|
display: block;
|
|
}
|
|
.dialog .post-id,
|
|
.dialog .violator-id {
|
|
margin: 10px 0;
|
|
color: #969696;
|
|
font-size: 12px;
|
|
}
|
|
#disabled-report-violation-notice .window-body-inner {
|
|
text-align: center;
|
|
}
|
|
#disabled-report-violation-notice .window-body-inner p {
|
|
display: inline-block;
|
|
margin: 10px auto 5px;
|
|
text-align: left;
|
|
}
|
|
.dialog#edit-post-page .window-body {
|
|
text-align: center;
|
|
}
|
|
#official-tags-page .window-body {
|
|
text-align: center;
|
|
}
|
|
#official-tags-page ul {
|
|
margin: 10px 0 15px;
|
|
}
|
|
#official-tags-page li {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
margin: 5px;
|
|
max-width: 460px;
|
|
}
|
|
#official-tags-page li a {
|
|
color: #00acca;
|
|
width: auto;
|
|
padding: 5px 15px;
|
|
font-size: 16px;
|
|
text-align: left;
|
|
}
|
|
#official-tags-page li a:before {
|
|
content: "t";
|
|
font-size: 19px;
|
|
vertical-align: middle;
|
|
color: #00acca;
|
|
margin-right: 5px;
|
|
}
|
|
.card {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.sidebar-container {
|
|
margin: 0 0 15px 0;
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.sidebar-container .report-buttons-content {
|
|
padding: 0 10px 10px;
|
|
margin: -5px 0 0;
|
|
}
|
|
.sidebar-container .shop-buttons-container .button-shop {
|
|
margin-bottom: 10px;
|
|
}
|
|
.sidebar-container .shop-buttons-notice {
|
|
margin: 0 15px 15px;
|
|
font-size: 12px;
|
|
color: #969696;
|
|
}
|
|
.sidebar-container h4 a {
|
|
clear: both;
|
|
display: block;
|
|
padding: 11px 20px 9px 15px;
|
|
background: url('img/icon-arrow-right.png') no-repeat 97.5% center;
|
|
color: #323232;
|
|
-webkit-background-size: 9px 15px;
|
|
-moz-background-size: 9px 15px;
|
|
-ms-background-size: 9px 15px;
|
|
-o-background-size: 9px 15px;
|
|
background-size: 9px 15px;
|
|
display: table;
|
|
width: 100%;
|
|
padding: 0;
|
|
position: relative;
|
|
}
|
|
.sidebar-container h4 a:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.sidebar-container h4 a:before {
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
vertical-align: middle;
|
|
padding: 0 8px 0 12px;
|
|
width: 27px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
position: absolute;
|
|
top: 50%;
|
|
margin-top: -12px;
|
|
}
|
|
.sidebar-container h4 span {
|
|
display: table-cell;
|
|
padding: 12px 30px 12px 47px;
|
|
}
|
|
.sidebar-container h4 .favorite-community-button:before {
|
|
content: "s";
|
|
color: #f79726;
|
|
}
|
|
.sidebar-container .community-list .icon-container {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.sidebar-container .community-list .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.sidebar-container .community-list .user-community .icon-container {
|
|
padding: 0 0 0 10px;
|
|
}
|
|
.sidebar-container .community-list .user-community .icon-container .icon,
|
|
.sidebar-container .community-list .user-community .icon-container .user-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
.sidebar-container .community-list .title {
|
|
background-image: none;
|
|
border: none;
|
|
font-size: 14px;
|
|
padding: 0;
|
|
}
|
|
.sidebar-container .community-list .text {
|
|
display: none;
|
|
}
|
|
.sidebar-container .more-button {
|
|
padding: 8px 0;
|
|
text-align: center;
|
|
background-image: none;
|
|
}
|
|
#sidebar-cover {
|
|
border-bottom: 1px solid #dddddd;
|
|
display: block;
|
|
border-radius: 5px 5px 0 0;
|
|
}
|
|
#sidebar-cover img {
|
|
display: block;
|
|
max-width: 100%;
|
|
min-height: 60px;
|
|
max-height: 300px;
|
|
border-radius: 5px 5px 0 0;
|
|
margin: auto;
|
|
}
|
|
.sidebar-setting li {
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.sidebar-setting li:first-child {
|
|
border: none;
|
|
}
|
|
.sidebar-setting a {
|
|
clear: both;
|
|
padding: 11px 20px 9px 15px;
|
|
background: url('img/icon-arrow-right.png') no-repeat 97.5% center;
|
|
color: #323232;
|
|
-webkit-background-size: 9px 15px;
|
|
-moz-background-size: 9px 15px;
|
|
-ms-background-size: 9px 15px;
|
|
-o-background-size: 9px 15px;
|
|
background-size: 9px 15px;
|
|
border-top: 1px solid #dddddd;
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0;
|
|
position: relative;
|
|
}
|
|
.sidebar-setting a:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.sidebar-setting a:first-child {
|
|
border: none;
|
|
}
|
|
.sidebar-setting a:before {
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
vertical-align: middle;
|
|
padding: 0 8px 0 12px;
|
|
width: 27px;
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 50%;
|
|
margin-top: -10px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.sidebar-setting a > span {
|
|
padding: 12px 30px 12px 47px;
|
|
vertical-align: middle;
|
|
display: block;
|
|
}
|
|
.sidebar-setting a.with-count > span {
|
|
padding-right: 85px;
|
|
}
|
|
.sidebar-setting a.with-count > .post-count {
|
|
width: auto;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
padding-left: 0;
|
|
padding-right: 30px;
|
|
}
|
|
.sidebar-setting a.with-count > .post-count span {
|
|
font-size: 12px;
|
|
line-height: 12px;
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
color: #969696;
|
|
padding: 4px 8px;
|
|
min-width: 30px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.sidebar-setting a.selected {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.sidebar-setting a.selected span {
|
|
font-weight: bold;
|
|
}
|
|
.sidebar-setting .sidebar-menu-setting:before {
|
|
content: "Y";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-info:before {
|
|
content: "w";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-support:be fore {
|
|
content: "h";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-guide:before {
|
|
content: "g";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-diary:before {
|
|
content: "%";
|
|
color: #04c9db;
|
|
}
|
|
.sidebar-setting .sidebar-menu-artwork:before {
|
|
content: "M";
|
|
color: #fcc735;
|
|
}
|
|
.sidebar-setting .sidebar-menu-topic:before {
|
|
content: "$";
|
|
color: #e8316e;
|
|
font-size: 23px;
|
|
}
|
|
.sidebar-setting .sidebar-menu-in_game:before {
|
|
content: "&";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-relation:before {
|
|
content: "l";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-post:before {
|
|
content: "p";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-album:before {
|
|
content: "X";
|
|
}
|
|
.sidebar-setting .sidebar-menu-empathies:before {
|
|
content: "e";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-admin-settings:before {
|
|
content: "y";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-admin-warnings:before {
|
|
content: "n";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-admin-bans:before {
|
|
content: "x";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-admin-meta:before {
|
|
content: "l";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-setting .sidebar-menu-replies:before {
|
|
content: "r";
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.sidebar-container #user-dropdown > span.button {
|
|
width: 35px;
|
|
float: right;
|
|
margin: 5px 5px 5px 5px;
|
|
padding: 0px 0px 35px 0px;
|
|
}
|
|
.sidebar-container #user-dropdown > .button:before {
|
|
content: 'y';
|
|
}
|
|
.sidebar-container #user-dropdown > .button:after {
|
|
font-family: 'MiiverseSymbols', sans-serif;
|
|
font-weight: normal;
|
|
content: 'V';
|
|
vertical-align: middle;
|
|
padding-left: 8px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#sidebar-profile-body {
|
|
padding: 0 15px 10px;
|
|
*zoom: 1;
|
|
}
|
|
#sidebar-profile-body:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#sidebar-profile-body .icon-container {
|
|
width: 74px;
|
|
height: 74px;
|
|
float: left;
|
|
position: relative;
|
|
}
|
|
#sidebar-profile-body .icon {
|
|
width: 72px;
|
|
height: 72px;
|
|
border: 1px solid #dddddd;
|
|
margin-top: 0;
|
|
background-color: #fff;
|
|
}
|
|
#sidebar-profile-body .user-organization {
|
|
margin: 15px 0 -10px 85px;
|
|
line-height: 1.2em;
|
|
}
|
|
#sidebar-profile-body .nick-name {
|
|
color: #323232;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
display: block;
|
|
margin: 15px 0 0 85px;
|
|
line-height: 1.2;
|
|
padding-top: 8px;
|
|
}
|
|
#sidebar-profile-body .nick-name:hover {
|
|
text-decoration: underline;
|
|
}
|
|
#sidebar-profile-body .user-organization + .nick-name {
|
|
margin-top: 2px;
|
|
}
|
|
#sidebar-profile-body .id-name {
|
|
color: #969696;
|
|
font-size: 14px;
|
|
margin-left: 85px;
|
|
font-weight: normal;
|
|
}
|
|
#sidebar-profile-body.with-profile-post-image .user-organization {
|
|
margin-top: 10px;
|
|
}
|
|
#sidebar-profile-body.with-profile-post-image .icon-container {
|
|
margin-top: -20px;
|
|
}
|
|
#sidebar-profile-body.with-profile-post-image .nick-name {
|
|
padding-top: 0;
|
|
margin-top: 10px;
|
|
}
|
|
#sidebar-profile-status {
|
|
background: #f6f6f6;
|
|
display: table;
|
|
width: 100%;
|
|
-webkit-border-radius: 0 0 3px 3px;
|
|
-moz-border-radius: 0 0 3px 3px;
|
|
-ms-border-radius: 0 0 3px 3px;
|
|
-o-border-radius: 0 0 3px 3px;
|
|
border-radius: 0 0 3px 3px;
|
|
}
|
|
#sidebar-profile-status li {
|
|
font-size: 10px;
|
|
text-align: center;
|
|
display: table-cell;
|
|
min-width: 70px;
|
|
}
|
|
#sidebar-profile-status li:last-child a span {
|
|
border-right: none;
|
|
}
|
|
#sidebar-profile-status li a {
|
|
color: #9f9f9f;
|
|
display: block;
|
|
padding: 10px 0;
|
|
}
|
|
#sidebar-profile-status li a > span {
|
|
display: block;
|
|
border-right: 1px solid #dddddd;
|
|
}
|
|
#sidebar-profile-status li a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
#sidebar-profile-status li a.selected {
|
|
font-weight: bold;
|
|
background-image: url('img/bg-select.png');
|
|
background-size: 6px auto;
|
|
}
|
|
#sidebar-profile-status .number {
|
|
color: #323232;
|
|
font-size: 18px;
|
|
display: block;
|
|
margin-bottom: -2px;
|
|
}
|
|
.user-sidebar .button:before {
|
|
display: inline-block;
|
|
margin-top: -2px;
|
|
margin-right: 5px;
|
|
font-size: 16px;
|
|
vertical-align: middle;
|
|
}
|
|
.user-sidebar #edit-profile-settings .button:before {
|
|
content: 'Z';
|
|
}
|
|
.user-sidebar .unfollow-button {
|
|
padding-right: 35px;
|
|
position: relative;
|
|
}
|
|
.user-sidebar .unfollow-button:before {
|
|
background-color: #969696;
|
|
content: "x";
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0px;
|
|
height: 100%;
|
|
margin: 0;
|
|
width: 35px;
|
|
color: #fff;
|
|
line-height: 45px;
|
|
-webkit-border-radius: 0 5px 5px 0;
|
|
-moz-border-radius: 0 5px 5px 0;
|
|
-ms-border-radius: 0 5px 5px 0;
|
|
-o-border-radius: 0 5px 5px 0;
|
|
border-radius: 0 5px 5px 0;
|
|
}
|
|
.user-sidebar .follow-button:before {
|
|
color: var(--theme, #0070ff);
|
|
font-size: 13px;
|
|
content: "Q";
|
|
}
|
|
.user-sidebar .friend-button:before {
|
|
color: var(--theme, #0070ff);
|
|
font-size: 15px;
|
|
content: "F";
|
|
}
|
|
.received-request-button {
|
|
float: right;
|
|
}
|
|
.user-sidebar .friend-button.unf:before {
|
|
content: "f" !important;
|
|
}
|
|
.user-sidebar .unfriend-button:before {
|
|
color: var(--theme, #0070ff);
|
|
font-size: 15px;
|
|
content: "f";
|
|
}
|
|
.user-sidebar .follow-done-button:before {
|
|
color: var(--theme, #0070ff);
|
|
content: "v";
|
|
}
|
|
.user-sidebar .follow-done-button:hover {
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-ms-box-shadow: none;
|
|
-o-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.sidebar-profile {
|
|
padding: 20px 15px 20px 15px;
|
|
}
|
|
.sidebar-profile .profile-comment {
|
|
color: #646464;
|
|
background-color: #f6f6f6;
|
|
margin-bottom: 10px;
|
|
padding: 15px;
|
|
line-height: 1.5;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
*zoom: 1;
|
|
}
|
|
.sidebar-profile .profile-comment:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.description-more-button {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
background-color: transparent;
|
|
border: none;
|
|
color: #969696;
|
|
float: right;
|
|
font-size: 12px;
|
|
margin: 5px 0 0;
|
|
}
|
|
.description-more-button:hover {
|
|
text-decoration: underline;
|
|
color: #323232;
|
|
}
|
|
.user-data .data-content {
|
|
display: table;
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
border-collapse: collapse;
|
|
}
|
|
.user-data h4 {
|
|
color: #fff;
|
|
width: 1%;
|
|
display: table-cell;
|
|
vertical-align: bottom;
|
|
}
|
|
.user-data h4 span {
|
|
background-color: var(--theme, #0070ff);
|
|
padding: 2px 12px 1px;
|
|
display: block;
|
|
white-space: nowrap;
|
|
margin-bottom: -1px;
|
|
font-size: 12px;
|
|
-webkit-border-radius: 20px;
|
|
-moz-border-radius: 20px;
|
|
-ms-border-radius: 20px;
|
|
-o-border-radius: 20px;
|
|
border-radius: 20px;
|
|
}
|
|
.user-data .note {
|
|
border-bottom: 2px dashed #dddddd;
|
|
display: table-cell;
|
|
font-size: 14px;
|
|
text-align: right;
|
|
padding: 0 0 0 4px;
|
|
}
|
|
.user-data .user-main-profile {
|
|
display: block;
|
|
}
|
|
.user-data .user-main-profile h4 {
|
|
display: inline-block;
|
|
float: left;
|
|
width: auto;
|
|
margin: 2px 0 0 0;
|
|
}
|
|
.user-data .user-main-profile .note {
|
|
display: block;
|
|
margin-left: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.user-data .user-main-profile .note.birthday {
|
|
margin-bottom: 5px;
|
|
}
|
|
.user-data .game h4,
|
|
.user-data .game-skill h4,
|
|
.user-data .game .note,
|
|
.user-data .game-skill .note {
|
|
display: table-cell;
|
|
vertical-align: bottom;
|
|
}
|
|
.user-data th {
|
|
background: #fff;
|
|
border-bottom: 1px var(--theme, #000) solid;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
padding: 3px;
|
|
}
|
|
.user-data td {
|
|
background: #ededed;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
padding: 3px;
|
|
}
|
|
.user-data tr:nth-child(odd) td {
|
|
background: #fff;
|
|
}
|
|
.user-data table {
|
|
display: contents;
|
|
}
|
|
.user-data .game-skill .note span:before {
|
|
width: 26px;
|
|
height: 26px;
|
|
margin-right: 5px;
|
|
vertical-align: text-bottom;
|
|
display: inline-block;
|
|
content: '';
|
|
margin-bottom: 2px;
|
|
background-size: 26px auto;
|
|
}
|
|
.user-data .game-skill span.beginner:before {
|
|
background-image: url('img/skill-beginner.png');
|
|
}
|
|
.user-data .game-skill span.intermediate:before {
|
|
background-image: url('img/skill-intermediate.png');
|
|
}
|
|
.user-data .game-skill span.expert:before {
|
|
background-image: url('img/skill-expert.png');
|
|
}
|
|
.user-data .game .note > div {
|
|
display: inline-block;
|
|
}
|
|
.user-data .game .note img {
|
|
vertical-align: text-bottom;
|
|
margin-bottom: 2px;
|
|
margin-right: 3px;
|
|
}
|
|
.user-data .game .note span {
|
|
display: none;
|
|
}
|
|
.user-data .game .note .wiiu-icon {
|
|
width: 28px;
|
|
}
|
|
.user-data .game .note .n3ds-icon {
|
|
width: 21px;
|
|
}
|
|
.user-data .favorite-game-genre .note span {
|
|
display: inline-block;
|
|
}
|
|
.user-data .favorite-game-genre .note span:after {
|
|
content: "/";
|
|
padding: 0 3px;
|
|
}
|
|
.user-data .favorite-game-genre .note span:last-child:after {
|
|
content: none;
|
|
padding: 0;
|
|
}
|
|
.sidebar-favorite-community ul {
|
|
margin: 5px 10px 10px;
|
|
*zoom: 1;
|
|
}
|
|
.sidebar-favorite-community ul:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community {
|
|
float: left;
|
|
width: 18%;
|
|
margin: 0 1% 5px;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community:nth-child(5n+1) {
|
|
clear: both;
|
|
}
|
|
.sidebar-favorite-community li > a {
|
|
display: block;
|
|
}
|
|
.sidebar-favorite-community .icon-container {
|
|
float: none;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.sidebar-favorite-community .icon-container .icon {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.sidebar-favorite-community .platform-tag {
|
|
margin: 2px 0 0;
|
|
display: block;
|
|
}
|
|
.sidebar-favorite-community .platform-tag img {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
#sidebar-community .sidebar-setting a {
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.community-name {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
margin: 3px 0 0 68px;
|
|
line-height: 1.2;
|
|
color: #323232;
|
|
}
|
|
.community-name a {
|
|
color: #323232;
|
|
}
|
|
.community-name a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.community-name .owner {
|
|
display: inline-block;
|
|
padding: 2px 5px;
|
|
background: #f6f6f6;
|
|
color: #969696;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
margin-left: 5px;
|
|
margin-top: 5px;
|
|
font-weight: normal;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#sidebar-community-body {
|
|
padding: 13px 15px 5px;
|
|
display: block;
|
|
*zoom: 1;
|
|
}
|
|
#sidebar-community-body:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#sidebar-community-img {
|
|
width: 58px;
|
|
float: left;
|
|
}
|
|
.news-community-badge {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
background: var(--theme, #0070ff);
|
|
font-size: 10px;
|
|
color: #FFF;
|
|
margin-left: 10px;
|
|
padding: 1px 5px;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
position: relative;
|
|
top: -3px;
|
|
}
|
|
.news-community-badge + .title {
|
|
margin-top: -3px;
|
|
}
|
|
.community-description {
|
|
color: #646464;
|
|
background-color: #f6f6f6;
|
|
margin: 0 15px 15px;
|
|
padding: 15px;
|
|
line-height: 1.5;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
*zoom: 1;
|
|
}
|
|
.community-description:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.sidebar-social-container {
|
|
margin-right: 0;
|
|
margin-bottom: 10px;
|
|
display: block;
|
|
}
|
|
/*.no-login-btn #global-menu-login {
|
|
display:none !important;
|
|
}
|
|
.no-login-btn #global-menu-list {
|
|
display:none !important;
|
|
}
|
|
*/
|
|
.guest #global-menu-login {
|
|
float: right;
|
|
padding: 10px 0;
|
|
}
|
|
.guest #global-menu-login input {
|
|
height: 35px;
|
|
}
|
|
.guest .welcome-message {
|
|
padding: 10px 0;
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
color: var(--theme, #0070ff);
|
|
text-align: center;
|
|
}
|
|
.guest #try-miiverse .try-miiverse-catch {
|
|
font-size: 12px;
|
|
margin: 15px 15px -10px;
|
|
color: #969696;
|
|
line-height: 1.2;
|
|
}
|
|
.guest #try-miiverse #slide-post-container {
|
|
overflow: hidden;
|
|
height: 210px;
|
|
text-align: center;
|
|
}
|
|
.guest #try-miiverse #slide-post-container .post {
|
|
padding: 13px 15px 0;
|
|
margin: 0;
|
|
}
|
|
.guest #try-miiverse #slide-post-container .post .post-content-memo {
|
|
margin: 0;
|
|
}
|
|
.guest #try-miiverse #slide-post-container .post .screenshot-container.still-image {
|
|
float: right;
|
|
height: 48px;
|
|
margin: 0 0 5px 10px;
|
|
position: relative;
|
|
line-height: 0;
|
|
}
|
|
.guest #try-miiverse #slide-post-container .post .screenshot-container.still-image img {
|
|
height: 48px;
|
|
width: auto;
|
|
}
|
|
.guest #try-miiverse #slide-post-container .body {
|
|
display: table-cell;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
height: 148px;
|
|
width: 930px;
|
|
margin: 0 auto;
|
|
}
|
|
.guest #try-miiverse #slide-post-container .post-content {
|
|
margin: 0;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
text-align: left;
|
|
max-width: 930px;
|
|
}
|
|
.guest #try-miiverse #slide-post-container .with-image .post-content {
|
|
width: 420px;
|
|
}
|
|
.guest #try-miiverse h3.label {
|
|
margin-top: 0;
|
|
}
|
|
.guest #about {
|
|
background: #fff;
|
|
margin-bottom: 20px;
|
|
border-bottom: 2px solid #e5e5e5;
|
|
}
|
|
.guest #about p {
|
|
font-size: 14px;
|
|
padding: 0 14px 5px;
|
|
text-align: left;
|
|
}
|
|
.guest #about img {
|
|
width: 53%;
|
|
margin-top: 20px;
|
|
float: right;
|
|
}
|
|
.guest #about-inner {
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
padding: 30px 25px 50px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
*zoom: 1;
|
|
}
|
|
.guest #about-inner:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.guest #about-text {
|
|
float: left;
|
|
width: 45%;
|
|
}
|
|
.guest .post-list + .arrow-button,
|
|
.guest .no-content + .arrow-button {
|
|
margin: 0 0 -10px;
|
|
}
|
|
.guest#help .arrow-button {
|
|
margin: 10px -15px -15px;
|
|
margin-top: 20px;
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.guest .guest-terms-content {
|
|
text-align: center;
|
|
margin: 10px 14px 0;
|
|
}
|
|
.guest .guest-terms-link {
|
|
background-color: var(--theme, #0070ff);
|
|
color: #fff;
|
|
padding: 7px 35px 7px 20px;
|
|
position: relative;
|
|
line-height: 18px;
|
|
text-align: left;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
-webkit-border-radius: 40px;
|
|
-moz-border-radius: 40px;
|
|
-ms-border-radius: 40px;
|
|
-o-border-radius: 40px;
|
|
border-radius: 40px;
|
|
}
|
|
.guest .guest-terms-link:hover {
|
|
background-color: #0055be;
|
|
}
|
|
.guest .guest-terms-link:before {
|
|
font-size: 10px;
|
|
content: 'A';
|
|
color: #fff;
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 50%;
|
|
margin-top: -9px;
|
|
}
|
|
#community-guide-footer {
|
|
float: left;
|
|
margin: 40px 0 0;
|
|
width: 625px;
|
|
*zoom: 1;
|
|
}
|
|
#community-guide-footer:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#guide-menu {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#guide-menu:hover {
|
|
background: #fff;
|
|
}
|
|
#guide-menu .arrow-button {
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
#guide-menu .arrow-button:first-child {
|
|
border-top: none;
|
|
}
|
|
.guest.post-permlink #footer {
|
|
text-align: center;
|
|
}
|
|
.guest .guest-message p {
|
|
padding: 15px;
|
|
-webkit-border-radius: 0 0 5px 5px;
|
|
-moz-border-radius: 0 0 5px 5px;
|
|
-ms-border-radius: 0 0 5px 5px;
|
|
-o-border-radius: 0 0 5px 5px;
|
|
border-radius: 0 0 5px 5px;
|
|
color: #969696;
|
|
background: #f6f6f6;
|
|
}
|
|
.guest .guest-message .arrow-button {
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.guest-top.guest #main-body {
|
|
max-width: 100%;
|
|
padding: 71px 0 170px;
|
|
}
|
|
.guest-top.guest #community-top {
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
}
|
|
.guest-top.guest #cookie-policy-notice {
|
|
top: 0;
|
|
}
|
|
.setting-form {
|
|
margin: 20px 10px;
|
|
}
|
|
.setting-form li {
|
|
margin: 0 5px;
|
|
border-bottom: 1px solid #dddddd;
|
|
padding: 0 5px 15px;
|
|
}
|
|
.setting-form .settings-label {
|
|
margin: 20px 0 10px;
|
|
}
|
|
.setting-form .select-content {
|
|
text-align: right;
|
|
}
|
|
.setting-form .select-content select {
|
|
width: auto;
|
|
max-width: 100%;
|
|
min-width: 50%;
|
|
}
|
|
.setting-form .note {
|
|
font-size: 12px;
|
|
color: #969696;
|
|
margin: 0 0 10px;
|
|
}
|
|
.setting-form .note-attention {
|
|
font-size: 12px;
|
|
color: #e67877;
|
|
clear: both;
|
|
}
|
|
.setting-nnid input {
|
|
margin-left: 4px;
|
|
padding: 0px 8px;
|
|
border-radius: 5px;
|
|
border: 1px solid #dddddd;
|
|
height: 56px;
|
|
width: calc(100% - 80px);
|
|
}
|
|
.setting-nnid .error {
|
|
padding: 0px 8px;
|
|
color: red;
|
|
}
|
|
.setting-avatar .icon-container {
|
|
padding-right: 8px;
|
|
float: left;
|
|
}
|
|
.setting-form .note-attention:before {
|
|
content: "";
|
|
-webkit-border-radius: 50%;
|
|
-moz-border-radius: 50%;
|
|
-ms-border-radius: 50%;
|
|
-o-border-radius: 50%;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: #e67877;
|
|
margin-right: 5px;
|
|
}
|
|
.setting-form .setting-profile-post button#profile-post {
|
|
margin: 0;
|
|
color: #fff;
|
|
padding: 0 0 8px;
|
|
border-radius: 6px;
|
|
border: 1px solid #969696;
|
|
background-color: #969696;
|
|
font-size: 14px;
|
|
overflow: hidden;
|
|
}
|
|
.setting-form .setting-profile-post button#profile-post span:before {
|
|
font-size: 12px;
|
|
content: 'x';
|
|
margin-right: 7px;
|
|
vertical-align: middle;
|
|
margin-bottom: 2px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.setting-form .setting-profile-post img {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
width: 240px;
|
|
height: auto;
|
|
}
|
|
.setting-form #favorite-game-genre .select-content {
|
|
margin-bottom: 10px;
|
|
}
|
|
.setting-form #favorite-game-genre .select-content:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.download-request-setting-form {
|
|
margin: 20px 10px;
|
|
}
|
|
.download-request-setting-form h2 {
|
|
clear: both;
|
|
padding: 5px 10px 3px;
|
|
margin-top: 2em;
|
|
background: var(--theme, #0070ff);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
border-radius: 5px;
|
|
}
|
|
.download-request-setting-form ol.asterisk {
|
|
counter-reset: number;
|
|
list-style: none;
|
|
}
|
|
.download-request-setting-form ol.asterisk li:before {
|
|
counter-increment: number;
|
|
content: "*" counter(number) " ";
|
|
}
|
|
.download-request-setting-form ul {
|
|
list-style: none;
|
|
margin: 10px 30px 10px;
|
|
}
|
|
.download-request-setting-form ul li:before {
|
|
content: '\25CF';
|
|
margin: 0 0.2em 0 -0.9em;
|
|
}
|
|
.download-request-setting-form .settings-label {
|
|
margin: 10px 0 10px;
|
|
}
|
|
.download-request-setting-form .note {
|
|
font-size: 12px;
|
|
color: #969696;
|
|
margin: 0 10px 5px;
|
|
}
|
|
.download-request-setting-form .attention {
|
|
clear: both;
|
|
padding: 5px 10px 0;
|
|
border: 3px solid #fb625a;
|
|
margin: 10px 30px 0;
|
|
background: #fff;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.download-request-setting-form .attention p img {
|
|
vertical-align: middle;
|
|
max-width: 300px;
|
|
width: 100%;
|
|
}
|
|
.download-request-setting-form .attention .title {
|
|
margin: 0px -5px 5px;
|
|
padding: 5px;
|
|
Background-color: #fb625a;
|
|
color: #fff;
|
|
}
|
|
.download-request-setting-form .attention p.title img {
|
|
width: 20px;
|
|
height: 18px;
|
|
margin-right: 3px;
|
|
vertical-align: middle;
|
|
}
|
|
div#activity-feed-tutorial {
|
|
background-color: #fff;
|
|
border: 3px solid var(--theme, #0070ff);
|
|
border-radius: 10px;
|
|
height: auto;
|
|
padding: 25px 14px 15px;
|
|
margin: 10px 5px 20px;
|
|
}
|
|
div#activity-feed-tutorial p.tleft {
|
|
float: left;
|
|
width: 60%;
|
|
margin-right: 5%;
|
|
}
|
|
div#activity-feed-tutorial img.tutorial-image {
|
|
width: 35%;
|
|
}
|
|
div#activity-feed-tutorial h3 {
|
|
text-align: left;
|
|
clear: both;
|
|
color: var(--theme, #0070ff);
|
|
font-size: 14px;
|
|
border-bottom: 1px dashed #dddddd;
|
|
padding: 15px 0 3px;
|
|
}
|
|
div#activity-feed-tutorial .list-content-with-icon-and-text li {
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
border: none;
|
|
}
|
|
div#activity-feed-tutorial .list-content-with-icon-and-text .title,
|
|
div#activity-feed-tutorial .list-content-with-icon-and-text .text {
|
|
text-align: left;
|
|
}
|
|
div#activity-feed-tutorial .trigger:hover {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
div#activity-feed-tutorial.no-content {
|
|
margin: 10px auto 30px;
|
|
padding: 15px 0;
|
|
height: 100px;
|
|
border: none;
|
|
}
|
|
div#activity-feed-tutorial.no-content p.tleft {
|
|
color: #323232;
|
|
font-size: 14px;
|
|
}
|
|
.content-loading-window.activity-feed {
|
|
text-align: center;
|
|
padding: 110px 10px;
|
|
}
|
|
.content-loading-window.activity-feed p {
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
}
|
|
.content-loading-window.activity-feed p span {
|
|
text-align: left;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
color: #969696;
|
|
}
|
|
.content-loading-window.activity-feed img {
|
|
width: 22px;
|
|
height: 22px;
|
|
margin-right: 3px;
|
|
}
|
|
.content-load-error-window.activity-feed {
|
|
text-align: center;
|
|
padding: 40px 10px 30px;
|
|
}
|
|
.content-load-error-window.activity-feed p {
|
|
text-align: left;
|
|
margin: 30px 55px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.community-title {
|
|
font-size: 16px;
|
|
margin: 2em 5px .4em;
|
|
text-align: left;
|
|
font-weight: bold;
|
|
color: #606060;
|
|
}
|
|
.community-title:before {
|
|
margin-right: 5px;
|
|
margin-top: -3px;
|
|
vertical-align: middle;
|
|
font-size: 18px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.community-title > span {
|
|
padding: 3px 10px 0 0;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.community-title.hot-artwork-title:before {
|
|
content: 'M';
|
|
color: #ffae00;
|
|
font-size: 20px;
|
|
}
|
|
.community-title.hot-topic-title:before {
|
|
content: '$';
|
|
color: #e8316e;
|
|
font-size: 22px;
|
|
}
|
|
.community-title.community-favorite-title:before {
|
|
content: 's';
|
|
color: #f79726;
|
|
}
|
|
.community-game-title {
|
|
font-size: 16px;
|
|
color: #323232;
|
|
font-weight: bold;
|
|
margin-bottom: 2px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.community-game-device {
|
|
color: #969696;
|
|
line-height: 1;
|
|
}
|
|
.community-main {
|
|
*zoom: 1;
|
|
width: 625px;
|
|
float: left;
|
|
}
|
|
.community-main:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#community-eyecatch-main {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 414px;
|
|
}
|
|
#community-eyecatch-main > div {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.eyecatch-diary-post {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: #fff;
|
|
opacity: 1;
|
|
z-index: 2;
|
|
transition-property: opacity;
|
|
transition-duration: 6s;
|
|
transition-timing-function: ease;
|
|
transition-delay: 0.5s;
|
|
}
|
|
.eyecatch-diary-post.invisible {
|
|
opacity: 0;
|
|
z-index: 1;
|
|
}
|
|
.community-eyecatch-image {
|
|
width: 100%;
|
|
display: block;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-color: #dddddd;
|
|
padding: 278px 15px 15px 15px;
|
|
-webkit-border-radius: 3px 3px 0 0;
|
|
-moz-border-radius: 3px 3px 0 0;
|
|
-ms-border-radius: 3px 3px 0 0;
|
|
-o-border-radius: 3px 3px 0 0;
|
|
border-radius: 3px 3px 0 0;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
*zoom: 1;
|
|
}
|
|
.community-eyecatch-image:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.community-eyecatch-info {
|
|
*zoom: 1;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
clear: both;
|
|
display: block;
|
|
padding: 11px 20px 9px 15px;
|
|
background: url('img/icon-arrow-right.png') no-repeat 97.5% center;
|
|
color: #323232;
|
|
-webkit-background-size: 9px 15px;
|
|
-moz-background-size: 9px 15px;
|
|
-ms-background-size: 9px 15px;
|
|
-o-background-size: 9px 15px;
|
|
background-size: 9px 15px;
|
|
padding: 12px 25px 12px 12px;
|
|
}
|
|
.community-eyecatch-info:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.community-eyecatch-info:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.community-eyecatch-infoicon {
|
|
float: left;
|
|
margin: 0 10px 0 0;
|
|
border: 1px solid #dddddd;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.community-eyecatch-balloon {
|
|
position: relative;
|
|
color: #323232;
|
|
background: rgba(255, 255, 255, 0.9);
|
|
padding: 7px 8px;
|
|
float: right;
|
|
width: 88%;
|
|
height: 58px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
-ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
-o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
}
|
|
.community-eyecatch-balloon:after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: -8px;
|
|
margin-top: -8px;
|
|
display: block;
|
|
width: 0px;
|
|
height: 0px;
|
|
border-style: solid;
|
|
border-width: 8px 8px 8px 0;
|
|
border-color: transparent rgba(255, 255, 255, 0.9) transparent transparent;
|
|
}
|
|
.community-eyecatch-balloon span {
|
|
height: 42px;
|
|
overflow: hidden;
|
|
display: block;
|
|
-webkit-line-clamp: 2;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
.community-top-sidebar {
|
|
width: 320px;
|
|
float: right;
|
|
text-align: center;
|
|
}
|
|
#community-favorite {
|
|
padding: 10px 0px 10px 10px;
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#community-favorite:hover {
|
|
background: #fff;
|
|
}
|
|
#community-favorite ul {
|
|
position: relative;
|
|
display: block;
|
|
*zoom: 1;
|
|
}
|
|
#community-favorite ul:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#community-favorite li {
|
|
float: left;
|
|
margin: 0 10px 0 0;
|
|
line-height: 1;
|
|
width: 58px;
|
|
}
|
|
#community-favorite a {
|
|
display: block;
|
|
}
|
|
#community-favorite .empty-icon img {
|
|
width: 100%;
|
|
height: auto;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#community-favorite img {
|
|
width: 100%;
|
|
height: auto;
|
|
vertical-align: bottom;
|
|
}
|
|
#community-favorite .user-community .icon-container .icon {
|
|
left: 0;
|
|
}
|
|
#community-favorite .user-community .icon-container .icon,
|
|
#community-favorite .user-community .icon-container .user-icon {
|
|
width: 65%;
|
|
height: 65%;
|
|
}
|
|
.favorite-community-link.symbol {
|
|
background: #f2f2f2;
|
|
display: inline-block;
|
|
top: 50%;
|
|
right: 15px;
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-top: -25px;
|
|
position: absolute;
|
|
text-align: center;
|
|
-webkit-border-radius: 25px;
|
|
-moz-border-radius: 25px;
|
|
-ms-border-radius: 25px;
|
|
-o-border-radius: 25px;
|
|
border-radius: 25px;
|
|
}
|
|
.favorite-community-link.symbol:before {
|
|
content: 'A';
|
|
color: #969696;
|
|
font-size: 18px;
|
|
line-height: 50px;
|
|
margin-left: 6px;
|
|
}
|
|
.favorite-community-link.symbol:hover {
|
|
background: #e6e6e6;
|
|
}
|
|
#identified-user-banner {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
text-align: left;
|
|
}
|
|
#identified-user-banner a:before {
|
|
background: url(img/identified-user-banner.png);
|
|
background-size: 100px 50px;
|
|
content: '';
|
|
height: 50px;
|
|
float: left;
|
|
margin: 6px 9px 6px 10px;
|
|
width: 50px;
|
|
display: block;
|
|
}
|
|
#identified-user-banner:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
#identified-user-banner .title {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
display: block;
|
|
color: var(--theme, #0070ff);
|
|
padding: 12px 5px 4px 10px;
|
|
line-height: 1.3em;
|
|
}
|
|
#identified-user-banner .text {
|
|
font-size: 14px;
|
|
display: block;
|
|
color: #646464;
|
|
padding: 0 5px 10px 10px;
|
|
line-height: 1.2;
|
|
}
|
|
.DateTimeInput {
|
|
border-radius: 6px;
|
|
border: 1px solid #000;
|
|
}
|
|
.platform-tag {
|
|
position: static;
|
|
float: left;
|
|
margin: 1px 5px 0 0;
|
|
display: inline-block;
|
|
}
|
|
.platform-tag img {
|
|
width: 58px;
|
|
height: 12px;
|
|
}
|
|
#community-top .platform-logo {
|
|
float: right;
|
|
margin-top: -6px;
|
|
width: 120px;
|
|
height: auto;
|
|
}
|
|
.filtering-label-container {
|
|
margin: 0 15px;
|
|
}
|
|
.filtering-label {
|
|
background: #f6f6f6;
|
|
display: table;
|
|
margin: 0 auto 10px;
|
|
width: 100%;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
*zoom: 1;
|
|
}
|
|
.filtering-label:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.filtering-label .tag-name {
|
|
padding: 0;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
color: var(--theme, #0070ff);
|
|
margin-right: 2px;
|
|
}
|
|
.filtering-label .tag-name:before {
|
|
content: "t";
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
margin-right: 2px;
|
|
vertical-align: middle;
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.filtering-label.filtering-label-official-tag .tag-name {
|
|
color: #00acca;
|
|
}
|
|
.filtering-label.filtering-label-official-tag .tag-name:before {
|
|
color: #00acca;
|
|
}
|
|
.filtering-label.filtering-label-topic-category .tag-name {
|
|
color: #e8316e;
|
|
}
|
|
.filtering-label.filtering-label-topic-category .tag-name:before {
|
|
color: #e8316e;
|
|
}
|
|
.filtering-label.filtering-label-topic-open .accepting {
|
|
color: #e8316e;
|
|
font-weight: bold;
|
|
}
|
|
.filtering-label.filtering-label-topic-open .accepting:before {
|
|
content: "\25CF ";
|
|
font-weight: normal;
|
|
font-size: 5px;
|
|
margin-right: 5px;
|
|
vertical-align: middle;
|
|
color: #ffe400;
|
|
}
|
|
.filtering-label p {
|
|
color: #646464;
|
|
font-size: 12px;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
padding: 0 5px 0 10px;
|
|
max-width: 435px;
|
|
-webkit-border-radius: 3px 0 0 3px;
|
|
-moz-border-radius: 3px 0 0 3px;
|
|
-ms-border-radius: 3px 0 0 3px;
|
|
-o-border-radius: 3px 0 0 3px;
|
|
border-radius: 3px 0 0 3px;
|
|
*margin-top: 10px;
|
|
*float: left;
|
|
}
|
|
.filtering-label .button {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
border: none;
|
|
border-left: 1px solid #dddddd;
|
|
color: #323232;
|
|
width: 40px;
|
|
text-align: center;
|
|
line-height: 1.2;
|
|
margin: 2px 0;
|
|
padding: 10px 0;
|
|
-webkit-border-radius: 0 3px 3px 0;
|
|
-moz-border-radius: 0 3px 3px 0;
|
|
-ms-border-radius: 0 3px 3px 0;
|
|
-o-border-radius: 0 3px 3px 0;
|
|
border-radius: 0 3px 3px 0;
|
|
*padding-left: 5px;
|
|
*width: auto;
|
|
*float: right;
|
|
}
|
|
.filtering-label .button:before {
|
|
content: "x";
|
|
}
|
|
.digest-container {
|
|
margin-bottom: 20px;
|
|
}
|
|
.digest .post {
|
|
text-align: left;
|
|
position: relative;
|
|
margin-left: 42px;
|
|
margin-top: 10px;
|
|
}
|
|
.digest .post:first-child {
|
|
margin-top: 0;
|
|
}
|
|
.digest .post .community-container {
|
|
border: 1px solid #dddddd;
|
|
border-top: 1px solid #eee;
|
|
border-bottom: none;
|
|
bottom: 0;
|
|
margin: 0;
|
|
padding: 3px 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
-webkit-border-radius: 0 0 5px 5px;
|
|
-moz-border-radius: 0 0 5px 5px;
|
|
-ms-border-radius: 0 0 5px 5px;
|
|
-o-border-radius: 0 0 5px 5px;
|
|
border-radius: 0 0 5px 5px;
|
|
}
|
|
.digest .post .community-container a {
|
|
padding: 0 8px;
|
|
}
|
|
.digest .post .icon-container {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
width: 36px;
|
|
height: 36px;
|
|
position: absolute;
|
|
left: -42px;
|
|
}
|
|
.digest .post .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
border: none;
|
|
}
|
|
.digest .post .body {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
padding: 10px 10px 32px;
|
|
}
|
|
.digest .post .body:after,
|
|
.digest .post .body:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 20px;
|
|
display: block;
|
|
width: 0px;
|
|
height: 0px;
|
|
border-style: solid;
|
|
}
|
|
.digest .post .body:after {
|
|
border-color: transparent #fff transparent transparent;
|
|
border-width: 4px;
|
|
margin-top: -4px;
|
|
left: -7px;
|
|
}
|
|
.digest .post .body:before {
|
|
border-color: transparent #ddd transparent transparent;
|
|
border-width: 5px;
|
|
margin-top: -5px;
|
|
left: -10px;
|
|
}
|
|
.digest .post .screenshot-container {
|
|
float: right;
|
|
margin: 2px 0 5px 5px;
|
|
clear: both;
|
|
}
|
|
.digest .post .screenshot-container img {
|
|
height: 42px;
|
|
width: auto;
|
|
}
|
|
.digest .post .post-tag,
|
|
.digest .post .tag-container > span,
|
|
.digest .post .post-meta {
|
|
font-size: 12px;
|
|
}
|
|
.digest .post .post-content-memo img {
|
|
width: 100%;
|
|
}
|
|
.digest .post .user-name,
|
|
.digest .post .timestamp-container,
|
|
.digest .post .accepting,
|
|
.digest .post .post-meta .yeah-button,
|
|
.digest .post .post-meta .played,
|
|
.digest .post .topic-body {
|
|
display: none;
|
|
}
|
|
.artwork-digest .post .screenshot-container,
|
|
.artwork-digest .post .post-meta {
|
|
display: none;
|
|
}
|
|
.download-request-link {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
text-align: left;
|
|
margin-bottom: 5px;
|
|
position: relative;
|
|
}
|
|
.download-request-link:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.download-request-link:before {
|
|
font-size: 14px;
|
|
content: 'A';
|
|
color: #646464;
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 50%;
|
|
margin-top: -9px;
|
|
}
|
|
.download-request-link .title {
|
|
font-size: 16px;
|
|
display: block;
|
|
color: #646464;
|
|
padding: 10px 25px 8px 10px;
|
|
line-height: 1.3em;
|
|
}
|
|
|
|
.notify {
|
|
background: #f4f4ff !important;
|
|
}
|
|
.news-list .nick-name {
|
|
font-weight: bold;
|
|
color: #323232;
|
|
}
|
|
.news-list .nick-name a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.news-list a.link {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.news-list a.link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.news-list .timestamp,
|
|
.news-list .id-name {
|
|
color: #969696;
|
|
}
|
|
.news-list .icon-container {
|
|
margin-right: 10px;
|
|
}
|
|
.messages .post .timestamp-container {
|
|
float: inherit;
|
|
text-align: right;
|
|
}
|
|
.messages .post .screenshot-container {
|
|
max-width: 400px;
|
|
margin: 5px auto;
|
|
}
|
|
.messages .post .post-content-memo {
|
|
text-align: center;
|
|
margin-top: -15px;
|
|
margin-right: 120px;
|
|
}
|
|
.messages .post .post-content-memo img {
|
|
width: 100%;
|
|
max-width: 320px;
|
|
background-color: white;
|
|
}
|
|
.messages .post .post-body {
|
|
margin-left: 62px;
|
|
}
|
|
.messages .post .icon-container {
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-right: 8px;
|
|
}
|
|
.messages .post .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.messages .post .post-meta {
|
|
margin-bottom: 0;
|
|
padding: 8px 0 0;
|
|
font-size: 14px;
|
|
}
|
|
.messages .post a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.messages .post.my {
|
|
background-color: #e6fbff;
|
|
}
|
|
button.msg-update {
|
|
padding: 4px 4px 4px;
|
|
font-size: 12px;
|
|
margin-right: 0;
|
|
margin-top: -25px;
|
|
}
|
|
.message-chk {
|
|
float: right;
|
|
padding: 8px 0 8px;
|
|
font-size: 12px;
|
|
margin-right: 0;
|
|
margin-top: -15px;
|
|
}
|
|
.post .post-subtype-label {
|
|
color: #323232;
|
|
float: right;
|
|
margin: -5px -8px -5px 10px;
|
|
padding: 9px 9px;
|
|
font-size: 12px;
|
|
}
|
|
.post .post-subtype-label.post-subtype-label-diary {
|
|
border-bottom: 2px solid #04c9db;
|
|
}
|
|
.post .post-subtype-label.post-subtype-label-artwork {
|
|
border-bottom: 2px solid #fcc735;
|
|
}
|
|
.post .post-subtype-label.post-subtype-label-topic {
|
|
border-bottom: 2px solid #e8316e;
|
|
}
|
|
.post .post-subtype-label.post-subtype-label-via-api {
|
|
border-bottom: 2px solid var(--theme, #0070ff);
|
|
}
|
|
.post .post-permlink .post-subtype-label {
|
|
margin-right: -15px;
|
|
}
|
|
.post .community-container {
|
|
background-color: #f9f9f9;
|
|
border-bottom: 1px solid #eee;
|
|
margin: -15px -15px 15px;
|
|
padding: 5px 8px;
|
|
font-size: 12px;
|
|
}
|
|
.post .community-container a {
|
|
color: #969696;
|
|
display: block;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.post .community-container a:hover {
|
|
color: #646464;
|
|
}
|
|
.post .community-container .community-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
vertical-align: middle;
|
|
margin-right: 5px;
|
|
}
|
|
.post .community-container-heading {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
}
|
|
.post .community-container-heading a {
|
|
color: #323232;
|
|
}
|
|
.post .post-content-memo img {
|
|
vertical-align: bottom;
|
|
}
|
|
.post .hidden-content,
|
|
.post .deleted-message,
|
|
.post .hidden_as_violation {
|
|
color: #969696;
|
|
font-size: 16px;
|
|
padding: 20px 0 1.2em 3px;
|
|
text-align: center;
|
|
}
|
|
.post .hidden-content button,
|
|
.post .deleted-message button,
|
|
.post .hidden_as_violation button,
|
|
.post .hidden-content a,
|
|
.post .deleted-message a,
|
|
.post .hidden_as_violation a {
|
|
color: #323232;
|
|
}
|
|
.post .hidden-content + .post-content-text,
|
|
.post .deleted-message + .post-content-text,
|
|
.post .hidden_as_violation + .post-content-text,
|
|
.post .hidden-content + .post-content-memo,
|
|
.post .deleted-message + .post-content-memo,
|
|
.post .hidden_as_violation + .post-content-memo {
|
|
margin-top: -7px;
|
|
}
|
|
.post .spoiler-status {
|
|
display: none;
|
|
}
|
|
.post .spoiler-status.spoiler {
|
|
display: inline;
|
|
}
|
|
.post.hidden:hover {
|
|
cursor: auto;
|
|
background: #fff;
|
|
}
|
|
.post.hidden .screenshot-container img,
|
|
.post.hidden .post-content-text,
|
|
.post.hidden .post-content-memo,
|
|
.post.hidden .reply-content-text,
|
|
.post.hidden .reply-content-memo,
|
|
.post.hidden .post-meta,
|
|
.post.hidden .reply-meta {
|
|
display: none !important;
|
|
}
|
|
.user-name a {
|
|
color: #323232;
|
|
font-weight: bold;
|
|
}
|
|
.user-name a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.timestamp-container {
|
|
font-size: 14px;
|
|
color: #969696;
|
|
}
|
|
.timestamp-container a {
|
|
color: #969696;
|
|
}
|
|
.screenshot-container {
|
|
overflow: hidden;
|
|
display: block;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.screenshot-container img {
|
|
vertical-align: bottom;
|
|
max-width: 100%;
|
|
}
|
|
.screenshot-container.video {
|
|
position: relative;
|
|
}
|
|
.screenshot-container.video img {
|
|
height: 42px;
|
|
width: auto;
|
|
}
|
|
.screenshot-container.video:after {
|
|
position: absolute;
|
|
content: '';
|
|
display: block;
|
|
bottom: 0px;
|
|
right: 0;
|
|
width: 20px;
|
|
height: 15px;
|
|
background: rgba(0, 0, 0, 0.65) url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAbCAQAAADM6ofdAAABT0lEQVR4AZWUA0ynYRyAv+dv2862bXtWc5gVZrvZTbnGZjWl2Q3pOsw8a/zuvay7ep933p69PyugKGjQocd4/fTo0AAozwFo0GPCihO3eC7sWIQmJHhe0GHCjpcICZLECePHKSQDWngiocGAHT8JcimmjFIKyCKGFzumZ4JDixkPcQq+nqnqp4uFWdqpF2o6YdxYEcE9UNBhJUAW1eo1R3tF43RSTR5JAjgxo78XHDrsRCigVb3l98/tdYZpoYwsoojg7hUBHQ7ilNKjPuD96fQ8vdRTRDohXDdFUNDjIkkFg+oTDndEcB1UkosoAjbEPzdCJSPqU0Rwy4sM0EAhSXxCMVwJKaoQwvN8OBmbpIki4niwPC884WCrsYtsgthfJwi+nFNIDOdrBQHFxHHJ/yCfg3yV5Psg2WnpWZKaVvl9kN84+Z2WvxrI3yVkLt8fOBmlvDxmleAAAAAASUVORK5CYII=') no-repeat center center;
|
|
-webkit-background-size: 12px 14px;
|
|
-moz-background-size: 12px 14px;
|
|
-ms-background-size: 12px 14px;
|
|
-o-background-size: 12px 14px;
|
|
background-size: 12px 14px;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.post-tag {
|
|
padding: 0;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
color: var(--theme, #0070ff);
|
|
margin-right: 7px;
|
|
display: inline-block;
|
|
}
|
|
.post-tag:before {
|
|
content: "t";
|
|
color: var(--theme, #0070ff);
|
|
display: inline-block;
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
margin-top: -3px;
|
|
margin-right: 3px;
|
|
vertical-align: middle;
|
|
}
|
|
.post-tag.post-official-tag {
|
|
color: #00acca;
|
|
}
|
|
.post-tag.post-official-tag:before {
|
|
color: #00acca;
|
|
}
|
|
.post-tag.post-topic-category {
|
|
color: #e8316e;
|
|
}
|
|
.post-tag.post-topic-category:before {
|
|
color: #e8316e;
|
|
}
|
|
.multi-language-post {
|
|
color: #969696;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
.multi-language-post:before {
|
|
content: '#';
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
margin-right: 3px;
|
|
margin-top: -2px;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
}
|
|
.multi-language-body {
|
|
margin-top: -5px;
|
|
}
|
|
.accepting .not-accepting {
|
|
display: none;
|
|
}
|
|
.not-accepting .accepting {
|
|
display: none;
|
|
}
|
|
.accepting > span,
|
|
.not-accepting > span {
|
|
float: right;
|
|
font-size: 14px;
|
|
padding: 1px 8px;
|
|
}
|
|
.accepting > span {
|
|
background-color: #fff7b3;
|
|
color: #fc951e;
|
|
}
|
|
.accepting > span:before {
|
|
color: #ffe400;
|
|
}
|
|
.not-accepting > span {
|
|
background-color: #f6f6f6;
|
|
color: #969696;
|
|
}
|
|
.not-accepting > span:before {
|
|
color: #dddddd;
|
|
}
|
|
.multi-timeline-post.post-subtype-topic .accepting > span,
|
|
.multi-timeline-post.post-subtype-topic .not-accepting > span {
|
|
padding: 2px 5px 4px;
|
|
}
|
|
.topic-title {
|
|
font-weight: bold;
|
|
}
|
|
.post.has-video-thumbnail .topic-title {
|
|
min-height: 50px;
|
|
}
|
|
.post.has-video-thumbnail .post-content-text {
|
|
padding-right: 65px;
|
|
}
|
|
.post-meta,
|
|
.reply-meta {
|
|
font-size: 16px;
|
|
text-align: right;
|
|
color: #969696;
|
|
overflow: hidden;
|
|
clear: both;
|
|
}
|
|
.post-meta div,
|
|
.reply-meta div {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
padding: 2px 0 0;
|
|
margin-left: 8px;
|
|
vertical-align: middle;
|
|
}
|
|
.post-meta .empathy-added + .empathy,
|
|
.reply-meta .empathy-added + .empathy {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.post-meta .empathy:before,
|
|
.reply-meta .empathy:before {
|
|
content: "e";
|
|
margin-right: 3px;
|
|
}
|
|
.post-meta .empathy-added + .empathy:before,
|
|
.reply-meta .empathy-added + .empathy:before {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.ie8-earlier .post-meta .empathy.changing:before,
|
|
.ie8-earlier .reply-meta .empathy.changing:before {
|
|
content: none;
|
|
}
|
|
.post-meta .reply:before,
|
|
.reply-meta .reply:before {
|
|
content: "r";
|
|
margin-right: 3px;
|
|
}
|
|
.reply-meta .reply .reply-count {
|
|
color: #f00;
|
|
}
|
|
.post-meta .played,
|
|
.reply-meta .played {
|
|
margin-left: 13px;
|
|
}
|
|
.post-meta .played:before,
|
|
.reply-meta .played:before {
|
|
content: "D";
|
|
}
|
|
.post-meta .link-confirm {
|
|
width: 20px;
|
|
height: 25px;
|
|
float: right;
|
|
margin-left: 10px;
|
|
padding: 5px 5px 5px;
|
|
margin-bottom: -10px;
|
|
margin-top: -10px;
|
|
}
|
|
.post-meta .link-confirm:before {
|
|
content: "o";
|
|
font-size: 18px;
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.yeah-button {
|
|
float: left;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
margin: 0 auto;
|
|
padding: 3px 5px 2px;
|
|
border: 1px solid #dddddd;
|
|
border-bottom-color: #ccc;
|
|
background: #FFF;
|
|
font-size: 12px;
|
|
color: #323232;
|
|
text-align: center;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
-ms-box-shadow: inset 0 1px 0 #ffffff;
|
|
-o-box-shadow: inset 0 1px 0 #ffffff;
|
|
box-shadow: inset 0 1px 0 #ffffff;
|
|
}
|
|
.yeah-button:hover {
|
|
text-decoration: none;
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-moz-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-ms-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-o-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.yeah-button:before {
|
|
content: "E";
|
|
font-size: 16px;
|
|
color: #969696;
|
|
margin-right: 2px;
|
|
margin-top: -3px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
}
|
|
.yeah-button:disabled {
|
|
color: #dddddd;
|
|
cursor: default;
|
|
}
|
|
.yeah-button:disabled:before {
|
|
color: #dddddd;
|
|
}
|
|
.yeah-button:disabled:hover {
|
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
-ms-box-shadow: inset 0 1px 0 #ffffff;
|
|
-o-box-shadow: inset 0 1px 0 #ffffff;
|
|
box-shadow: inset 0 1px 0 #ffffff;
|
|
}
|
|
.empathy-container a:before {
|
|
content: "e";
|
|
font-size: 16px;
|
|
color: var(--theme, #0070ff);
|
|
margin-right: 4px;
|
|
margin-top: -3px;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
}
|
|
.empathy-body {
|
|
font-size: 16px;
|
|
}
|
|
.empathy-body a {
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.other-empathy-cotainer {
|
|
text-align: right;
|
|
padding-bottom: 10px;
|
|
padding-top: 5px;
|
|
}
|
|
.other-empathy-cotainer a {
|
|
color: #323232;
|
|
font-size: 12px;
|
|
}
|
|
.post-list .community-container {
|
|
margin-right: -20px;
|
|
}
|
|
.post-list .post {
|
|
padding-right: 20px;
|
|
}
|
|
.post-list > .post-list-outline {
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
.post-list a.another-posts {
|
|
background-color: rgba(0, 0, 0, 0.04);
|
|
border-top: 1px solid #dddddd;
|
|
color: #323232;
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
display: block;
|
|
text-align: center;
|
|
margin: 15px -20px -15px -15px;
|
|
padding: 10px 30px 8px;
|
|
position: relative;
|
|
-webkit-border-radius: 0 0 5px 5px;
|
|
-moz-border-radius: 0 0 5px 5px;
|
|
-ms-border-radius: 0 0 5px 5px;
|
|
-o-border-radius: 0 0 5px 5px;
|
|
border-radius: 0 0 5px 5px;
|
|
}
|
|
.post-list a.another-posts:before {
|
|
content: 'A';
|
|
color: #969696;
|
|
font-size: 10px;
|
|
position: absolute;
|
|
right: 12px;
|
|
top: 12px;
|
|
}
|
|
.post-list .post:hover a.another-posts {
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
}
|
|
.post-list .empathized-user-name,
|
|
.post-list .acted-user-name {
|
|
border: none;
|
|
display: block;
|
|
padding: 5px 10px;
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
}
|
|
.post-list .empathized-user-name a,
|
|
.post-list .acted-user-name a {
|
|
color: var(--theme, #0070ff);
|
|
font-weight: bold;
|
|
padding-right: 3px;
|
|
font-size: 13px;
|
|
}
|
|
.post-list .empathized-user-name:before {
|
|
font-size: 14px;
|
|
color: var(--theme, #0070ff);
|
|
content: "e";
|
|
margin-right: 2px;
|
|
}
|
|
.post-list .recommend-user-container {
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
.post-list .recommend-user-container li {
|
|
border: none;
|
|
}
|
|
.post-list .recommend-user-container .body {
|
|
margin-top: 0;
|
|
}
|
|
.post-list .recommend-user-container .list-content-with-icon-and-text .title {
|
|
margin-top: 0;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.post-list .user-name {
|
|
display: inline;
|
|
}
|
|
.post-list .timestamp-container {
|
|
display: inline;
|
|
padding-left: 5px;
|
|
}
|
|
.post-list .body {
|
|
margin-left: 68px;
|
|
margin-top: 10px;
|
|
}
|
|
.post-list .screenshot-container {
|
|
margin-bottom: 8px;
|
|
margin-top: 5px;
|
|
margin-right: 62px;
|
|
text-align: center;
|
|
-webkit-border-radius: 0;
|
|
-moz-border-radius: 0;
|
|
-ms-border-radius: 0;
|
|
-o-border-radius: 0;
|
|
border-radius: 0;
|
|
}
|
|
.post-list .screenshot-container img {
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 100%;
|
|
max-height: 320px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.post-list .screenshot-container + .post-content-memo {
|
|
margin-top: 10px;
|
|
}
|
|
.post-list .screenshot-container.video + .post-content-memo {
|
|
overflow: hidden;
|
|
}
|
|
.post-list .screenshot-container.video {
|
|
float: right;
|
|
margin: 5px 0 8px 8px;
|
|
}
|
|
.post-list .screenshot-container.video img {
|
|
width: auto;
|
|
height: 70px;
|
|
}
|
|
.post-list .screenshot-container.video + .screenshot-container img {
|
|
height: auto;
|
|
}
|
|
.post-list .icon-container {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
.post-list .post-content-text {
|
|
font-size: 18px;
|
|
}
|
|
.post-list .post-content-memo {
|
|
text-align: center;
|
|
margin-top: 15px;
|
|
margin-right: 62px;
|
|
}
|
|
.post-list .post-content-memo img {
|
|
width: 100%;
|
|
max-width: 320px;
|
|
background-color: white;
|
|
}
|
|
.post-list .post-tag + .post-content-text,
|
|
.post-list .multi-language-post + .post-content-text,
|
|
.post-list .screenshot-container.video + .post-content-text {
|
|
margin-top: 2px;
|
|
}
|
|
.post-list .topic-body {
|
|
margin-top: 0;
|
|
font-size: 16px;
|
|
}
|
|
.post-list .post-meta {
|
|
padding-top: 15px;
|
|
}
|
|
.post-list .recent-reply-content {
|
|
background-color: #f9f9f9;
|
|
border-top: 1px solid #e9e9e9;
|
|
padding: 0;
|
|
margin: 10px 0 0;
|
|
-webkit-border-radius: 0 0 5px 5px;
|
|
-moz-border-radius: 0 0 5px 5px;
|
|
-ms-border-radius: 0 0 5px 5px;
|
|
-o-border-radius: 0 0 5px 5px;
|
|
border-radius: 0 0 5px 5px;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-read-more-container {
|
|
text-align: center;
|
|
border-bottom: 1px solid #e9e9e9;
|
|
font-size: 12px;
|
|
padding: 5px 0;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-read-more-container:hover {
|
|
background-color: #f4f4f4;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply {
|
|
padding: 8px;
|
|
*zoom: 1;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply:hover {
|
|
background-color: #f4f4f4;
|
|
}
|
|
.post-list .recent-reply-content .icon-container {
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-right: 8px;
|
|
}
|
|
.post-list .recent-reply-content .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.post-list .recent-reply-content .timestamp-container {
|
|
font-size: 10px;
|
|
}
|
|
.post-list .recent-reply-content .user-name {
|
|
font-size: 12px;
|
|
padding-top: 0;
|
|
}
|
|
.post-list .recent-reply-content .post-content {
|
|
padding: 1px 0 0;
|
|
font-size: 12px;
|
|
}
|
|
.post-list .recent-reply-content .body {
|
|
margin-left: 56px;
|
|
margin-top: 0;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-content-text {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-content-memo {
|
|
text-align: center;
|
|
margin-right: 56px;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-content-memo img {
|
|
max-height: 80px;
|
|
width: auto;
|
|
max-width: 100%;
|
|
background-color: white;
|
|
}
|
|
.post-list .post.hidden .recent-reply-content,
|
|
.post-list .post.hidden .screenshot-container {
|
|
display: none;
|
|
}
|
|
.post-list .empathized-post .body {
|
|
clear: both;
|
|
}
|
|
.post-list-outline .empty {
|
|
height: 200px;
|
|
text-align: center;
|
|
}
|
|
.multi-timeline-post-list .post {
|
|
clear: both;
|
|
}
|
|
.multi-timeline-post-list .post .body {
|
|
position: relative;
|
|
min-height: 80px;
|
|
*zoom: 1;
|
|
}
|
|
.multi-timeline-post-list .post .body:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.multi-timeline-post-list .post .icon-container {
|
|
width: 38px !important;
|
|
height: 38px !important;
|
|
margin: 0 5px 0 0;
|
|
}
|
|
.multi-timeline-post-list .post .icon-container .icon {
|
|
width: 36px !important;
|
|
height: 36px !important;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.multi-timeline-post-list .post .user-name {
|
|
font-size: 14px;
|
|
}
|
|
.multi-timeline-post-list .post .tag-container span,
|
|
.multi-timeline-post-list .post .tag-container a {
|
|
font-size: 14px;
|
|
}
|
|
.multi-timeline-post-list .post .timestamp-container {
|
|
margin-bottom: 8px;
|
|
font-size: 12px;
|
|
}
|
|
.multi-timeline-post-list .post .post-tag,
|
|
.multi-timeline-post-list .post .multi-language-post {
|
|
float: left;
|
|
margin-right: 7px;
|
|
}
|
|
.multi-timeline-post-list .post .post-content-text {
|
|
font-size: 16px;
|
|
line-height: 1.4;
|
|
white-space: pre-wrap;
|
|
}
|
|
.multi-timeline-post-list .post .post-content-memo {
|
|
text-align: center;
|
|
}
|
|
.multi-timeline-post-list .post .post-content-memo img {
|
|
width: 100%;
|
|
max-width: 320px;
|
|
background-color: white;
|
|
}
|
|
.multi-timeline-post-list .post .topic-body {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.multi-timeline-post-list .post .accepting > span,
|
|
.multi-timeline-post-list .post .not-accepting > span {
|
|
font-size: 12px;
|
|
}
|
|
.multi-timeline-post-list .post .post-meta {
|
|
padding: 15px 0 0;
|
|
}
|
|
.multi-timeline-post-list .post .screenshot-container {
|
|
width: 280px;
|
|
height: 157px;
|
|
position: absolute;
|
|
left: -290px;
|
|
top: 0;
|
|
margin: 0 10px 0 0;
|
|
text-align: center;
|
|
}
|
|
.multi-timeline-post-list .post .screenshot-container img {
|
|
max-height: 100%;
|
|
max-width: auto;
|
|
margin: 0 auto;
|
|
border-radius: 5px;
|
|
}
|
|
.post .announcement-container img {
|
|
max-height: 150px;
|
|
max-width: 100%;
|
|
margin: auto;
|
|
border-radius: 5px;
|
|
display: block;
|
|
}
|
|
.announcement-container.video {
|
|
float: right;
|
|
}
|
|
.multi-timeline-post-list .post .screenshot-container.video {
|
|
position: absolute !important;
|
|
left: auto;
|
|
right: 0;
|
|
top: 0;
|
|
margin: 0 !important;
|
|
height: 42px !important;
|
|
width: auto !important;
|
|
}
|
|
.multi-timeline-post-list .post .screenshot-container.video img {
|
|
height: 42px !important;
|
|
width: auto !important;
|
|
}
|
|
.multi-timeline-post-list .post.with-image .body {
|
|
margin-left: 290px;
|
|
min-height: 160px;
|
|
}
|
|
.multi-timeline-post-list .post.hidden .screenshot-container {
|
|
background-color: #f6f6f6;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-diary.with-image .post-content-text {
|
|
min-height: 3em;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork {
|
|
border-top: none;
|
|
padding: 5px;
|
|
float: left;
|
|
width: 50%;
|
|
clear: none;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork:nth-child(2n+1) {
|
|
clear: both;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork.with-image .body {
|
|
margin: 0;
|
|
min-height: 0;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .community-container {
|
|
margin: 0;
|
|
border: none;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .post-content-memo {
|
|
margin: 0 0 6px;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .post-content-memo img {
|
|
width: 100%;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .screenshot-container {
|
|
height: 42px;
|
|
width: auto;
|
|
position: absolute;
|
|
left: auto;
|
|
top: auto;
|
|
bottom: 0;
|
|
right: 0;
|
|
margin: 0;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .screenshot-container img {
|
|
height: 42px;
|
|
width: auto;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .timestamp-container {
|
|
display: none;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .post-meta {
|
|
font-size: 12px;
|
|
padding: 0;
|
|
float: none;
|
|
text-align: left;
|
|
clear: none;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .post-meta > div {
|
|
margin-right: 8px;
|
|
margin-left: 0;
|
|
padding: 0;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .yeah-button {
|
|
display: none;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .hidden-content {
|
|
background-color: #f9f9f9;
|
|
border-top: 1px dashed #dddddd;
|
|
display: table;
|
|
padding: 10px 0;
|
|
margin-bottom: 6px;
|
|
height: 90px;
|
|
width: 100%;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .hidden-content p {
|
|
display: table-cell;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
padding: 0 5px;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .body {
|
|
min-height: 0;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .screenshot-container {
|
|
position: static;
|
|
float: right;
|
|
margin: 0 0 0 10px;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .screenshot-container img {
|
|
height: 70px;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .user-container {
|
|
padding: 5px 0 0 0;
|
|
margin: 0;
|
|
float: left;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .user-name,
|
|
.multi-timeline-post-list .post-subtype-topic .timestamp-container {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
line-height: 27px;
|
|
margin: 0;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .user-name a,
|
|
.multi-timeline-post-list .post-subtype-topic .timestamp-container a {
|
|
font-weight: normal;
|
|
color: #969696;
|
|
font-size: 13px;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .post-meta {
|
|
clear: none;
|
|
float: right;
|
|
padding: 5px 0 0 0;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .icon-container,
|
|
.multi-timeline-post-list .post-subtype-topic .yeah-button {
|
|
display: none;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic.post.with-image .body {
|
|
margin: 0;
|
|
min-height: 0;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .hidden-content,
|
|
.multi-timeline-post-list .post-subtype-topic .deleted-message,
|
|
.multi-timeline-post-list .post-subtype-topic .hidden_as_violation {
|
|
padding: 25px 0 0 0;
|
|
}
|
|
.window-create-new-topic .post-buttons-content {
|
|
margin-top: 10px;
|
|
}
|
|
h2.label-topic_post {
|
|
*zoom: 1;
|
|
padding-top: 12px;
|
|
}
|
|
h2.label-topic_post:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
h2.label-topic_post .label-topic_post-msgid {
|
|
display: inline-block;
|
|
padding-top: 5px;
|
|
}
|
|
.post-list-heading-button {
|
|
float: right;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
margin: 0 auto;
|
|
padding: 3px 5px 2px;
|
|
border: 1px solid #dddddd;
|
|
border-bottom-color: #ccc;
|
|
background: #FFF;
|
|
font-size: 12px;
|
|
color: #323232;
|
|
text-align: center;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
-ms-box-shadow: inset 0 1px 0 #ffffff;
|
|
-o-box-shadow: inset 0 1px 0 #ffffff;
|
|
box-shadow: inset 0 1px 0 #ffffff;
|
|
}
|
|
.post-list-heading-button:hover {
|
|
text-decoration: none;
|
|
-webkit-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-moz-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-ms-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
-o-box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
box-shadow: inset 0 1px 0 #fff, 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.post-list-heading-button:before {
|
|
content: "p";
|
|
font-size: 14px;
|
|
color: var(--theme, #0070ff);
|
|
float: left;
|
|
margin-right: 3px;
|
|
}
|
|
.multi_timeline-topic-filter {
|
|
padding: 15px;
|
|
display: none;
|
|
}
|
|
.multi_timeline-topic-filter.open {
|
|
display: block;
|
|
}
|
|
.multi_timeline-topic-filter .content {
|
|
padding-bottom: 15px;
|
|
position: relative;
|
|
}
|
|
.multi_timeline-topic-filter .content:before {
|
|
content: "";
|
|
display: inline-block;
|
|
width: 22px;
|
|
height: 10px;
|
|
background: url('img/tutorial-window-balloon.png');
|
|
background-size: 22px 10px;
|
|
position: absolute;
|
|
top: -10px;
|
|
right: 15px;
|
|
}
|
|
.multi_timeline-topic-filter .select-button {
|
|
margin-top: 10px;
|
|
}
|
|
.multi_timeline-topic-filter .window-bottom-buttons {
|
|
text-align: center;
|
|
}
|
|
.multi_timeline-topic-filter .window-bottom-buttons .button {
|
|
margin: 10px auto;
|
|
width: 300px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.multi_timeline-topic-filter .window-bottom-buttons .topic-search-filter-button:after {
|
|
font-family: 'MiiverseSymbols', sans-serif;
|
|
font-weight: normal;
|
|
content: 'V';
|
|
vertical-align: middle;
|
|
padding-left: 5px;
|
|
display: inline-block;
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.multi_timeline-topic-filter .window-bottom-buttons .topic-search-filter-post:before {
|
|
content: 'p';
|
|
vertical-align: middle;
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
padding-right: 5px;
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.before-renewal .post-body {
|
|
padding: 15px;
|
|
background-color: #ebebeb;
|
|
background-color: rgba(200, 200, 200, 0.3);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
.before-renewal .post-body p {
|
|
margin-bottom: 10px;
|
|
}
|
|
.before-renewal .post-body .button {
|
|
max-width: 380px;
|
|
}
|
|
.post-permlink .buttons-content {
|
|
padding: 15px;
|
|
*zoom: 1;
|
|
}
|
|
.post-permlink .buttons-content:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.post-permlink .buttons-content .embed-link-button {
|
|
margin: 10px 0 0;
|
|
float: left;
|
|
}
|
|
.post-permlink .buttons-content .report-buttons-content {
|
|
margin: 10px 0;
|
|
float: right;
|
|
}
|
|
#post-content {
|
|
padding: 15px;
|
|
}
|
|
#post-content .community-container {
|
|
font-weight: bold;
|
|
-webkit-border-radius: 5px 5px 0 0;
|
|
-moz-border-radius: 5px 5px 0 0;
|
|
-ms-border-radius: 5px 5px 0 0;
|
|
-o-border-radius: 5px 5px 0 0;
|
|
border-radius: 5px 5px 0 0;
|
|
}
|
|
#post-content .user-content {
|
|
display: table;
|
|
}
|
|
#post-content .icon-container,
|
|
#post-content .user-name-content {
|
|
display: table-cell;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
float: none;
|
|
}
|
|
#post-content .user-name-content {
|
|
padding-left: 10px;
|
|
}
|
|
#post-content .user-organization {
|
|
font-size: 11px;
|
|
}
|
|
#post-content .user-name {
|
|
font-size: 16px;
|
|
}
|
|
#post-content .user-id {
|
|
margin-left: 5px;
|
|
color: #969696;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
}
|
|
#post-content .timestamp-container {
|
|
font-size: 14px;
|
|
color: #969696;
|
|
margin-top: 1px;
|
|
line-height: 1.2em;
|
|
}
|
|
#post-content .timestamp-container .timestamp {
|
|
color: #969696;
|
|
}
|
|
#post-content .timestamp-container .timestamp:hover {
|
|
text-decoration: underline;
|
|
}
|
|
#post-content .body {
|
|
clear: both;
|
|
font-size: 18px;
|
|
padding: 10px 0 0;
|
|
}
|
|
#post-content .screenshot-container {
|
|
margin-bottom: 8px;
|
|
}
|
|
#post-content .post-content-text {
|
|
white-space: pre-wrap;
|
|
}
|
|
#post-content .reply-content-text {
|
|
white-space: pre-wrap;
|
|
}
|
|
#post-content .post-content-memo {
|
|
margin: 10px auto 0;
|
|
text-align: center;
|
|
}
|
|
#post-content .post-content-memo img {
|
|
/*width: 320px; */
|
|
width: 100%;
|
|
background-color: white;
|
|
}
|
|
#post-content .video {
|
|
margin-top: 10px;
|
|
}
|
|
#post-content .video,
|
|
#post-content .video iframe {
|
|
width: 100%;
|
|
height: auto;
|
|
min-height: 330px;
|
|
margin-left: 0;
|
|
margin-bottom: 0;
|
|
vertical-align: bottom;
|
|
}
|
|
#post-content .video:after,
|
|
#post-content .video iframe:after {
|
|
display: none;
|
|
}
|
|
#post-content .post-meta {
|
|
padding-top: 20px;
|
|
}
|
|
#post-content #close-topic-post {
|
|
margin: 15px 0 -5px;
|
|
}
|
|
#post-content #close-topic-post input {
|
|
width: 320px;
|
|
}
|
|
#post-content .select-button-label {
|
|
font-size: 14px;
|
|
}
|
|
#post-content .select-button-label:after {
|
|
content: " : ";
|
|
}
|
|
#post-content .select-button-label:before {
|
|
content: '#';
|
|
font-weight: normal;
|
|
font-size: 16px;
|
|
margin-right: 5px;
|
|
vertical-align: middle;
|
|
color: #969696;
|
|
margin-top: -3px;
|
|
display: inline-block;
|
|
}
|
|
#post-content .select-content {
|
|
margin: 10px 0;
|
|
}
|
|
#post-content select#body-language-selector {
|
|
min-width: 50%;
|
|
margin: 0 0 10px;
|
|
}
|
|
#empathy-content {
|
|
clear: both;
|
|
*zoom: 1;
|
|
position: relative;
|
|
padding: 6px 8px 6px;
|
|
margin: -5px 15px 20px;
|
|
border: 1px solid #dddddd;
|
|
background: #f9f9f9;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#empathy-content:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#empathy-content:before {
|
|
content: '';
|
|
position: absolute;
|
|
display: block;
|
|
width: 10px;
|
|
height: 7px;
|
|
top: -6px;
|
|
left: 22px;
|
|
background: url('img/balloon-part-empathy.png') no-repeat 0 0;
|
|
-webkit-background-size: 10px 7px;
|
|
-moz-background-size: 10px 7px;
|
|
-ms-background-size: 10px 7px;
|
|
-o-background-size: 10px 7px;
|
|
background-size: 10px 7px;
|
|
}
|
|
#empathy-content .post-permalink-feeling-icon {
|
|
float: left;
|
|
display: block;
|
|
width: 48px;
|
|
height: 48px;
|
|
margin: 2px;
|
|
}
|
|
#empathy-content .post-permalink-feeling-icon .official-tag {
|
|
top: 8px;
|
|
}
|
|
#empathy-content .post-permalink-feeling-icon .user-icon {
|
|
width: 46px;
|
|
height: 46px;
|
|
border: 1px solid #222;
|
|
background: #fff;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#post-content + .buttons-content,
|
|
#empathy-content.none + .buttons-content {
|
|
/*border-top: 1px solid #222;*/
|
|
border-top: 1px solid #fff;
|
|
}
|
|
.buttons-content .post-social-buttons-wrapper {
|
|
text-align: left;
|
|
}
|
|
.buttons-content .social-buttons-heading {
|
|
font-size: 12px;
|
|
color: #969696;
|
|
font-weight: bold;
|
|
margin-bottom: 5px;
|
|
text-align: left;
|
|
}
|
|
#reply-content.no-reply {
|
|
display: none;
|
|
}
|
|
#reply-content .no-reply-content {
|
|
padding: 30px 0;
|
|
color: #969696;
|
|
text-align: center;
|
|
}
|
|
#reply-content .no-reply-content p {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
text-align: left;
|
|
}
|
|
#reply-content button.more-button {
|
|
font-size: 14px;
|
|
*zoom: 1;
|
|
padding: 13px 10px 11px;
|
|
border: none;
|
|
display: block;
|
|
color: #323232;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
background: transparent;
|
|
width: 100%;
|
|
}
|
|
#reply-content button.more-button:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#reply-content button.more-button.newest-replies-button,
|
|
#reply-content button.more-button.newer-replies-button {
|
|
border-top: 1px solid #dddddd;
|
|
border-bottom: none;
|
|
}
|
|
#reply-content button.more-button:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
#reply-content button.more-button.loading img {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
#reply-content button.more-button span:before {
|
|
font-size: 14px;
|
|
margin-right: 3px;
|
|
color: #646464;
|
|
}
|
|
#reply-content button.more-button.oldest-replies-button span:before {
|
|
content: '/';
|
|
}
|
|
#reply-content button.more-button.older-replies-button span:before {
|
|
content: '-';
|
|
}
|
|
#reply-content button.more-button.newest-replies-button span:before {
|
|
content: '*';
|
|
}
|
|
#reply-content button.more-button.newer-replies-button span:before {
|
|
content: '+';
|
|
}
|
|
#reply-content button.more-button span.loading:before {
|
|
content: '';
|
|
}
|
|
#reply-content .info-reply-list + button.more-button,
|
|
#reply-content .more-button + .more-button {
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
#reply-content .list .my {
|
|
background-color: #e6fbff;
|
|
}
|
|
#reply-content .list > li.my:hover {
|
|
background-color: #c7f6ff;
|
|
}
|
|
.reply-list .icon-container {
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-right: 8px;
|
|
}
|
|
.reply-list .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.reply-list .body {
|
|
margin-left: 58px;
|
|
}
|
|
.reply-list .header {
|
|
margin-bottom: 5px;
|
|
}
|
|
.reply-list .timestamp-container,
|
|
.reply-list .user-name {
|
|
display: inline;
|
|
}
|
|
.reply-list .timestamp-container {
|
|
font-size: 12px;
|
|
padding-left: 5px;
|
|
}
|
|
.reply-list .reply-content-text,
|
|
.reply-list .reply-content-memo {
|
|
margin-top: 4px;
|
|
font-size: 16px;
|
|
}
|
|
.reply-list .reply-content-text {
|
|
white-space: pre-wrap;
|
|
}
|
|
.reply-list .reply-content-memo {
|
|
text-align: center;
|
|
}
|
|
.reply-list .reply-content-memo img {
|
|
width: 100%;
|
|
max-width: 320px;
|
|
background-color: white;
|
|
}
|
|
.reply-list .reply-meta {
|
|
padding-top: 10px;
|
|
}
|
|
.reply-list .screenshot-container {
|
|
max-width: 400px;
|
|
margin: 5px auto;
|
|
}
|
|
.reply-list .hidden .screenshot-container {
|
|
margin: 0;
|
|
}
|
|
.cannot-reply {
|
|
padding: 30px 0;
|
|
color: #969696;
|
|
text-align: center;
|
|
}
|
|
.post-permalink-button {
|
|
background: #ffffff url('img/icon-arrow-left.png') no-repeat 15px center;
|
|
color: #323232;
|
|
display: table;
|
|
width: 100%;
|
|
min-height: 68px;
|
|
-webkit-background-size: 9px 15px;
|
|
-moz-background-size: 9px 15px;
|
|
-ms-background-size: 9px 15px;
|
|
-o-background-size: 9px 15px;
|
|
background-size: 9px 15px;
|
|
}
|
|
.post-permalink-button > span {
|
|
text-align: left;
|
|
display: table-cell;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
vertical-align: middle;
|
|
padding: 10px;
|
|
}
|
|
.post-permalink-button .icon-container {
|
|
width: 50px;
|
|
height: 50px;
|
|
padding: 10px 0px 10px 40px;
|
|
float: none;
|
|
}
|
|
.post-permalink-button .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.post-permalink-button .post-user-description {
|
|
font-weight: bold;
|
|
}
|
|
.post-permalink-button:hover {
|
|
background-color: #f9f9f9;
|
|
}
|
|
.reply-permalink-post {
|
|
padding: 15px;
|
|
}
|
|
.reply-permalink-post #empathy-content {
|
|
margin: 10px 0;
|
|
}
|
|
.reply-permalink-post .reply-content-memo .post-memo {
|
|
/*width: 320px; */
|
|
width: 100%;
|
|
background-color: white;
|
|
}
|
|
.index-memo .memo-date {
|
|
color: #adadad;
|
|
font-size: 10px;
|
|
text-align: left;
|
|
}
|
|
.main-column-hatebu-entries {
|
|
margin-top: 30px;
|
|
}
|
|
.main-column-hatebu-entries .post-list-outline {
|
|
overflow: visible;
|
|
}
|
|
.hatebu-entries h2 {
|
|
border-color: #00A5DE;
|
|
color: #00A5DE;
|
|
position: relative;
|
|
padding-left: 65px;
|
|
padding-top: 12px;
|
|
line-height: 1.3;
|
|
*zoom: 1;
|
|
}
|
|
.hatebu-entries h2:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.hatebu-entries .hatebu-entries-label-icon {
|
|
position: absolute;
|
|
left: 15px;
|
|
bottom: 10px;
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
.hatebu-entries .hatebu-label-about {
|
|
float: right;
|
|
display: inline-block;
|
|
margin: 5px 0 0 5px;
|
|
font-size: 12px;
|
|
color: #00A5DE;
|
|
}
|
|
.hatebu-entries .hatebu-label-about a {
|
|
color: #00A5DE;
|
|
text-decoration: underline;
|
|
}
|
|
.hatebu-entries .hatebu-entries-list a {
|
|
color: #323232;
|
|
}
|
|
.hatebu-entries .hatebu-entries-list a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.hatebu-entries .hatebu-entries-list .hatebu-entries-meta {
|
|
display: block;
|
|
}
|
|
.hatebu-entries .hatebu-entries-list .hatebu-entries-host {
|
|
color: #969696;
|
|
font-size: 12px;
|
|
}
|
|
.hatebu-entries .hatebu-entries-list .hatebu-entries-users {
|
|
color: #FF4166;
|
|
margin-right: 10px;
|
|
}
|
|
.hatebu-entries .hatebu-show-more {
|
|
text-align: right;
|
|
}
|
|
.hatebu-entries .hatebu-more-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
vertical-align: middle;
|
|
}
|
|
.user-organization {
|
|
display: block;
|
|
font-size: 12px;
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.search form.search {
|
|
margin: 15px auto;
|
|
width: 95%;
|
|
}
|
|
.search .search-content p.note {
|
|
margin: 5px 10px 10px;
|
|
}
|
|
.album-content .album-list {
|
|
clear: both;
|
|
margin: 4px 10px 15px;
|
|
*zoom: 1;
|
|
}
|
|
.album-content .album-list:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.album-content .album-list a.screenshot-container {
|
|
background-size: 100% auto;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-color: #fff;
|
|
display: block;
|
|
float: left;
|
|
margin: 6px 0.5% 0;
|
|
width: 49%;
|
|
height: 132px;
|
|
}
|
|
.album-content .community-list-body + .album-list {
|
|
margin: -7px 7px 15px;
|
|
}
|
|
.album-dialog .dialog-inner {
|
|
padding: 0 15px;
|
|
}
|
|
.album-dialog .window {
|
|
max-width: 830px;
|
|
width: auto;
|
|
}
|
|
.album-dialog .window-title {
|
|
white-space: normal;
|
|
}
|
|
.album-dialog .window-body {
|
|
padding: 0;
|
|
}
|
|
.album-dialog img {
|
|
display: block;
|
|
margin-bottom: 15px;
|
|
max-height: 320px;
|
|
min-height: 300px;
|
|
max-width: 100%;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.album-dialog .img-wrapper {
|
|
display: inline-block;
|
|
text-align: right;
|
|
padding: 0 10px;
|
|
}
|
|
.album-dialog .created-at {
|
|
color: #969696;
|
|
margin: 15px 0 3px;
|
|
display: block;
|
|
}
|
|
.album-dialog .button {
|
|
position: relative;
|
|
display: inline-block;
|
|
min-height: 0;
|
|
}
|
|
.album-dialog .button input {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
opacity: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-o-appearance: none;
|
|
appearance: none;
|
|
}
|
|
.album-dialog .album-delete-button,
|
|
.album-dialog .album-diary-button {
|
|
width: 200px;
|
|
margin: 0 10px;
|
|
}
|
|
.album-dialog .album-diary-button:before {
|
|
color: #00b7d8;
|
|
content: "%";
|
|
margin-right: 3px;
|
|
font-size: 16px;
|
|
line-height: 14px;
|
|
}
|
|
.album-dialog .album-diary-button.disabled:before {
|
|
color: #969696;
|
|
}
|
|
.album-dialog .album-delete-button:before {
|
|
color: #323232;
|
|
content: "d";
|
|
margin-right: 3px;
|
|
}
|
|
.album-dialog .album-close-button {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
background: -webkit-linear-gradient(bottom, #e9e9e9, #ffffff);
|
|
border: 0;
|
|
-webkit-box-shadow: 0 1px 10px rgba(1, 1, 1, 0.4);
|
|
-moz-box-shadow: 0 1px 10px rgba(1, 1, 1, 0.4);
|
|
-ms-box-shadow: 0 1px 10px rgba(1, 1, 1, 0.4);
|
|
-o-box-shadow: 0 1px 10px rgba(1, 1, 1, 0.4);
|
|
box-shadow: 0 1px 10px rgba(1, 1, 1, 0.4);
|
|
margin-top: 20px;
|
|
-webkit-border-radius: 0px 0px 5px 5px;
|
|
-moz-border-radius: 0px 0px 5px 5px;
|
|
-ms-border-radius: 0px 0px 5px 5px;
|
|
-o-border-radius: 0px 0px 5px 5px;
|
|
border-radius: 0px 0px 5px 5px;
|
|
font-size: 16px;
|
|
}
|
|
#diary-container #diary-user-content {
|
|
padding: 5px 10px 10px;
|
|
text-align: center;
|
|
background-image: url('img/bg-gray-dot.png');
|
|
background-size: 14px auto;
|
|
border-bottom: 1px solid #dddddd;
|
|
border-top: 4px solid #04c9db;
|
|
}
|
|
#diary-container .icon-container {
|
|
margin: 15px auto 0;
|
|
float: none;
|
|
position: relative;
|
|
overflow: visible;
|
|
}
|
|
#diary-container .icon-container:before {
|
|
content: '%';
|
|
font-size: 20px;
|
|
color: #04c9db;
|
|
position: absolute;
|
|
right: -9px;
|
|
bottom: -3px;
|
|
background-color: #fff;
|
|
line-height: 24px;
|
|
height: 23px;
|
|
width: 25px;
|
|
border-radius: 6px;
|
|
}
|
|
#diary-container .user-organization {
|
|
margin: 7px 0 0;
|
|
display: block;
|
|
line-height: 1;
|
|
font-size: 12px;
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
#diary-container .nick-name {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
margin: 3px 0;
|
|
}
|
|
#diary-container #post-diary-window + #diary-user-content {
|
|
border-bottom: none;
|
|
}
|
|
#diary-container .report-buttons-content {
|
|
margin: 0;
|
|
}
|
|
#post-diary-window {
|
|
padding: 20px;
|
|
background: #04c9db;
|
|
text-align: center;
|
|
margin-top: -1px;
|
|
}
|
|
#post-diary-window p {
|
|
color: #fff;
|
|
margin-bottom: 7px;
|
|
display: inline-block;
|
|
text-align: left;
|
|
}
|
|
#diary-post-form {
|
|
padding-top: 56px;
|
|
margin-top: -56px;
|
|
}
|
|
#image-header-content {
|
|
background-position: center bottom;
|
|
background-repeat: repeat-x;
|
|
background-size: 14px auto;
|
|
background-image: url('img/bg-gray.png');
|
|
min-height: 140px;
|
|
width: 100%;
|
|
position: relative;
|
|
display: table;
|
|
*zoom: 1;
|
|
}
|
|
#image-header-content:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#image-header-content .image-header-title {
|
|
line-height: 140px;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
width: 100%;
|
|
}
|
|
#image-header-content .image-header-title .title {
|
|
color: var(--theme, #0070ff);
|
|
font-size: 18px;
|
|
margin: 0 0 10px 20px;
|
|
line-height: 1.3em;
|
|
display: block;
|
|
font-weight: bold;
|
|
}
|
|
#image-header-content .image-header-title .text {
|
|
font-size: 14px;
|
|
margin: 0 0 0 20px;
|
|
line-height: 1.2em;
|
|
display: block;
|
|
}
|
|
#image-header-content img {
|
|
display: block;
|
|
width: 157px;
|
|
height: auto;
|
|
padding: 15px 15px 15px 10px;
|
|
}
|
|
.identified_user .post-list .text {
|
|
color: #969696;
|
|
height: 21px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.identified_user .post-list .timestamp-container {
|
|
float: left;
|
|
margin-top: 5px;
|
|
}
|
|
.identified_user .post-list .multi-language-post {
|
|
float: left;
|
|
font-size: 14px;
|
|
padding-top: 5px;
|
|
margin-left: 10px;
|
|
}
|
|
#help .help-content {
|
|
padding: 15px;
|
|
*zoom: 1;
|
|
margin: 0 auto;
|
|
}
|
|
#help .help-content:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.index-memo h2:not(.label),
|
|
#help .help-content h2 {
|
|
clear: both;
|
|
padding: 5px 10px 3px;
|
|
margin-top: 2em;
|
|
background: var(--theme, #0070ff);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
border-radius: 5px;
|
|
}
|
|
.index-memo h2:not(.label) {
|
|
margin-bottom: 5px;
|
|
margin-top: 10px;
|
|
}
|
|
#help .help-content .num1 h2 {
|
|
margin-top: 0;
|
|
}
|
|
#help .help-content h3 {
|
|
clear: both;
|
|
margin-top: 1.5em;
|
|
border-bottom: 2px solid var(--theme, #0070ff);
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
#help .help-content div {
|
|
font-size: 14px;
|
|
margin: 10px 0;
|
|
}
|
|
#help .help-content p {
|
|
font-size: 14px;
|
|
margin: 10px 0;
|
|
}
|
|
#help .help-content p.guide-img {
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
}
|
|
#help .help-content .attention img,
|
|
#help .help-content p img {
|
|
vertical-align: middle;
|
|
max-width: 300px;
|
|
width: 100%;
|
|
}
|
|
#help .help-content p.guide-img5 img,
|
|
#help .help-content p.guide-img7 img {
|
|
width: 120px;
|
|
}
|
|
#help .help-content a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
#help .help-content .attention {
|
|
clear: both;
|
|
padding: 5px 10px 0;
|
|
border: 3px solid #81e52e;
|
|
margin: 20px 0 0;
|
|
background: #fff;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#help .help-content .attention .title {
|
|
margin: 0px -5px 5px;
|
|
padding: 5px;
|
|
color: #fff;
|
|
}
|
|
#help .help-content .attention p.title img {
|
|
width: 20px;
|
|
height: 18px;
|
|
margin-right: 3px;
|
|
vertical-align: middle;
|
|
}
|
|
#help .help-content ul,
|
|
#help .help-content ol {
|
|
padding-left: 1.2em;
|
|
margin: 0 0 1.2em;
|
|
}
|
|
#help .help-content .help-display-img + ul,
|
|
#help .help-content .help-display-img + ol {
|
|
padding-left: 55px;
|
|
}
|
|
#help .help-content .help-display-img + ul .img-anchor-button,
|
|
#help .help-content .help-display-img + ol .img-anchor-button {
|
|
margin: -3px 0 0 -55px;
|
|
}
|
|
#help .help-content ul li,
|
|
#help .help-content ol li {
|
|
padding: 0.5em 0 0;
|
|
}
|
|
#help .help-content ul li {
|
|
*list-style: disc;
|
|
}
|
|
#help .help-content li p,
|
|
#help .help-content .note {
|
|
color: #646464;
|
|
font-size: 12px;
|
|
margin: 5px 0;
|
|
}
|
|
#help .help-content .note {
|
|
padding-left: 30px;
|
|
}
|
|
#help .help-content .note:before {
|
|
content: '\25C6 ';
|
|
margin-left: -30px;
|
|
margin-right: 5px;
|
|
}
|
|
#help .help-content ul li:before,
|
|
#help .help-content ol li:before {
|
|
content: '\25CF ';
|
|
margin: 0 0.2em 0 -1.2em;
|
|
}
|
|
#help .help-content ul ul li:before {
|
|
content: '\25CB ';
|
|
}
|
|
#help .help-content ul ul li {
|
|
*list-style: circle;
|
|
}
|
|
#help .help-content ol li:nth-child(1):before {
|
|
content: '\2776 ';
|
|
}
|
|
#help .help-content ol li:nth-child(2):before {
|
|
content: '\2777 ';
|
|
}
|
|
#help .help-content ol li:nth-child(3):before {
|
|
content: '\2778 ';
|
|
}
|
|
#help .help-content ol li:nth-child(4):before {
|
|
content: '\2779 ';
|
|
}
|
|
#help .help-content ol li:nth-child(5):before {
|
|
content: '\277A ';
|
|
}
|
|
#help .help-content ol li:nth-child(6):before {
|
|
content: '\277B ';
|
|
}
|
|
#help .help-content ol li:nth-child(7):before {
|
|
content: '\277C ';
|
|
}
|
|
#help .help-content ol li:nth-child(8):before {
|
|
content: '\277D ';
|
|
}
|
|
#help .help-content ol li:nth-child(9):before {
|
|
content: '\277E ';
|
|
}
|
|
#help .help-content ol li:nth-child(10):before {
|
|
content: '\277F ';
|
|
}
|
|
#help .help-content ol li:nth-child(11):before {
|
|
content: '\24EB ';
|
|
}
|
|
#help .help-content ol li:nth-child(12):before {
|
|
content: '\24EC ';
|
|
}
|
|
#help .help-content ol li:nth-child(13):before {
|
|
content: '\24ED ';
|
|
}
|
|
#help .help-content ol li:nth-child(14):before {
|
|
content: '\24EE ';
|
|
}
|
|
#help .help-content ol li:nth-child(15):before {
|
|
content: '\24EF ';
|
|
}
|
|
#help .help-content ol li:nth-child(16):before {
|
|
content: '\24F0 ';
|
|
}
|
|
#help .help-content ol li:nth-child(17):before {
|
|
content: '\24F1 ';
|
|
}
|
|
#help .help-content ol li:nth-child(18):before {
|
|
content: '\24F2 ';
|
|
}
|
|
#help .help-content ol li:nth-child(19):before {
|
|
content: '\24F3 ';
|
|
}
|
|
#help .help-content ol li:nth-child(20):before {
|
|
content: '\24F4 ';
|
|
}
|
|
#help .help-content ol li {
|
|
*list-style-type: decimal;
|
|
*margin-left: 1em;
|
|
}
|
|
#help .help-content#guide .num1 h3,
|
|
#help .help-content.num1 li:before,
|
|
#help .help-content#guide .num1 li:before {
|
|
color: #ff9100;
|
|
}
|
|
#help .help-content#guide .num2 h3,
|
|
#help .help-content.num2 li:before,
|
|
#help .help-content#guide .num2 li:before {
|
|
color: #ff6473;
|
|
}
|
|
#help .help-content#guide .num4 h3,
|
|
#help .help-content.num4 li:before,
|
|
#help .help-content#guide .num4 li:before {
|
|
color: #00a8e8;
|
|
}
|
|
#help .help-content#guide .num5 h3,
|
|
#help .help-content.num5 li:before,
|
|
#help .help-content#guide .num5 li:before {
|
|
color: #0092aa;
|
|
}
|
|
#help .help-content#guide .num6 h3,
|
|
#help .help-content.num6 li:before,
|
|
#help .help-content#guide .num6 li:before {
|
|
color: #46c81e;
|
|
}
|
|
#help .index-title1,
|
|
#help #guide .num1 h2,
|
|
#help .num1 a.img-anchor-button,
|
|
#help .num1 .help-display-img a {
|
|
background: #ff9100;
|
|
}
|
|
#help .index-title2,
|
|
#help #guide .num2 h2,
|
|
#help .num2 a.img-anchor-button,
|
|
#help .num2 .help-display-img a {
|
|
background: #ff6473;
|
|
}
|
|
#help .num1 .table td,
|
|
#help .num1 .table th,
|
|
#help #guide .num1 h3,
|
|
#help .num1 .attention {
|
|
border-color: #ff9100;
|
|
}
|
|
#help .num2 .table td,
|
|
#help .num2 .table th,
|
|
#help #guide .num2 h3,
|
|
#help .num2 .attention {
|
|
border-color: #ff6473;
|
|
}
|
|
#help .num1 .attention .title {
|
|
background-color: #ff9100;
|
|
}
|
|
#help .num2 .attention .title {
|
|
background-color: #ff6473;
|
|
}
|
|
#help .faq .attention .title {
|
|
background-color: var(--theme, #0070ff);
|
|
}
|
|
#help .guide-img6 {
|
|
*zoom: 1;
|
|
}
|
|
#help .guide-img6:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
#help .guide-img6 img {
|
|
float: right;
|
|
width: 70px;
|
|
height: 70px;
|
|
}
|
|
.warning-content {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
min-height: 300px;
|
|
max-width: 625px;
|
|
margin: 20px auto;
|
|
display: table;
|
|
padding: 0;
|
|
color: #646464;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
}
|
|
.warning-content > div {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
width: 900px;
|
|
padding: 30px;
|
|
}
|
|
.warning-content > div p {
|
|
padding: 30px 0;
|
|
text-align: left;
|
|
}
|
|
.warning-content .black-button {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
margin: 0 auto;
|
|
width: auto;
|
|
}
|
|
.warning-content-unactivated form {
|
|
margin-bottom: 50px;
|
|
}
|
|
.warning-content-unactivated form + div {
|
|
line-height: 0;
|
|
}
|
|
.warning-content-unactivated img {
|
|
margin-bottom: -30px;
|
|
width: 100%;
|
|
}
|
|
.warning-content-unactivated form {
|
|
margin-bottom: 30px;
|
|
}
|
|
.warning-content-restricted > div p {
|
|
padding-bottom: 0;
|
|
*zoom: 1;
|
|
}
|
|
.warning-content-restricted > div p:after {
|
|
content: "";
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
.warning-content-restricted img {
|
|
margin-top: 20px;
|
|
margin-left: 20px;
|
|
width: 100px;
|
|
float: right;
|
|
}
|
|
.warning-content-forward > div strong {
|
|
margin-top: 10px;
|
|
font-size: 21px;
|
|
border-bottom: none;
|
|
text-align: center;
|
|
display: block;
|
|
color: var(--theme, #0070ff);
|
|
}
|
|
.warning-content-forward > div p {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
padding: 20px 0 30px;
|
|
text-align: left;
|
|
}
|
|
.warning-content-forward form {
|
|
margin-bottom: 20px;
|
|
}
|
|
@media screen and (max-width: 980px) {
|
|
body {
|
|
border-top-width: 4px;
|
|
}
|
|
#wrapper {
|
|
width: 100%;
|
|
}
|
|
#main-body {
|
|
margin: 0 auto;
|
|
max-width: 625px;
|
|
padding-right: 5px;
|
|
padding-left: 5px;
|
|
}
|
|
#sidebar {
|
|
margin: 0;
|
|
}
|
|
.general-sidebar {
|
|
display: none;
|
|
}
|
|
#footer-selector {
|
|
width: 100%;
|
|
float: none;
|
|
}
|
|
#footer-inner {
|
|
max-width: 620px;
|
|
text-align: center;
|
|
}
|
|
#footer-inner .link-container {
|
|
text-align: center;
|
|
padding-top: 10px;
|
|
}
|
|
#footer-inner #region-select-page + #copyright {
|
|
text-align: center;
|
|
}
|
|
#sidebar,
|
|
.main-column {
|
|
width: 100%;
|
|
float: none;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
#cookie-policy-notice .cookie-content {
|
|
width: 630px;
|
|
font-size: 13px;
|
|
display: table;
|
|
}
|
|
#cookie-policy-notice p {
|
|
padding: 0 10px;
|
|
max-width: 100%;
|
|
}
|
|
#cookie-policy-notice button {
|
|
font-size: 14px;
|
|
}
|
|
#sidebar + .main-column {
|
|
float: none;
|
|
margin-bottom: 60px;
|
|
padding: 0;
|
|
}
|
|
.main-column.replyform-bottom {
|
|
margin-bottom: 40px;
|
|
}
|
|
.main-column.messages {
|
|
margin-bottom: 60px !important;
|
|
}
|
|
#global-menu {
|
|
width: 615px;
|
|
}
|
|
#global-menu #global-menu-list {
|
|
float: inherit;
|
|
}
|
|
#global-menu #global-menu-list > ul > li {
|
|
float: left;
|
|
width: 16.6%;
|
|
padding: 0;
|
|
text-align: center;
|
|
}
|
|
#global-menu #global-menu-list > ul > li > a {
|
|
padding: 0 1px;
|
|
text-align: center;
|
|
position: relative;
|
|
display: block;
|
|
height: 54px;
|
|
}
|
|
#global-menu #global-menu-list > ul > li > a:before {
|
|
padding: 0;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#global-menu #global-menu-list > ul > li > a:hover {
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-ms-box-shadow: none;
|
|
-o-box-shadow: none;
|
|
box-shadow: none;
|
|
background-color: #f4f4f4;
|
|
}
|
|
/*#global-menu #global-menu-list > ul > li > button:hover,*/
|
|
#global-menu #global-menu-list > ul > li > a:after {
|
|
display: none;
|
|
}
|
|
#global-menu #global-menu-list > ul > li > a > span {
|
|
display: none;
|
|
}
|
|
#global-menu #global-menu-list > ul > li > a > span.icon-container {
|
|
display: block;
|
|
}
|
|
#global-menu #global-menu-list > ul > li#global-menu-my-menu button {
|
|
width: 100%;
|
|
}
|
|
#global-menu #global-menu-list > ul > li#global-menu-my-menu button:before {
|
|
padding: 0;
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#global-menu #global-menu-list > ul > li#global-menu-my-menu button:after {
|
|
display: inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
#global-menu #global-menu-list > ul > li#global-menu-my-menu button:hover {
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-ms-box-shadow: none;
|
|
-o-box-shadow: none;
|
|
box-shadow: none;
|
|
background-color: #f4f4f4;
|
|
}
|
|
#global-menu .official-tag {
|
|
top: 0px;
|
|
}
|
|
#global-menu li#global-menu-feed a,
|
|
#global-menu li#global-menu-community a {
|
|
padding-left: 0;
|
|
}
|
|
#global-menu li#global-menu-mymenu .icon-container {
|
|
float: none;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
top: 9px;
|
|
}
|
|
#global-menu li#global-menu-news a {
|
|
width: 100%;
|
|
}
|
|
#global-menu li.selected a {
|
|
border-bottom: 2px solid var(--theme, #0070ff);
|
|
}
|
|
#global-menu #global-my-menu {
|
|
top: 62px;
|
|
}
|
|
#global-menu #global-my-menu:before,
|
|
#global-menu #global-my-menu:after {
|
|
right: 25%;
|
|
}
|
|
#global-menu #global-menu-message .badge {
|
|
left: 40% !important;
|
|
}
|
|
.list > li,
|
|
.list > div,
|
|
.list > a,
|
|
.list > span {
|
|
margin: 0;
|
|
}
|
|
.list.post-list > div:last-child {
|
|
-webkit-border-radius: 0 0 5px 5px;
|
|
-moz-border-radius: 0 0 5px 5px;
|
|
-ms-border-radius: 0 0 5px 5px;
|
|
-o-border-radius: 0 0 5px 5px;
|
|
border-radius: 0 0 5px 5px;
|
|
}
|
|
#global-menu-logo {
|
|
display: none;
|
|
}
|
|
.community-card-list > li {
|
|
margin: 0 1% 10px 0;
|
|
}
|
|
#reply-content .list > li.my:hover {
|
|
background-color: #c7f6ff;
|
|
}
|
|
.list-content-with-icon-and-text li {
|
|
margin: 0;
|
|
}
|
|
.list-content-with-icon-and-text .text {
|
|
height: auto;
|
|
}
|
|
.sidebar-container .community-list {
|
|
display: none;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu {
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a {
|
|
background-image: none;
|
|
border-top: none;
|
|
border-right: 1px dashed #dddddd;
|
|
display: table-cell;
|
|
padding: 15px 0 10px;
|
|
vertical-align: top;
|
|
width: 22%;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a:last-child {
|
|
border: none;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a:before {
|
|
display: block;
|
|
width: auto;
|
|
padding: 0 10px 5px;
|
|
position: static;
|
|
margin: 0;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a > span {
|
|
display: block;
|
|
padding: 0 10px;
|
|
text-align: center;
|
|
width: auto;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a.with-count > .post-count {
|
|
position: static;
|
|
padding: 0 10px;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a.with-count > .post-count span {
|
|
display: block;
|
|
width: auto;
|
|
max-width: 150px;
|
|
margin: 0px auto;
|
|
}
|
|
.community-name {
|
|
font-size: 18px;
|
|
}
|
|
.sidebar-favorite-community ul {
|
|
height: 82px;
|
|
margin-bottom: 5px;
|
|
overflow: hidden;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community {
|
|
width: 10%;
|
|
margin: 0 0.5%;
|
|
min-height: 83px;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community:nth-child(5n+1) {
|
|
clear: none;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community:nth-child(10) {
|
|
clear: both;
|
|
}
|
|
.user-sidebar #sidebar-cover,
|
|
.general-sidebar #sidebar-cover {
|
|
min-height: 230px;
|
|
}
|
|
.sidebar-profile,
|
|
.sidebar-favorite-community,
|
|
#edit-profile-settings {
|
|
display: none;
|
|
}
|
|
.profile-top .sidebar-profile,
|
|
.profile-top .sidebar-favorite-community,
|
|
.profile-top #edit-profile-settings {
|
|
display: block;
|
|
}
|
|
.community-description,
|
|
#sidebar-community .favorite-button {
|
|
display: none;
|
|
}
|
|
.community-top .community-description,
|
|
.community-top #sidebar-community .favorite-button {
|
|
display: block;
|
|
}
|
|
form.search {
|
|
margin: 0 0 10px;
|
|
}
|
|
.search .search-content p.note {
|
|
margin: 0;
|
|
padding: 0 10px 15px;
|
|
}
|
|
h3.label {
|
|
margin-top: 0;
|
|
}
|
|
.community-main {
|
|
width: 100%;
|
|
float: none;
|
|
}
|
|
.community-top-sidebar {
|
|
width: 100%;
|
|
float: none;
|
|
margin-top: 12px;
|
|
}
|
|
#community-eyecatch-menu {
|
|
text-align: center;
|
|
}
|
|
#community-eyecatch-menu li {
|
|
float: none;
|
|
display: inline-block;
|
|
}
|
|
.digest-container {
|
|
display: none;
|
|
}
|
|
#page-title + .community-list {
|
|
margin-top: 0;
|
|
}
|
|
#identified-user-banner {
|
|
margin-bottom: 12px;
|
|
}
|
|
body.community-post-list #sidebar-cover {
|
|
display: none;
|
|
}
|
|
.post-list > .post-list-outline {
|
|
margin-bottom: 15px;
|
|
}
|
|
.post-list .screenshot-container.image {
|
|
margin: 0 0 15px;
|
|
}
|
|
.post-list .screenshot-container.image img {
|
|
max-width: 320px;
|
|
width: 100%;
|
|
height: auto;
|
|
max-height: 320px;
|
|
}
|
|
.post-list .recent-reply-content {
|
|
background-color: #f3f3f3;
|
|
border: none;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply:hover {
|
|
background-color: #ececec;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-read-more-container {
|
|
border-bottom: 1px solid #dddddd;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-read-more-container:hover {
|
|
background-color: #ececec;
|
|
}
|
|
.user-data .note {
|
|
padding: 0 10px;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
}
|
|
.user-data .user-main-profile {
|
|
display: table;
|
|
}
|
|
.user-data .user-main-profile h4 {
|
|
display: table-cell;
|
|
float: none;
|
|
width: 1%;
|
|
}
|
|
.user-data .user-main-profile .note {
|
|
display: table-cell;
|
|
}
|
|
.user-data .data-content.game .note span {
|
|
display: inline-block;
|
|
}
|
|
.user-data .data-content.game .note div {
|
|
margin: 0 8px;
|
|
}
|
|
.login-page .g-recaptcha {
|
|
margin: 10px 0px 15px !important;
|
|
}
|
|
.redesign-banner {
|
|
position: relative;
|
|
min-width: 428px;
|
|
margin: -15px auto 15px;
|
|
padding-left: 45px;
|
|
font-size: 14px;
|
|
top: auto;
|
|
}
|
|
.redesign-banner .redesign-banner-text {
|
|
max-width: 100%;
|
|
}
|
|
.redesign-banner {
|
|
margin: 0 auto 15px;
|
|
top: auto;
|
|
}
|
|
.guest:not(.user) #global-menu-logo {
|
|
display: block;
|
|
}
|
|
#global-menu-login {
|
|
vertical-align: middle;
|
|
text-align: right;
|
|
}
|
|
#global-menu li {
|
|
width: auto;
|
|
}
|
|
#global-menu li a {
|
|
height: auto;
|
|
background-color: transparent;
|
|
}
|
|
#main-body {
|
|
padding-top: 0;
|
|
}
|
|
#community-top {
|
|
padding: 10px 5px 20px;
|
|
margin: 0 auto;
|
|
padding-bottom: 0;
|
|
max-width: 625px;
|
|
}
|
|
#cookie-policy-notice {
|
|
top: 0;
|
|
}
|
|
#about-inner {
|
|
max-width: 615px;
|
|
padding: 0 0 35px;
|
|
}
|
|
#about-text,
|
|
#about img {
|
|
width: 100%;
|
|
float: none;
|
|
}
|
|
.guest-terms-content {
|
|
margin-top: 7px;
|
|
}
|
|
#about img {
|
|
display: block;
|
|
max-width: 500px;
|
|
margin: 20px auto 0;
|
|
}
|
|
#community-guide-footer {
|
|
width: 100%;
|
|
margin-bottom: 50px;
|
|
float: none;
|
|
}
|
|
.album-dialog .window {
|
|
max-width: 580px;
|
|
}
|
|
.album-dialog .created-at {
|
|
margin-top: 5px;
|
|
}
|
|
.album-dialog img {
|
|
min-height: 0;
|
|
margin-bottom: 15px;
|
|
max-height: 240px;
|
|
}
|
|
|
|
button.msg-update {
|
|
max-width: 50px;
|
|
padding: 4px 4px 4px 4px;
|
|
font-size: 12px;
|
|
margin-right: 0;
|
|
margin-top: -20px;
|
|
}
|
|
}
|
|
@media screen and (min-width: 660px) and (max-width: 980px) {
|
|
}
|
|
@media screen and (max-width: 660px) {
|
|
#wrapper {
|
|
min-width: 320px;
|
|
}
|
|
#global-menu {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
max-width: 480px;
|
|
min-width: 320px;
|
|
}
|
|
#global-menu li a:before {
|
|
font-size: 30px;
|
|
}
|
|
#global-menu li#global-menu-mymenu .icon-container {
|
|
width: 36px;
|
|
height: 36px;
|
|
top: 10px;
|
|
}
|
|
#global-menu li#global-menu-mymenu .icon-container .icon {
|
|
width: 34px;
|
|
height: 34px;
|
|
}
|
|
#global-menu li#global-menu-my-menu button:before {
|
|
font-size: 24px;
|
|
}
|
|
#global-menu #global-my-menu {
|
|
width: 90%;
|
|
margin: 0 5%;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
#global-menu #global-my-menu:before,
|
|
#global-menu #global-my-menu:after {
|
|
right: 6%;
|
|
}
|
|
#main-body {
|
|
max-width: 480px;
|
|
}
|
|
#footer-selector li {
|
|
font-size: 10px;
|
|
padding: 0;
|
|
margin: 0 5px;
|
|
}
|
|
.pager-button {
|
|
margin: 15px auto 5px;
|
|
width: auto;
|
|
}
|
|
.pager-button .selected {
|
|
padding: 9px 30px 7px;
|
|
width: auto;
|
|
}
|
|
.pager-button .next-button,
|
|
.pager-button .back-button {
|
|
padding: 9px 20px 7px;
|
|
width: auto;
|
|
}
|
|
.no-content {
|
|
font-size: 14px;
|
|
}
|
|
.no-content.no-content-favorites > div {
|
|
padding: 15px 70px 15px 10px;
|
|
}
|
|
.no-content.no-content-favorites .favorite-community-link.symbol {
|
|
right: 10px;
|
|
}
|
|
div#activity-feed-tutorial {
|
|
margin: 5px 10px 10px;
|
|
padding: 13px 10px 5px;
|
|
}
|
|
div#activity-feed-tutorial p.tleft {
|
|
float: none;
|
|
width: 100%;
|
|
margin-bottom: 6px;
|
|
font-size: 12px;
|
|
}
|
|
div#activity-feed-tutorial img.tutorial-image {
|
|
width: 50%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
div#activity-feed-tutorial h3 {
|
|
padding: 5px 0 3px;
|
|
line-height: 1.3em;
|
|
font-size: 12px;
|
|
}
|
|
div#activity-feed-tutorial.no-content p.tleft {
|
|
color: #323232;
|
|
font-size: 12px;
|
|
}
|
|
.dialog .window {
|
|
width: 300px;
|
|
}
|
|
.dialog.track-error .window-body {
|
|
padding: 15px 15px 25px;
|
|
}
|
|
.simple-wrapper #wrapper {
|
|
width: auto;
|
|
margin-top: 0;
|
|
}
|
|
.simple-wrapper.simple-wrapper-content #wrapper {
|
|
margin: 20px 10px 0;
|
|
}
|
|
.simple-wrapper.simple-wrapper-content #main-body {
|
|
border: none;
|
|
}
|
|
/*#empathy-content .icon-container.donator:after,
|
|
#reply-content .icon-container.donator:after,
|
|
.news-list .icon-container.donator:after {
|
|
content: url(img/donator.png);
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.verifiedd:after,
|
|
#reply-content .icon-container.verifiedd:after,
|
|
.news-list .icon-container.verifiedd:after {
|
|
content: url(img/.png);
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.cool:after,
|
|
#reply-content .icon-container.cool:after,
|
|
.news-list .icon-container.cool:after {
|
|
content: url(img/cool.png);
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.jack:after,
|
|
#reply-content .icon-container.jack:after,
|
|
.news-list .icon-container.jack:after {
|
|
content: url(img/jack.png);
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.moderator:after,
|
|
#reply-content .icon-container.moderator:after,
|
|
.news-list .icon-container.moderator:after {
|
|
content: url(img/moderator.png);
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.administrator:after,
|
|
#reply-content .icon-container.administrator:after,
|
|
.news-list .icon-container.administrator:after {
|
|
content: url("img/administrator.png");
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.developer:after,
|
|
#reply-content .icon-container.developer:after,
|
|
.news-list .icon-container.developer:after {
|
|
content: url("img/developer.png");
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.badgedes:after,
|
|
#reply-content .icon-container.badgedes:after,
|
|
.news-list .icon-container.badgedes:after {
|
|
content: url("img/badgedes.png");
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
#empathy-content .icon-container.openverse:after,
|
|
#reply-content .icon-container.openverse:after,
|
|
.news-list .icon-container.openverse:after {
|
|
content: url("img/open-dev.png");
|
|
width: 17px;
|
|
height: 17px;
|
|
}
|
|
*/
|
|
.button {
|
|
font-size: 14px;
|
|
width: 85%;
|
|
padding: 8px 10px 6px;
|
|
}
|
|
.big-button {
|
|
width: 80%;
|
|
font-size: 14px;
|
|
padding: 10px 0 8px;
|
|
}
|
|
.user-sidebar .unfollow-button:before {
|
|
line-height: 35px;
|
|
}
|
|
.dialog .window-body .button,
|
|
.dialog .window-body .black-button,
|
|
.dialog .window-body .gray-button {
|
|
min-width: 120px;
|
|
font-size: 12px;
|
|
}
|
|
.main-column .social-buttons-content:after {
|
|
clear: none;
|
|
}
|
|
.social-buttons-content {
|
|
display: table;
|
|
}
|
|
.social-buttons-content + .report-buttons-content {
|
|
margin: 10px 0 0;
|
|
}
|
|
.social-buttons-content.social-buttons-content-primary {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
}
|
|
.social-buttons-content .social-button.line,
|
|
.social-buttons-content .social-buttons-content-cell.line {
|
|
display: block;
|
|
}
|
|
.social-buttons-content .social-buttons-content-cell {
|
|
display: table-cell;
|
|
padding-right: 5px;
|
|
}
|
|
.social-buttons-content .embed-link-button {
|
|
font-size: 10px;
|
|
clear: both;
|
|
float: left;
|
|
margin-top: 10px;
|
|
min-height: 25px;
|
|
max-width: 50%;
|
|
text-align: left;
|
|
}
|
|
.social-buttons-content.is-disable-twitter {
|
|
display: block;
|
|
}
|
|
.social-buttons-content.is-disable-twitter .social-buttons-content {
|
|
display: inline-block;
|
|
}
|
|
.social-buttons-content.is-disable-twitter .social-buttons-content-cell {
|
|
display: inline-block;
|
|
}
|
|
#post-content + .buttons-content,
|
|
#empathy-content + .buttons-content {
|
|
padding: 10px;
|
|
}
|
|
.reply-list .reply-meta .button,
|
|
.report-buttons-content .button {
|
|
font-size: 10px;
|
|
margin-left: 15px;
|
|
}
|
|
.post-filter {
|
|
padding: 0;
|
|
}
|
|
#disabled-report-violation-notice .window-body-inner p {
|
|
margin: 5px 10px 0;
|
|
}
|
|
.button-shop {
|
|
padding-right: 30px !important;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a span {
|
|
font-size: 10px;
|
|
line-height: 12px;
|
|
padding: 0 3px;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a .post-count {
|
|
margin: 5px auto 0;
|
|
padding: 0 10px;
|
|
}
|
|
.sidebar-setting .sidebar-post-menu a .post-count span {
|
|
padding: 2px 0;
|
|
}
|
|
.user-sidebar #sidebar-cover,
|
|
.general-sidebar #sidebar-cover {
|
|
min-height: 0;
|
|
background-image: none;
|
|
}
|
|
.user-sidebar #sidebar-cover img,
|
|
.general-sidebar #sidebar-cover img {
|
|
display: block;
|
|
max-width: 100%;
|
|
border-radius: 5px 5px 0 0;
|
|
}
|
|
.user-sidebar .sidebar-setting .sidebar-post-menu {
|
|
table-layout: fixed;
|
|
}
|
|
.user-sidebar .sidebar-setting .sidebar-post-menu a span {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
}
|
|
.sidebar-favorite-community ul {
|
|
height: auto;
|
|
overflow: visible;
|
|
max-width: 350px;
|
|
margin: 0 auto;
|
|
padding: 5px 10px 15px;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community {
|
|
width: 18%;
|
|
margin: 0 1% 5px;
|
|
min-height: 0;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community:nth-child(5n+1) {
|
|
clear: both;
|
|
}
|
|
.sidebar-favorite-community li.favorite-community:nth-child(10) {
|
|
clear: none;
|
|
}
|
|
.sidebar-favorite-community .platform-tag {
|
|
margin: 2px 0 0;
|
|
}
|
|
#sidebar-community-body {
|
|
padding: 10px 10px 5px;
|
|
}
|
|
.community-description {
|
|
margin: 0 10px 15px;
|
|
font-size: 13px;
|
|
padding: 10px;
|
|
}
|
|
.list > li,
|
|
.list > div,
|
|
.list > a,
|
|
.list > span {
|
|
padding: 10px;
|
|
}
|
|
.list .icon-container {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
.list .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
.list .toggle-button .button {
|
|
width: 94px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
padding: 0 28px 0 0;
|
|
}
|
|
.list .toggle-button .button:before {
|
|
height: 28px;
|
|
line-height: 28px;
|
|
}
|
|
.list .user-community .icon-container .icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
.list .user-community .icon-container .user-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
.news-list .icon-container {
|
|
margin-right: 8px;
|
|
}
|
|
.community-list > li {
|
|
padding: 0;
|
|
}
|
|
.community-list .siblings:before {
|
|
font-size: 27px;
|
|
}
|
|
.community-list .siblings + .body {
|
|
margin-right: 38px;
|
|
}
|
|
.community-list .body {
|
|
padding: 5px 10px 0;
|
|
}
|
|
.community-list .news-community-badge {
|
|
padding: 0 3px;
|
|
top: -3px;
|
|
}
|
|
.community-list .news-community-badge + .title {
|
|
margin-top: -3px;
|
|
}
|
|
.community-list .title {
|
|
margin-bottom: 2px;
|
|
}
|
|
.community-list .users {
|
|
margin-top: 1px;
|
|
margin-right: 3px;
|
|
background-color: #e9e9e9;
|
|
}
|
|
.community-card-list {
|
|
margin: 0 0 5px;
|
|
}
|
|
.community-card-list > li {
|
|
width: 100%;
|
|
margin: 0 0 7px 0;
|
|
}
|
|
.community-small-list .icon-container {
|
|
width: 38px;
|
|
height: 38px;
|
|
}
|
|
.community-small-list .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.community-small-list .title {
|
|
margin-bottom: 7px;
|
|
font-size: 14px;
|
|
}
|
|
#community-eyecatch-menu li {
|
|
margin-right: 5px;
|
|
}
|
|
#community-eyecatch-main {
|
|
height: 333px;
|
|
}
|
|
#community-eyecatch-main .icon-container {
|
|
width: 38px;
|
|
height: 38px;
|
|
margin-top: 20px;
|
|
}
|
|
#community-eyecatch-main .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.community-eyecatch-image {
|
|
padding: 200px 10px 10px 10px;
|
|
}
|
|
.community-eyecatch-balloon {
|
|
float: none;
|
|
width: auto;
|
|
margin-left: 50px;
|
|
}
|
|
.community-eyecatch-balloon:after {
|
|
margin-top: 3px;
|
|
}
|
|
.list-content-with-icon-and-text li {
|
|
padding: 10px;
|
|
}
|
|
.list-content-with-icon-and-text .body {
|
|
margin-left: 58px;
|
|
}
|
|
.list-content-with-icon-and-text .title {
|
|
margin-bottom: 0;
|
|
margin-top: 6px;
|
|
}
|
|
.list-content-with-icon-and-text .nick-name {
|
|
font-size: 14px;
|
|
}
|
|
.list-content-with-icon-and-text .id-name {
|
|
font-size: 10px;
|
|
}
|
|
.list-content-with-icon-and-text .text {
|
|
font-size: 12px;
|
|
}
|
|
.list-content-with-icon-and-text .user-profile-memo-content {
|
|
width: auto;
|
|
min-height: 0;
|
|
margin-right: 0;
|
|
}
|
|
.list-content-with-icon-and-text .toggle-button {
|
|
margin: 3px 0 0 5px;
|
|
}
|
|
#community-favorite {
|
|
padding-bottom: 3px;
|
|
padding-right: 10px;
|
|
}
|
|
#community-favorite ul {
|
|
padding-right: 55px;
|
|
max-width: 320px;
|
|
margin: 0 auto;
|
|
}
|
|
#community-favorite li {
|
|
width: 21%;
|
|
height: inherit;
|
|
margin: 0 2% 2%;
|
|
}
|
|
#community-favorite li:nth-child(5) {
|
|
clear: both;
|
|
}
|
|
#community-favorite .read-more .favorite-community-link.symbol {
|
|
right: 0;
|
|
}
|
|
#community-favorite .icon-container {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
#community-favorite .icon-container .icon {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
#community-favorite .empty-icon {
|
|
width: 100%;
|
|
}
|
|
#community-favorite .user-community .icon-container .icon {
|
|
width: 100%;
|
|
height: auto;
|
|
position: static;
|
|
}
|
|
#community-favorite .user-community .icon-container .user-icon {
|
|
width: 50%;
|
|
height: auto;
|
|
right: 3px;
|
|
bottom: 5px;
|
|
}
|
|
.follow-list .body {
|
|
float: none;
|
|
width: auto;
|
|
}
|
|
.follow-list .toggle-button {
|
|
margin: 4px 0;
|
|
}
|
|
.follow-list .title {
|
|
line-height: 1.2em;
|
|
margin-top: 5px;
|
|
}
|
|
.follow-list .text {
|
|
margin-top: 3px;
|
|
}
|
|
.follow-list .user-profile-memo-content {
|
|
width: 100%;
|
|
max-width: 320px;
|
|
min-height: 0;
|
|
}
|
|
.headline h2 {
|
|
padding: 10px 5px 0;
|
|
}
|
|
.headline form.search {
|
|
position: relative;
|
|
margin: 10px 0 0;
|
|
width: auto;
|
|
}
|
|
.count {
|
|
font-size: 12px;
|
|
margin: 7px 10px 0;
|
|
}
|
|
h2.label,
|
|
h3.label {
|
|
padding: 12px 12px 8px;
|
|
font-size: 14px;
|
|
}
|
|
.tab2 a,
|
|
.tab3 a {
|
|
font-size: 10px;
|
|
height: 20px;
|
|
padding: 5px 2px 3px;
|
|
}
|
|
.tab2 a span.number,
|
|
.tab3 a span.number {
|
|
min-width: 3em;
|
|
padding: 1px 3px 0;
|
|
}
|
|
.tab2.user-menu-activity a,
|
|
.tab3.user-menu-activity a {
|
|
padding: 0 5px;
|
|
}
|
|
.tab2 a {
|
|
width: 50%;
|
|
}
|
|
.tab3 a {
|
|
width: 34%;
|
|
}
|
|
.tab3 a:first-child,
|
|
.tab3 a:last-child {
|
|
width: 33%;
|
|
}
|
|
.tab-header-community {
|
|
margin: 0 auto 5px;
|
|
}
|
|
#tab-header-official-tags {
|
|
font-size: 10px;
|
|
}
|
|
.select-tab2 {
|
|
margin-top: 20px;
|
|
width: 95%;
|
|
}
|
|
.select-tab2 select,
|
|
.select-tab2 a {
|
|
font-size: 10px;
|
|
padding: 5px 6px 3px;
|
|
}
|
|
.select-tab2 a {
|
|
height: 20px;
|
|
line-height: 17px;
|
|
}
|
|
.select-tab2 .filter-dropdown-container:before {
|
|
font-size: 10px;
|
|
line-height: 28px;
|
|
padding: 0 7px;
|
|
}
|
|
#post-form {
|
|
margin: 15px 10px;
|
|
}
|
|
#post-form.folded {
|
|
margin: 15px 10px 0;
|
|
}
|
|
#post-form.folded .textarea-text {
|
|
height: 4.5em;
|
|
}
|
|
.post-list-outline.more {
|
|
margin-bottom: 40px;
|
|
}
|
|
#reply-form {
|
|
margin: 15px 10px 20px;
|
|
}
|
|
select {
|
|
min-width: 90% !important;
|
|
max-width: 100% !important;
|
|
white-space: pre-wrap;
|
|
}
|
|
.topic-categories-container select {
|
|
min-width: 80% !important;
|
|
}
|
|
.warning-content-forward .age-gate p {
|
|
padding: 20px 0 15px;
|
|
}
|
|
.warning-content-forward .age-gate .select-content {
|
|
margin-bottom: 35px;
|
|
}
|
|
.warning-content-forward .age-gate .select-button {
|
|
width: 70px;
|
|
}
|
|
.warning-content-forward .age-gate .year-select {
|
|
width: 90px;
|
|
}
|
|
.open-topic-post-existing-warning .content {
|
|
padding: 15px 20px;
|
|
}
|
|
.open-topic-post-existing-warning .window-bottom-buttons {
|
|
margin-top: 8px;
|
|
}
|
|
.search .search-content p.note {
|
|
padding: 5px 5px 10px;
|
|
line-height: 1.2em;
|
|
font-size: 12px;
|
|
}
|
|
.search .no-title-content {
|
|
min-height: 120px;
|
|
text-align: left;
|
|
width: auto;
|
|
-webkit-box-align: start;
|
|
-moz-box-align: start;
|
|
-ms-box-align: start;
|
|
-o-box-align: start;
|
|
box-align: start;
|
|
}
|
|
.search .no-title-content p {
|
|
padding: 0 10px;
|
|
}
|
|
.post-form-album-content {
|
|
max-width: 454px;
|
|
}
|
|
#official-tags-page li {
|
|
max-width: 260px;
|
|
}
|
|
.setting-form {
|
|
margin: 10px 0;
|
|
}
|
|
.setting-form li {
|
|
margin: 0;
|
|
padding: 0 10px 15px;
|
|
}
|
|
.setting-form .settings-label {
|
|
margin: 15px 0 5px;
|
|
}
|
|
.content-loading-window.activity-feed {
|
|
padding: 60px 10px;
|
|
}
|
|
.content-loading-window.activity-feed p {
|
|
font-size: 12px;
|
|
}
|
|
.content-load-error-window.activity-feed {
|
|
padding: 20px 10px 10px;
|
|
}
|
|
.content-load-error-window.activity-feed p {
|
|
font-size: 12px;
|
|
margin: 10px;
|
|
}
|
|
#community-top .platform-logo {
|
|
width: 100px;
|
|
margin-top: -3px;
|
|
}
|
|
#community-content .title {
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
}
|
|
#community-content .news-community-badge {
|
|
padding: 0 3px;
|
|
}
|
|
#community-content .text {
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
}
|
|
.filtering-label-container {
|
|
margin: 0 10px;
|
|
}
|
|
.filtering-label-container p,
|
|
.filtering-label-container .tag-name {
|
|
font-size: 12px;
|
|
line-height: 1.2em;
|
|
}
|
|
.community-title {
|
|
margin-top: 1.5em;
|
|
}
|
|
p.note-jasrac {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.post .community-container {
|
|
margin: -10px -10px 10px;
|
|
}
|
|
.post .post-tag {
|
|
font-size: 14px;
|
|
}
|
|
.post .post-content-text {
|
|
font-size: 16px;
|
|
}
|
|
.post .topic-body {
|
|
font-size: 14px;
|
|
}
|
|
.post-list .icon-container {
|
|
margin: 0 6px 5px 0;
|
|
width: 38px;
|
|
height: 38px;
|
|
}
|
|
.post-list .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.post-list .user-name {
|
|
display: block;
|
|
}
|
|
.post-list .timestamp-container {
|
|
display: block;
|
|
padding-left: 0;
|
|
font-size: 12px;
|
|
}
|
|
.post-list .body {
|
|
margin-left: 0;
|
|
clear: both;
|
|
}
|
|
.post-list .screenshot-container {
|
|
margin-right: 0;
|
|
}
|
|
.post-list .screenshot-container img {
|
|
height: auto;
|
|
}
|
|
.post-list .post-content-memo {
|
|
margin-right: 0;
|
|
}
|
|
.post-list .screenshot-container.video img {
|
|
height: 50px;
|
|
}
|
|
.post-list .post {
|
|
padding: 10px;
|
|
}
|
|
.post-list > .post-list-outline a.another-posts {
|
|
margin: 10px -10px -10px -10px;
|
|
}
|
|
.post-list .recommend-user-container {
|
|
padding: 0;
|
|
}
|
|
.post-list .recommend-user-container li {
|
|
padding: 10px;
|
|
}
|
|
.post-list .recommend-user-container .body {
|
|
clear: none;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-read-more-container {
|
|
font-size: 10px;
|
|
}
|
|
.post-list .recent-reply-content .icon-container {
|
|
width: 38px;
|
|
height: 38px;
|
|
margin-right: 6px;
|
|
}
|
|
.post-list .recent-reply-content .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.post-list .recent-reply-content .user-name,
|
|
.post-list .recent-reply-content .timestamp-container {
|
|
display: inline;
|
|
}
|
|
.post-list .recent-reply-content .post-content {
|
|
margin: 0;
|
|
}
|
|
.post-list .recent-reply-content .body {
|
|
margin-left: 44px;
|
|
padding-top: 0;
|
|
clear: none;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-content-memo {
|
|
margin-right: 44px;
|
|
}
|
|
.post-list .recent-reply-content .recent-reply-content-memo img {
|
|
height: 50px;
|
|
}
|
|
.multi-timeline-post-list .post .post-content-text {
|
|
font-size: 16px;
|
|
}
|
|
.multi-timeline-post-list .post .topic-body {
|
|
font-size: 14px;
|
|
}
|
|
.multi-timeline-post-list .post .screenshot-container {
|
|
position: static;
|
|
width: 48%;
|
|
height: auto;
|
|
display: block;
|
|
float: left;
|
|
margin: 0 2% 0 0;
|
|
}
|
|
.multi-timeline-post-list .post .screenshot-container img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
.multi-timeline-post-list .post.with-image .body {
|
|
margin: 0;
|
|
min-height: 0;
|
|
}
|
|
.multi-timeline-post-list .post.with-image .tag-container span,
|
|
.multi-timeline-post-list .post.with-image .tag-container a {
|
|
margin: 0;
|
|
}
|
|
.multi-timeline-post-list .post.with-image .timestamp-container {
|
|
font-size: 12px;
|
|
}
|
|
.multi-timeline-post-list .post.with-image .post-content-text {
|
|
margin: 0;
|
|
}
|
|
.multi-timeline-post-list .post.with-image .post-content-memo {
|
|
display: inline-block;
|
|
width: 50%;
|
|
}
|
|
.multi-timeline-post-list .post .post-meta {
|
|
padding-top: 10px;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork {
|
|
float: none;
|
|
width: 100%;
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork:first-child {
|
|
border-top: none;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .community-container {
|
|
margin: -5px -5px 5px;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .post-content-memo {
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .post-content-memo img {
|
|
max-width: 100%;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .list > div {
|
|
float: none;
|
|
width: 100%;
|
|
border-top: 1px solid #dddddd;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .list > div:first-child {
|
|
border-top: none;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .post-content-memo img {
|
|
max-width: auto;
|
|
}
|
|
.post-body .multi-timeline-post-list .post-subtype-artwork .hidden-content {
|
|
border: 1px dashed #dddddd;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .screenshot-container {
|
|
width: auto;
|
|
float: right;
|
|
margin: 0 0 0 10px;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .screenshot-container img {
|
|
height: 60px;
|
|
width: auto;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .user-container {
|
|
padding: 0;
|
|
clear: both;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .post-meta {
|
|
padding: 0;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic .timestamp-container {
|
|
display: none;
|
|
}
|
|
.multi-timeline-post-list .post-subtype-topic.post.with-image .body {
|
|
padding: 0;
|
|
}
|
|
.multi_timeline-topic-filter .window-bottom-buttons .button {
|
|
width: 100%;
|
|
}
|
|
#post-content {
|
|
padding: 10px;
|
|
}
|
|
#post-content .user-content {
|
|
display: block;
|
|
}
|
|
#post-content .community-container {
|
|
padding: 3px 8px;
|
|
}
|
|
#post-content .community-container .post-subtype-label {
|
|
margin: -2px -8px -5px 10px;
|
|
padding: 3px 9px;
|
|
}
|
|
#post-content .community-container-heading {
|
|
font-size: 14px;
|
|
}
|
|
#post-content .community-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
-webkit-border-radius: 0;
|
|
-moz-border-radius: 0;
|
|
-ms-border-radius: 0;
|
|
-o-border-radius: 0;
|
|
border-radius: 0;
|
|
}
|
|
#post-content .icon-container {
|
|
display: inline-block;
|
|
margin-right: 8px;
|
|
float: left;
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
#post-content .icon-container .icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
#post-content .user-name-content {
|
|
display: block;
|
|
padding-left: 0;
|
|
padding-top: 8px;
|
|
margin-left: 58px;
|
|
}
|
|
#post-content .user-name-content .user-name {
|
|
font-size: 14px;
|
|
}
|
|
#post-content .user-name-content .user-id {
|
|
font-size: 12px;
|
|
}
|
|
#post-content .timestamp-container {
|
|
font-size: 12px;
|
|
}
|
|
#post-content .video,
|
|
#post-content .video iframe {
|
|
min-height: 240px;
|
|
width: 100%;
|
|
}
|
|
#post-content #close-topic-post input {
|
|
width: 80%;
|
|
}
|
|
#post-content .post-content-text {
|
|
font-size: 16px;
|
|
}
|
|
#post-content .topic-title {
|
|
margin-top: 2px;
|
|
}
|
|
#post-content .topic-body {
|
|
margin-top: 0;
|
|
}
|
|
#post-content #close-topic-post {
|
|
margin-top: 10px;
|
|
}
|
|
#empathy-content {
|
|
margin: 0 10px 20px;
|
|
padding: 4px 5px 4px;
|
|
}
|
|
#empathy-content .post-permalink-feeling-icon {
|
|
width: 38px;
|
|
height: 38px;
|
|
margin: 2px 1.5px 1px 1.5px;
|
|
}
|
|
#empathy-content .post-permalink-feeling-icon .official-tag {
|
|
top: 8px;
|
|
}
|
|
#empathy-content .post-permalink-feeling-icon .user-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.reply-list .icon-container {
|
|
width: 38px;
|
|
height: 38px;
|
|
margin-right: 8px;
|
|
}
|
|
.reply-list .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.reply-list .body {
|
|
margin-left: 46px;
|
|
}
|
|
.reply-list .reply-content-text,
|
|
.reply-list .hidden-content {
|
|
font-size: 14px;
|
|
}
|
|
.post-permalink-button {
|
|
background: #ffffff url('img/icon-arrow-left.png') no-repeat 10px center;
|
|
min-height: 56px;
|
|
}
|
|
.post-permalink-button > span {
|
|
padding: 8px;
|
|
}
|
|
.post-permalink-button .icon-container {
|
|
width: 38px;
|
|
height: 38px;
|
|
padding-left: 28px;
|
|
}
|
|
.post-permalink-button .icon-container .icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
.user-data h4 span {
|
|
font-size: 12px;
|
|
}
|
|
.user-data .note {
|
|
text-align: right;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
}
|
|
.user-data .data-content.user-main-profile {
|
|
display: block;
|
|
}
|
|
.user-data .data-content.user-main-profile h4 {
|
|
display: inline-block;
|
|
float: left;
|
|
width: auto;
|
|
margin: 2px 0 0 0;
|
|
}
|
|
.user-data .data-content.user-main-profile .note {
|
|
display: block;
|
|
margin-left: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.user-data .data-content.game .note div {
|
|
margin: 0 0 0 5px;
|
|
}
|
|
.user-data .data-content.game .note span {
|
|
display: none;
|
|
}
|
|
.identified_user #image-header-content {
|
|
min-height: 0;
|
|
}
|
|
.identified_user #image-header-content .image-header-title {
|
|
padding: 24px 0;
|
|
}
|
|
.identified_user #image-header-content img {
|
|
display: none;
|
|
}
|
|
.identified_user .post-list .text {
|
|
font-size: 12px;
|
|
margin-right: 0;
|
|
line-height: 17px;
|
|
height: 17px;
|
|
}
|
|
#identified-user-banner a:before {
|
|
background-size: auto 40px !important;
|
|
height: 40px;
|
|
width: 40px;
|
|
margin: 6px 7px 6px 8px;
|
|
}
|
|
#identified-user-banner .title {
|
|
font-size: 14px;
|
|
padding: 11px 9px 5px 55px;
|
|
line-height: 1.1em;
|
|
}
|
|
#identified-user-banner .text {
|
|
font-size: 12px;
|
|
padding: 0 5px 8px 55px;
|
|
line-height: 1em;
|
|
}
|
|
#global-menu {
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
#global-menu #global-menu-logo {
|
|
padding: 16px 0;
|
|
}
|
|
#global-menu #global-menu-logo img {
|
|
height: auto;
|
|
width: 130px;
|
|
}
|
|
#global-menu-login input {
|
|
height: 30px;
|
|
margin-top: 4px;
|
|
}
|
|
h2.welcome-message {
|
|
font-size: 18px;
|
|
padding: 0 0 10px;
|
|
}
|
|
#try-miiverse .try-miiverse-catch {
|
|
font-size: 10px;
|
|
margin: 10px 10px -22px;
|
|
}
|
|
#try-miiverse #slide-post-container .post {
|
|
padding: 10px 10px 8px;
|
|
}
|
|
#try-miiverse #slide-post-container .post .screenshot-container {
|
|
height: 35px;
|
|
}
|
|
#try-miiverse #slide-post-container .post .screenshot-container img {
|
|
height: 35px;
|
|
}
|
|
#try-miiverse #slide-post-container .post-content {
|
|
max-width: 305px;
|
|
}
|
|
#global-menu {
|
|
max-width: 100%;
|
|
}
|
|
#main-body {
|
|
width: 100%;
|
|
}
|
|
#community-top {
|
|
max-width: 480px;
|
|
}
|
|
#about {
|
|
font-size: 14px;
|
|
padding: 15px 15px 5px;
|
|
}
|
|
#about p {
|
|
padding: 0;
|
|
}
|
|
.guest-terms-content {
|
|
margin: 7px 0px 0;
|
|
}
|
|
.warning-content > div {
|
|
padding: 0 20px;
|
|
}
|
|
.warning-content > div p {
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
}
|
|
.warning-content form {
|
|
margin-bottom: 20px;
|
|
}
|
|
.warning-content-forward > div {
|
|
padding: 20px;
|
|
}
|
|
.warning-content-unactivated form {
|
|
margin-bottom: 40px;
|
|
}
|
|
.warning-content-unactivated img {
|
|
margin: 0;
|
|
}
|
|
.warning-content-restricted > div p {
|
|
padding-bottom: 0;
|
|
}
|
|
.warning-content-restricted img {
|
|
margin-top: 15px;
|
|
margin-left: 10px;
|
|
width: 25%;
|
|
}
|
|
}
|
|
@media screen and (max-width: 580px) {
|
|
.multi-timeline-post-list .post .post-content-memo {
|
|
margin: 0;
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
.post-form-album-content {
|
|
width: auto;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
}
|
|
@media screen and (max-width: 480px) {
|
|
#community-eyecatch-main {
|
|
height: 247px;
|
|
}
|
|
.community-eyecatch-image {
|
|
padding: 115px 10px 10px 10px;
|
|
}
|
|
.post-permlink #main-body {
|
|
padding: 56px 0 170px 0;
|
|
}
|
|
.post-permlink .main-column {
|
|
padding: 0;
|
|
border-bottom: 1px solid #dddddd;
|
|
}
|
|
.post-permlink .post-list-outline {
|
|
border: none;
|
|
margin: 0;
|
|
-webkit-box-shadow: none;
|
|
-moz-box-shadow: none;
|
|
-ms-box-shadow: none;
|
|
-o-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.community-name {
|
|
font-size: 16px;
|
|
}
|
|
.album-content .album-list {
|
|
margin-right: 7px;
|
|
margin-left: 7px;
|
|
}
|
|
.album-content .album-list a.screenshot-container {
|
|
height: 80px;
|
|
width: 48%;
|
|
margin: 5px 1% 0;
|
|
}
|
|
.textarea-container .album-image-preview {
|
|
width: 100%;
|
|
left: 0;
|
|
top: 40px;
|
|
text-align: center;
|
|
padding-bottom: 5px;
|
|
position: static;
|
|
}
|
|
.textarea-container .album-image-preview img {
|
|
height: 150px;
|
|
width: auto;
|
|
margin: 0 auto;
|
|
}
|
|
.textarea-container .textarea.with-image {
|
|
padding-left: 1.8%;
|
|
width: 96%;
|
|
margin: 0 0 8px;
|
|
height: 6em;
|
|
}
|
|
#post-form {
|
|
min-height: 170px;
|
|
}
|
|
#post-form.folded {
|
|
min-height: 0;
|
|
}
|
|
/* .center-input input {
|
|
width: 90%;
|
|
}*/
|
|
.community-switcher {
|
|
float: none;
|
|
}
|
|
}
|
|
@media only screen and (max-height: 690px) {
|
|
pre {
|
|
max-height: 140px !important;
|
|
}
|
|
}
|
|
|
|
.textarea-with-menu .textarea-menu {
|
|
float: left;
|
|
}
|
|
.textarea-with-menu .textarea-menu li {
|
|
display: inline-block;
|
|
float: left;
|
|
}
|
|
.textarea-with-menu .textarea-menu label {
|
|
display: block;
|
|
position: relative;
|
|
width: 50px;
|
|
height: 27px;
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
outline-style: none;
|
|
}
|
|
.textarea-with-menu .textarea-menu label input[type="radio"] {
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 27px;
|
|
margin: 0;
|
|
display: none;
|
|
}
|
|
.textarea-with-menu .textarea-menu-text,
|
|
.textarea-with-menu .textarea-menu-memo,
|
|
.textarea-with-menu .textarea-menu-poll {
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(0.5, #ffffff), to(#e6e6e6)) 0 0;
|
|
}
|
|
.textarea-with-menu .textarea-menu-text:before,
|
|
.textarea-with-menu .textarea-menu-memo:before,
|
|
.textarea-with-menu .textarea-menu-poll:before {
|
|
content: "";
|
|
background: url(img/form-icons.png);
|
|
position: absolute;
|
|
top: 3px;
|
|
left: 50%;
|
|
margin-left: -10px;
|
|
}
|
|
.textarea-with-menu.active-text .textarea-menu-text,
|
|
.textarea-with-menu.active-memo .textarea-menu-memo,
|
|
.textarea-with-menu.active-poll .textarea-menu-poll {
|
|
background: -webkit-gradient(linear, left top, left bottom, from(var(--theme, #0070ff)), to(var(--theme-slightly-dark, #0070ff))) 0 0
|
|
}
|
|
.textarea-with-menu .textarea-menu-text.disabled,
|
|
.textarea-with-menu .textarea-menu-memo.disabled,
|
|
.textarea-with-menu .textarea-menu-poll.disabled {
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(0.5, #ffffff), to(#e6e6e6)) 0 0;
|
|
}
|
|
.textarea-with-menu .textarea-menu li label {
|
|
z-index: 2;
|
|
}
|
|
.textarea-with-menu .textarea-menu li:first-of-type label {
|
|
-webkit-border-top-left-radius: 6px;
|
|
}
|
|
.textarea-with-menu .textarea-menu li:last-of-type label {
|
|
-webkit-border-top-right-radius: 6px;
|
|
}
|
|
.textarea-with-menu .textarea-menu-text:before {
|
|
background-position: 0 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu .textarea-menu-memo:before {
|
|
background-position: -60px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu .textarea-menu-poll:before {
|
|
background-position: -120px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu.active-text .textarea-menu-text:before {
|
|
background-position: -20px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu.active-memo .textarea-menu-memo:before {
|
|
background-position: -80px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu.active-poll .textarea-menu-poll:before {
|
|
background-position: -140px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu .textarea-menu-text.disabled:before {
|
|
background-position: -40px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu .textarea-menu-memo.disabled:before {
|
|
background-position: -100px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu .textarea-menu-poll.disabled:before {
|
|
background-position: -160px 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.textarea-with-menu .textarea-poll {
|
|
text-align: center;
|
|
}
|
|
.textarea-with-menu .textarea-poll .option {
|
|
margin-bottom: 8px;
|
|
border-radius: 5px;
|
|
}
|
|
.textarea-with-menu .textarea-poll .delete:not(.none) + .option {
|
|
width: calc(100% - 64px);
|
|
}
|
|
.textarea-with-menu .textarea-poll .delete.none + .option {
|
|
width: calc(100% - 36px);
|
|
}
|
|
.textarea-with-menu .textarea-poll .delete {
|
|
border-radius: 25px;
|
|
background: none;
|
|
margin-top: 1%;
|
|
padding: 5px 8px 8px 8px;
|
|
border: none;
|
|
height: 28px;
|
|
float: right;
|
|
}
|
|
.textarea-with-menu .textarea-poll .delete:before {
|
|
font-family: "MiiverseSymbols";
|
|
font-size: 16px;
|
|
content: "x";
|
|
}
|
|
.textarea-with-menu .textarea-poll .delete:hover {
|
|
background: var(--theme, #0070ff);
|
|
color: #fff;
|
|
}
|
|
.textarea-with-menu .textarea-poll .add-option {
|
|
margin-bottom: 12px;
|
|
border-radius: 5px;
|
|
background: #888;
|
|
min-width: 135px;
|
|
font-size: 14px;
|
|
padding: 9px 10px;
|
|
border: 1px solid #444;
|
|
color: #fff;
|
|
}
|
|
.textarea-with-menu .textarea-poll .add-option:before {
|
|
content: 'Q';
|
|
margin-right: 4px;
|
|
}
|
|
.textarea-with-menu .textarea-poll .add-option:disabled {
|
|
border-color: #c4c4c4;
|
|
background: #dddddd;
|
|
color: #919191;
|
|
text-shadow: none;
|
|
}
|
|
.login-page {
|
|
text-align: center;
|
|
padding: 10px;
|
|
}
|
|
.login-page > form > img {
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
max-width: 95%;
|
|
}
|
|
.login-page .lh {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
.login-page .ll {
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.login-page a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.login-page .g-recaptcha {
|
|
margin: 10px auto 15px;
|
|
display: block;
|
|
width: 50%;
|
|
}
|
|
.index-memo {
|
|
text-align: center;
|
|
}
|
|
.index-memo > div {
|
|
padding: 10px;
|
|
}
|
|
.index-memo p {
|
|
width:90%;
|
|
display:inline-block;
|
|
}
|
|
#empathy-content .post-permalink-feeling-icon .user-icon {
|
|
border: 1px solid #dddddd;
|
|
}
|
|
|
|
.post-poll {
|
|
position: relative;
|
|
margins: 0 10px;
|
|
}
|
|
.poll-options.with-background {
|
|
background-position: center;
|
|
background-size: cover;
|
|
padding: 25% 10px 5px;
|
|
}
|
|
.post-poll .poll-option {
|
|
border-radius: 5px;
|
|
position: relative;
|
|
display: block;
|
|
padding: 12px;
|
|
margin: 5px 0px;
|
|
height: 20px;
|
|
color: white;
|
|
width: auto;
|
|
}
|
|
.post-poll:not(.selected) .poll-option {
|
|
background: var(--theme, #0070ff);
|
|
}
|
|
.post-poll:not(.selected) .poll-option .percentage, .post-poll:not(.selected) .poll-option .poll-background {
|
|
display: none;
|
|
}
|
|
.post-poll.selected .poll-option {
|
|
background: #212121;
|
|
z-index: 0;
|
|
}
|
|
.post-poll.selected .poll-option.selected:before {
|
|
font-family: 'MiiverseSymbols';
|
|
content: 'v';
|
|
margin-right: 3px;
|
|
}
|
|
.post-poll.selected .poll-option .percentage {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
float: right;
|
|
}
|
|
.post-poll.selected .poll-option .poll-background {
|
|
border-radius: 5px;
|
|
background: var(--theme, #0070ff);
|
|
position: absolute;
|
|
z-index: -1;
|
|
height: 100%;
|
|
float: left;
|
|
left: 0px;
|
|
top: 0px;
|
|
}
|
|
|
|
code,
|
|
pre {
|
|
display: block;
|
|
padding: 9.5px;
|
|
margin: 0 0 10px;
|
|
font-size: 13px;
|
|
line-height: 1.42857143;
|
|
color: #333;
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
page-break-inside: avoid;
|
|
|
|
max-height: 340px;
|
|
overflow-y: auto;
|
|
|
|
background-color: #f5f5f5;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
border: 1px solid #999;
|
|
|
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
}
|
|
canvas {
|
|
width: 320px;
|
|
height: 120px;
|
|
}
|
|
html.os-mac > pre::-webkit-scrollbar {
|
|
display: block !important;
|
|
}
|
|
|
|
|
|
#splatoon {
|
|
display: block;
|
|
position: fixed;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: 0px;
|
|
left: 0px;
|
|
z-index: 2000;
|
|
background: transparent url("img/load.png") 0 0 no-repeat;
|
|
animation: woomy 0.36s steps(17) infinite;
|
|
}
|
|
@keyframes woomy {
|
|
100% { background-position: 0 -1700px; }
|
|
}
|
|
|
|
#nprogress{pointer-events:none;}
|
|
#nprogress .bar{background:linear-gradient(45deg, #322ff3, #b50096);position:fixed;z-index:1031;top:0;left:0;width:100%;height:4px;}
|
|
#nprogress .peg{display:block;position:absolute;right:0px;width:100px;height:100%;box-shadow:0 0 10px #b50096,0 0 4px #b50096;opacity:1.0;-webkit-transform:rotate(3deg) translate(0px,-4px);-ms-transform:rotate(3deg) translate(0px,-4px);transform:rotate(3deg) translate(0px,-4px);}
|
|
.nprogress-custom-parent{overflow:hidden;position:relative;}.nprogress-custom-parent #nprogress .spinner,.nprogress-custom-parent #nprogress .bar{position:absolute;}
|
|
|
|
.sp-container {
|
|
position:absolute;
|
|
top:0;
|
|
left:0;
|
|
display:inline-block;
|
|
*display: inline;
|
|
*zoom: 1;
|
|
/* https://github.com/bgrins/spectrum/issues/40 */
|
|
z-index: 9999994;
|
|
overflow: hidden;
|
|
}
|
|
.sp-container.sp-flat {
|
|
position: relative;
|
|
}
|
|
|
|
/* Fix for * { box-sizing: border-box; } */
|
|
.sp-container,
|
|
.sp-container * {
|
|
-webkit-box-sizing: content-box;
|
|
-moz-box-sizing: content-box;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
|
|
.sp-top {
|
|
position:relative;
|
|
width: 100%;
|
|
display:inline-block;
|
|
}
|
|
.sp-top-inner {
|
|
position:absolute;
|
|
top:0;
|
|
left:0;
|
|
bottom:0;
|
|
right:0;
|
|
}
|
|
.sp-color {
|
|
position: absolute;
|
|
top:0;
|
|
left:0;
|
|
bottom:0;
|
|
right:20%;
|
|
}
|
|
.sp-hue {
|
|
position: absolute;
|
|
top:0;
|
|
right:0;
|
|
bottom:0;
|
|
left:84%;
|
|
height: 100%;
|
|
}
|
|
|
|
.sp-clear-enabled .sp-hue {
|
|
top:33px;
|
|
height: 77.5%;
|
|
}
|
|
|
|
.sp-fill {
|
|
padding-top: 80%;
|
|
}
|
|
.sp-sat, .sp-val {
|
|
position: absolute;
|
|
top:0;
|
|
left:0;
|
|
right:0;
|
|
bottom:0;
|
|
}
|
|
|
|
.sp-alpha-enabled .sp-top {
|
|
margin-bottom: 18px;
|
|
}
|
|
.sp-alpha-enabled .sp-alpha {
|
|
display: block;
|
|
}
|
|
.sp-alpha-handle {
|
|
position:absolute;
|
|
top:-4px;
|
|
bottom: -4px;
|
|
width: 6px;
|
|
left: 50%;
|
|
cursor: pointer;
|
|
border: 1px solid black;
|
|
background: white;
|
|
opacity: .8;
|
|
}
|
|
.sp-alpha {
|
|
display: none;
|
|
position: absolute;
|
|
bottom: -14px;
|
|
right: 0;
|
|
left: 0;
|
|
height: 8px;
|
|
}
|
|
.sp-alpha-inner {
|
|
border: solid 1px #333;
|
|
}
|
|
|
|
.sp-clear {
|
|
display: none;
|
|
}
|
|
|
|
.sp-clear.sp-clear-display {
|
|
background-position: center;
|
|
}
|
|
|
|
.sp-clear-enabled .sp-clear {
|
|
display: block;
|
|
position:absolute;
|
|
top:0px;
|
|
right:0;
|
|
bottom:0;
|
|
left:84%;
|
|
height: 28px;
|
|
}
|
|
|
|
/* Don't allow text selection */
|
|
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button {
|
|
-webkit-user-select:none;
|
|
-moz-user-select: -moz-none;
|
|
-o-user-select:none;
|
|
user-select: none;
|
|
}
|
|
|
|
.sp-container.sp-input-disabled .sp-input-container {
|
|
display: none;
|
|
}
|
|
.sp-container.sp-buttons-disabled .sp-button-container {
|
|
display: none;
|
|
}
|
|
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
|
|
display: none;
|
|
}
|
|
.sp-palette-only .sp-picker-container {
|
|
display: none;
|
|
}
|
|
.sp-palette-disabled .sp-palette-container {
|
|
display: none;
|
|
}
|
|
|
|
.sp-initial-disabled .sp-initial {
|
|
display: none;
|
|
}
|
|
|
|
|
|
/* Gradients for hue, saturation and value instead of images. Not pretty... but it works */
|
|
.sp-sat {
|
|
background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
|
|
background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
|
|
background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
|
|
background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
|
|
background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
|
|
background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
|
|
filter : progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
|
|
}
|
|
.sp-val {
|
|
background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
|
|
background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
|
|
background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
|
|
background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
|
|
background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
|
|
background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
|
|
filter : progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
|
|
}
|
|
|
|
.sp-hue {
|
|
background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
|
|
background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
|
|
background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
|
|
background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
|
|
background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
|
|
}
|
|
|
|
/* IE filters do not support multiple color stops.
|
|
Generate 6 divs, line them up, and do two color gradients for each.
|
|
Yes, really.
|
|
*/
|
|
.sp-1 {
|
|
height:17%;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
|
|
}
|
|
.sp-2 {
|
|
height:16%;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
|
|
}
|
|
.sp-3 {
|
|
height:17%;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
|
|
}
|
|
.sp-4 {
|
|
height:17%;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
|
|
}
|
|
.sp-5 {
|
|
height:16%;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
|
|
}
|
|
.sp-6 {
|
|
height:17%;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
|
|
}
|
|
|
|
.sp-hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Clearfix hack */
|
|
.sp-cf:before, .sp-cf:after { content: ""; display: table; }
|
|
.sp-cf:after { clear: both; }
|
|
.sp-cf { *zoom: 1; }
|
|
|
|
/* Mobile devices, make hue slider bigger so it is easier to slide */
|
|
@media (max-device-width: 480px) {
|
|
.sp-color { right: 40%; }
|
|
.sp-hue { left: 63%; }
|
|
.sp-fill { padding-top: 60%; }
|
|
}
|
|
.sp-dragger {
|
|
border-radius: 5px;
|
|
height: 5px;
|
|
width: 5px;
|
|
border: 1px solid #fff;
|
|
background: #000;
|
|
cursor: pointer;
|
|
position:absolute;
|
|
top:0;
|
|
left: 0;
|
|
}
|
|
.sp-slider {
|
|
position: absolute;
|
|
top:0;
|
|
cursor:pointer;
|
|
height: 3px;
|
|
left: -1px;
|
|
right: -1px;
|
|
border: 1px solid #000;
|
|
background: white;
|
|
opacity: .8;
|
|
}
|
|
|
|
/*
|
|
Theme authors:
|
|
Here are the basic themeable display options (colors, fonts, global widths).
|
|
See http://bgrins.github.io/spectrum/themes/ for instructions.
|
|
*/
|
|
|
|
.sp-container {
|
|
border-radius: 0;
|
|
background-color: #ECECEC;
|
|
border: solid 1px #aaa;
|
|
padding: 0;
|
|
}
|
|
|
|
.sp-top {
|
|
margin-bottom: 3px;
|
|
}
|
|
.sp-color, .sp-hue, .sp-clear {
|
|
border: solid 1px #666;
|
|
}
|
|
|
|
/* Input */
|
|
.sp-input-container {
|
|
float:right;
|
|
width: 100px;
|
|
margin-bottom: 4px;
|
|
}
|
|
.sp-initial-disabled .sp-input-container {
|
|
width: 100%;
|
|
}
|
|
.sp-input {
|
|
font-size: 12px !important;
|
|
border: 1px inset;
|
|
padding: 4px 5px;
|
|
margin: 0;
|
|
width: 100%;
|
|
background:transparent;
|
|
border-radius: 3px;
|
|
color: #222;
|
|
}
|
|
.sp-input:focus {
|
|
border: 1px solid orange;
|
|
}
|
|
.sp-input.sp-validation-error {
|
|
border: 1px solid red;
|
|
background: #fdd;
|
|
}
|
|
.sp-picker-container , .sp-palette-container {
|
|
float:left;
|
|
position: relative;
|
|
padding: 10px;
|
|
padding-bottom: 300px;
|
|
margin-bottom: -290px;
|
|
}
|
|
.sp-picker-container {
|
|
width: 172px;
|
|
border-left: solid 1px #fff;
|
|
}
|
|
|
|
/* Palettes */
|
|
.sp-palette-container {
|
|
border-right: solid 1px #ccc;
|
|
}
|
|
|
|
.sp-palette-only .sp-palette-container {
|
|
border: 0;
|
|
}
|
|
|
|
.sp-palette .sp-thumb-el {
|
|
display: block;
|
|
position:relative;
|
|
float:left;
|
|
width: 24px;
|
|
height: 15px;
|
|
margin: 3px;
|
|
cursor: pointer;
|
|
border:solid 2px transparent;
|
|
}
|
|
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
|
|
border-color: orange;
|
|
}
|
|
.sp-thumb-el {
|
|
position:relative;
|
|
}
|
|
|
|
/* Initial */
|
|
.sp-initial {
|
|
float: left;
|
|
border: solid 1px #333;
|
|
}
|
|
.sp-initial span {
|
|
width: 30px;
|
|
height: 25px;
|
|
border:none;
|
|
display:block;
|
|
float:left;
|
|
margin:0;
|
|
}
|
|
|
|
.sp-initial .sp-clear-display {
|
|
background-position: center;
|
|
}
|
|
|
|
/* Buttons */
|
|
.sp-palette-button-container,
|
|
.sp-button-container {
|
|
float: right;
|
|
}
|
|
|
|
/* Replacer (the little preview div that shows up instead of the <input>) */
|
|
.sp-replacer {
|
|
margin: 0;
|
|
overflow:hidden;
|
|
cursor:pointer;
|
|
padding: 4px;
|
|
display:inline-block;
|
|
*zoom: 1;
|
|
*display: inline;
|
|
border: solid 1px #aaa;
|
|
background: #eee;
|
|
color: #333;
|
|
vertical-align: middle;
|
|
margin-bottom: 12px;
|
|
}
|
|
.sp-replacer:hover, .sp-replacer.sp-active {
|
|
color: #111;
|
|
}
|
|
.sp-replacer.sp-disabled {
|
|
cursor:default;
|
|
border-color: silver;
|
|
color: silver;
|
|
}
|
|
.sp-dd {
|
|
padding: 2px 0;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
float:left;
|
|
font-size:10px;
|
|
}
|
|
.sp-preview {
|
|
position:relative;
|
|
border: 1px solid #000;
|
|
height: 28px;
|
|
width: 18.1px;
|
|
float: left;
|
|
z-index: 0;
|
|
}
|
|
|
|
.sp-palette {
|
|
*width: 220px;
|
|
max-width: 220px;
|
|
}
|
|
.sp-palette .sp-thumb-el {
|
|
width:16px;
|
|
height: 16px;
|
|
margin:2px 1px;
|
|
border: solid 1px #d0d0d0;
|
|
}
|
|
|
|
.sp-container {
|
|
padding-bottom:0;
|
|
}
|
|
|
|
|
|
/* Buttons: http://hellohappy.org/css3-buttons/ */
|
|
.sp-container button {
|
|
background-color: #eeeeee;
|
|
background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
|
|
background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
|
|
background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
|
|
background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
|
|
background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
|
|
border: 1px solid #ccc;
|
|
border-bottom: 1px solid #bbb;
|
|
border-radius: 3px;
|
|
color: #333;
|
|
font-size: 14px;
|
|
line-height: 1;
|
|
padding: 5px 4px;
|
|
text-align: center;
|
|
text-shadow: 0 1px 0 #eee;
|
|
vertical-align: middle;
|
|
}
|
|
.sp-container button:hover {
|
|
background-color: #dddddd;
|
|
background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
|
|
background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
|
|
background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
|
|
background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
|
|
background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
|
|
border: 1px solid #bbb;
|
|
border-bottom: 1px solid #999;
|
|
cursor: pointer;
|
|
text-shadow: 0 1px 0 #ddd;
|
|
}
|
|
.sp-container button:active {
|
|
border: 1px solid #aaa;
|
|
border-bottom: 1px solid #888;
|
|
-webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
|
|
-moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
|
|
-ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
|
|
-o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
|
|
box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
|
|
}
|
|
.sp-cancel {
|
|
font-size: 11px;
|
|
color: #d93f3f !important;
|
|
margin:0;
|
|
padding:2px;
|
|
margin-right: 5px;
|
|
vertical-align: middle;
|
|
text-decoration:none;
|
|
|
|
}
|
|
.sp-cancel:hover {
|
|
color: #d93f3f !important;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
.sp-palette span:hover, .sp-palette span.sp-thumb-active {
|
|
border-color: #000;
|
|
}
|
|
|
|
.sp-preview, .sp-alpha, .sp-thumb-el {
|
|
position:relative;
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
|
|
}
|
|
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
|
|
display:block;
|
|
position:absolute;
|
|
top:0;left:0;bottom:0;right:0;
|
|
}
|
|
|
|
.sp-palette .sp-thumb-inner {
|
|
background-position: 50% 50%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
|
|
}
|
|
|
|
.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
|
|
}
|
|
|
|
.sp-clear-display {
|
|
background-repeat:no-repeat;
|
|
background-position: center;
|
|
background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
|
|
}
|
|
|
|
.open-spin {
|
|
width: 40px;
|
|
margin: -2px 0 -2px 0;
|
|
content: url(img/favicon.png);
|
|
animation: spin 1.6s linear infinite;
|
|
}
|
|
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
|
|
.login-box input{
|
|
padding: 1.5%;
|
|
max-width: 320px;
|
|
width: 96%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
@keyframes glow {
|
|
from {
|
|
filter: drop-shadow(0px 0px 5px #fff);
|
|
}
|
|
to {
|
|
filter: drop-shadow(0px 0px 5px none);
|
|
}
|
|
}
|
|
.close-announce-container {
|
|
background-color: rgba(0, 0, 0, 0.06);
|
|
padding: 10px 10px 5px;
|
|
margin-bottom: 10px;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
.close-announce-link {
|
|
background: #fff;
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-ms-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-o-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
-ms-border-radius: 5px;
|
|
-o-border-radius: 5px;
|
|
border-radius: 5px;
|
|
text-align: left;
|
|
background: #fff9cd;
|
|
margin-bottom: 5px;
|
|
position: relative;
|
|
}
|
|
.close-announce-link:hover {
|
|
background-color: #fffce4;
|
|
}
|
|
.close-announce-link:before {
|
|
font-family: "MiiverseSymbols";
|
|
font-size: 14px;
|
|
content: 'A';
|
|
color: #FF9100;
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 50%;
|
|
margin-top: -9px;
|
|
}
|
|
.close-announce-link .title {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
display: block;
|
|
color: #FF9100;
|
|
padding: 10px 25px 8px 10px;
|
|
line-height: 1.3em;
|
|
}
|