TheDesk Miho (ver.5)

This commit is contained in:
cutls
2018-01-31 01:43:01 +09:00
parent afc5721ffe
commit 3dcc1d7581
18 changed files with 234 additions and 154 deletions

View File

@@ -1,5 +1,5 @@
/*共通CSS*/
body{overflow:hidden;}
.btn {
margin: 5px;
text-transform: none;
@@ -161,7 +161,7 @@ blockquote:before, .quote:before {
/*スクロールバー*/
::-webkit-scrollbar {
width: 5px;
height: 10px;
height: 5px;
background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-track {

View File

@@ -1,6 +1,6 @@
/*トゥートボックス向けCSS*/
#post-box {
position: absolute;
position: fixed;
right: 3px;
bottom: 3px;
background-color: white;

View File

@@ -8,12 +8,12 @@ iframe {
max-width:100%;
}
.box {
overflow-y: scroll;
overflow-x: hidden;
overflow-y: hidden;
min-width: 300px;
height: 100vh;
flex: 1;
}
.tl-box{ height:calc(100% - 40px); overflow-y:scroll; overflow-x:hidden }
@media screen and (max-width: 600px) {
#timeline-container {
display: block;
@@ -77,12 +77,16 @@ p {
.udg {
cursor: pointer;
}
.notice {
top: -7px;
.notice-box {
top: 0;
background-color:white;
display: inline-block;
position: relative;
font-family: Open Sans;
margin-right: 10px;
width:100%;
z-index:1000;
height:60px;
}
#tools {
position: fixed;
@@ -142,4 +146,7 @@ p {
}
.blacktheme .mention {
color: white;
}
.blacktheme .notice-box {
background-color: #333333;
}