2017-03-14 17:40:45 +03:00
|
|
|
/*
|
2019-01-02 16:43:11 +03:00
|
|
|
* Copyright (c) 2014-2019, b3log.org & hacpai.com
|
2017-03-14 17:40:45 +03:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
2018-03-12 07:28:33 +03:00
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
2017-03-14 17:40:45 +03:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-10-29 18:30:09 +03:00
|
|
|
body{
|
2015-03-01 16:13:21 +03:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2015-02-13 19:00:38 +03:00
|
|
|
.header {
|
|
|
|
margin: 0;
|
2016-10-29 18:30:09 +03:00
|
|
|
padding: 5px;
|
2015-02-13 19:00:38 +03:00
|
|
|
}
|
|
|
|
|
2016-10-29 18:30:09 +03:00
|
|
|
.header li {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 20px;
|
2015-02-20 04:42:05 +03:00
|
|
|
}
|
|
|
|
|
2015-02-13 19:00:38 +03:00
|
|
|
.header .gravatar {
|
|
|
|
width: 26px;
|
|
|
|
border-radius: 13px;
|
|
|
|
}
|
|
|
|
|
2016-10-29 18:30:09 +03:00
|
|
|
.header .logo {
|
|
|
|
height: 28px;
|
|
|
|
margin-top: -6px;
|
2015-02-13 19:00:38 +03:00
|
|
|
}
|
|
|
|
|
2016-10-29 19:02:21 +03:00
|
|
|
.header .font-ico {
|
2016-10-29 18:30:09 +03:00
|
|
|
font-size: 18px;
|
|
|
|
line-height: 28px;
|
2015-02-13 19:00:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.share-panel {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 20;
|
2016-10-29 18:30:09 +03:00
|
|
|
width: 226px;
|
|
|
|
padding: 5px 0px;
|
2015-02-13 19:00:38 +03:00
|
|
|
right: 0px;
|
|
|
|
line-height: normal;
|
2016-10-29 18:30:09 +03:00
|
|
|
top: 38px;
|
|
|
|
border-color: #999;
|
2015-02-13 19:00:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.share-panel .font-ico {
|
|
|
|
transition: all .2s ease-out 0s;
|
|
|
|
margin: 0 5px;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.share-panel .font-ico:hover {
|
|
|
|
transform:rotate(360deg);
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:42:05 +03:00
|
|
|
.footer {
|
|
|
|
height: 30px;
|
|
|
|
text-shadow: 0 0 0;
|
|
|
|
}
|
|
|
|
|
2015-02-13 19:00:38 +03:00
|
|
|
#editorDiv {
|
2016-10-29 18:30:09 +03:00
|
|
|
width: 100%;
|
|
|
|
height: 70%;
|
2015-02-13 19:00:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#output {
|
2016-10-29 18:30:09 +03:00
|
|
|
height: 30%;
|
|
|
|
width: 100%;
|
2015-02-14 15:38:33 +03:00
|
|
|
border-width: 0;
|
2015-02-20 04:42:05 +03:00
|
|
|
margin: 0;
|
2016-10-29 18:30:09 +03:00
|
|
|
padding: 2px 5px;
|
|
|
|
border-top: 1px solid #919191;
|
2015-02-17 05:29:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#dialogShare {
|
2015-02-20 04:42:05 +03:00
|
|
|
margin: 10px 15px 0;
|
2015-02-17 05:29:30 +03:00
|
|
|
line-height: 28px;
|
2015-02-20 04:42:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#dialogShare a {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
2015-03-01 16:13:21 +03:00
|
|
|
}
|
|
|
|
|
2016-10-29 18:30:09 +03:00
|
|
|
.wrapper {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
padding: 3px 8px;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 20px;
|
|
|
|
height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#editorDivWrap {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#goNews {
|
|
|
|
width: 30%;
|
|
|
|
overflow: auto;
|
|
|
|
border-left: 1px solid #919191;
|
|
|
|
}
|
|
|
|
|
|
|
|
#goNews li a {
|
|
|
|
display: block;
|
|
|
|
padding: 8px 10px;
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
2017-04-23 19:10:16 +03:00
|
|
|
#goNews li a.fn-right {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
color: #4285f4;
|
|
|
|
}
|
|
|
|
|
2016-10-29 18:30:09 +03:00
|
|
|
#goNews li a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
|
|
|
|
|
|
|
#goNews li.title {
|
|
|
|
border-bottom: 1px solid #e5e5e5;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
background-color: #f9fafb;
|
2015-02-13 19:00:38 +03:00
|
|
|
}
|