thedesk/app/css/master.css

308 lines
5.2 KiB
CSS
Raw Normal View History

2018-01-28 23:22:43 +11:00
/*共通CSS*/
2018-07-28 07:25:12 +10:00
html,body{
2018-08-21 04:26:14 +10:00
/*transform: translate3d(0,0,0);*/
2018-07-28 07:25:12 +10:00
overflow:hidden;
user-select: none;
cursor:default;
font-size:13px;
height: 100vh;
background-color: var(--bg);
color: var(--color);
}
2018-01-28 23:22:43 +11:00
.btn {
margin: 5px;
text-transform: none;
}
.markdown {
display: none;
}
help {
display: none;
}
.show-help {
display: inline;
}
option {
display: none;
}
#mainView {
padding: 10px;
}
#message {
display: none;
position: fixed;
bottom: 0;
left: 0;
background-color: black;
color: white;
z-index: 9999;
}
#imagemodal, #videomodal {
display: none;
max-width: 100vw;
max-height: 100vh;
top:0;
2018-07-07 03:51:48 +10:00
background-color: var(--modal);
2018-01-28 23:22:43 +11:00
position: fixed;
z-index: 9;
}
2018-03-11 01:22:59 +11:00
#imagemodal, #videomodal, #tootmodal {
2018-07-07 03:51:48 +10:00
background-color: var(--modal);
2018-03-11 01:22:59 +11:00
}
2018-01-28 23:22:43 +11:00
#imagemodal .modal-content {
overflow: hidden;
}
2018-02-17 00:08:43 +11:00
#imagemodal .modal-footer{
overflow-x:scroll;
overflow-y:hidden;
}
2018-01-28 23:22:43 +11:00
#imagewrap {
width: 100%;
height: 100%;
}
.pointer {
cursor: pointer;
}
2018-07-28 07:25:12 +10:00
.badge{
min-width: 0 !important;
margin-left: 5px !important;
}
2018-02-14 03:19:44 +11:00
.bbcode-pulse-loadings, .bbcode-pulse-loading, .fa-pulse {
2018-01-28 23:22:43 +11:00
display: inline-block;
animation-duration: 3s;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-name: pulse;
}
@keyframes pulse {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
display: inline-block;
animation-duration: 1s;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-name: shake;
}
2018-01-28 23:22:43 +11:00
code:before, .pre:before {
content: "Code";
2018-02-18 03:44:03 +11:00
font-size: 1.8rem;
2018-01-28 23:22:43 +11:00
line-height: 1em;
font-family: monospace, monospace;
color: #999;
position: absolute;
right: 0;
top: 0;
}
code, pre {
color: white;
display: block;
border-left: 5px solid;
border-color: #079903;
padding-left: 10px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
background-color: #000;
padding: 1em 1em 1em;
position: relative;
2018-07-22 23:03:46 +10:00
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
2018-01-28 23:22:43 +11:00
}
blockquote, .quote p {
margin: 0;
}
blockquote, .quote {
color: black;
background-color: #ddd;
padding: 1em 1em 1em;
position: relative;
2018-07-22 23:03:46 +10:00
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
2018-01-28 23:22:43 +11:00
}
blockquote:before, .quote:before {
content: "Quote";
2018-02-18 03:44:03 +11:00
font-size: 1.8rem;
2018-01-28 23:22:43 +11:00
line-height: 1em;
font-family: Open Sans, cursive;
color: #999;
position: absolute;
right: 0;
top: 0;
}
2018-07-22 23:03:46 +10:00
.twitter-tweet {
color: black;
background-color: #fff;
padding: 1em 1em 1em;
position: relative;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
border-left: 5px solid #0c7abf;
}
.twitter-tweet :before {
content: "From Twitter";
font-size: 1.8rem;
line-height: 1em;
2018-08-17 03:21:40 +10:00
font-family: Open Sans;
color: #999;
position: absolute;
right: 0;
top: 0;
}
.pixiv-post {
color: black;
background-color: #fff;
padding: 1em 1em 1em;
position: relative;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
border-left: 5px solid #0096fa;
}
.pixiv-post :before {
content: "From Pixiv";
font-size: 1.8rem;
line-height: 1em;
font-family: Open Sans;
2018-07-22 23:03:46 +10:00
color: #999;
position: absolute;
right: 0;
top: 0;
}
2018-01-28 23:22:43 +11:00
#drag {
display: none;
position: fixed;
width: 100vw;
height: 100vh;
2018-07-07 03:51:48 +10:00
background-color: var(--bg);
color: var(--color);
2018-01-28 23:22:43 +11:00
z-index: 99999;
justify-content: center;
align-items: center;
}
#drag-content {
2018-02-18 03:44:03 +11:00
font-size: 2rem;
2018-01-28 23:22:43 +11:00
}
2018-02-13 06:16:46 +11:00
.radio{
2018-03-11 01:22:59 +11:00
font-family:'Baloo Bhai'
}
#pip{
2018-03-14 17:52:55 +11:00
z-index:504;
2018-03-11 01:22:59 +11:00
width:418px;
2018-07-07 03:51:48 +10:00
background-color: var(--subcolor);
2018-03-11 01:22:59 +11:00
position:absolute;
}
.pip-bottom{
bottom:10px;
}
.pip-left{
left:10px;
}
.pip-top{
top:10px;
}
.pip-right{
right:10px;
}
#pip-content .material-icons{
display:none;
2018-02-13 06:16:46 +11:00
}
2018-05-26 02:37:35 +10:00
.big-text{
font-size:1.2rem;
}
2018-07-07 03:51:48 +10:00
#releasenote {
background-color: var(--modal);
}
2018-06-12 01:44:28 +10:00
#releasenote li{
list-style-type: disc
}
2018-02-25 02:59:53 +11:00
@media only screen and (min-width: 993px){
#toast-container {
top:auto;
right:auto;
bottom: 5%;
left: 4%;
max-width: 86%;
}
}
.show{
animation: show 0.2s linear 0s;
}
@keyframes show{
from{
opacity: 0;
}
to{
opacity: 1;
}
}
2018-07-07 03:51:48 +10:00
.collapsible-header,.tabs{
background-color: var(--subcolor);
2018-04-16 23:58:14 +10:00
}
2018-07-07 03:51:48 +10:00
.modal-footer{
background-color: var(--modalfooter) !important;
2018-03-11 01:22:59 +11:00
}
2018-12-09 05:46:01 +11:00
.font{
font-size:1.5rem;
margin-bottom:5px;
}
.font:hover{
background-color: #999;
}
.release-do{
border: solid 2px;
border-color:var(--color);
padding:5px;
}
2018-07-07 03:51:48 +10:00
2018-07-28 07:25:12 +10:00
2018-01-28 23:22:43 +11:00
/*スクロールバー*/
::-webkit-scrollbar {
width: 5px;
2018-06-18 00:26:45 +10:00
height: 10px;
2018-01-28 23:22:43 +11:00
background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-track {
-webkit-border-radius: 5px;
border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
-webkit-border-radius: 5px;
border-radius: 5px;
2018-07-28 07:25:12 +10:00
background: #607d8b;
2018-01-28 23:22:43 +11:00
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}