mirror of https://github.com/weisJ/darklaf.git
weisj
5 years ago
4 changed files with 363 additions and 57 deletions
@ -0,0 +1,337 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2000-2014 JetBrains s.r.o. |
||||||
|
* |
||||||
|
* 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 |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
* |
||||||
|
* 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. |
||||||
|
*/ |
||||||
|
body { |
||||||
|
font-size: 14pt; |
||||||
|
font-family: Serif, serif; |
||||||
|
font-weight: normal; |
||||||
|
margin-left: 0; |
||||||
|
margin-right: 0; |
||||||
|
color: #bbbbbb; |
||||||
|
} |
||||||
|
|
||||||
|
p { |
||||||
|
margin-top: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
h1 { |
||||||
|
font-size: x-large; |
||||||
|
font-weight: bold; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
h2 { |
||||||
|
font-size: large; |
||||||
|
font-weight: bold; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
h3 { |
||||||
|
font-size: medium; |
||||||
|
font-weight: bold; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
h4 { |
||||||
|
font-size: small; |
||||||
|
font-weight: bold; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
h5 { |
||||||
|
font-size: x-small; |
||||||
|
font-weight: bold; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
h6 { |
||||||
|
font-size: xx-small; |
||||||
|
font-weight: bold; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
li p { |
||||||
|
margin-top: 0; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
td p { |
||||||
|
margin-top: 0; |
||||||
|
} |
||||||
|
|
||||||
|
menu li p { |
||||||
|
margin-top: 0; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
menu li { |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
menu { |
||||||
|
margin-left-ltr: 40px; |
||||||
|
margin-right-rtl: 40px; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
dir li p { |
||||||
|
margin-top: 0; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
dir li { |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
dir { |
||||||
|
margin-left-ltr: 40px; |
||||||
|
margin-right-rtl: 40px; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
dd { |
||||||
|
margin-left-ltr: 40px; |
||||||
|
margin-right-rtl: 40px; |
||||||
|
margin-top: 0; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
dd p { |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
dt { |
||||||
|
margin-top: 0; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
dl { |
||||||
|
margin-left: 0; |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
ol li { |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
ol { |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
margin-left-ltr: 50px; |
||||||
|
margin-right-rtl: 50px; |
||||||
|
list-style-type: decimal; |
||||||
|
} |
||||||
|
|
||||||
|
ol li p { |
||||||
|
margin-top: 0; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
ul li { |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
ul { |
||||||
|
margin-top: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
margin-left-ltr: 50px; |
||||||
|
margin-right-rtl: 50px; |
||||||
|
list-style-type: disc; |
||||||
|
-bullet-gap: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
ul li ul li { |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
ul li ul { |
||||||
|
list-style-type: circle; |
||||||
|
margin-left-ltr: 25px; |
||||||
|
margin-right-rtl: 25px; |
||||||
|
} |
||||||
|
|
||||||
|
ul li ul li ul li { |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
ul li ul li ul { |
||||||
|
list-style-type: square; |
||||||
|
margin-left-ltr: 25px; |
||||||
|
margin-right-rtl: 25px; |
||||||
|
} |
||||||
|
|
||||||
|
ul li menu { |
||||||
|
list-style-type: circle; |
||||||
|
margin-left-ltr: 25px; |
||||||
|
margin-right-rtl: 25px; |
||||||
|
} |
||||||
|
|
||||||
|
ul li p { |
||||||
|
margin-top: 0; |
||||||
|
margin-bottom: 0; |
||||||
|
} |
||||||
|
|
||||||
|
a { |
||||||
|
color: #589df6; |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
|
||||||
|
address { |
||||||
|
color: #589df6; |
||||||
|
font-style: italic; |
||||||
|
} |
||||||
|
|
||||||
|
big { |
||||||
|
font-size: x-large; |
||||||
|
} |
||||||
|
|
||||||
|
small { |
||||||
|
font-size: x-small; |
||||||
|
} |
||||||
|
|
||||||
|
samp { |
||||||
|
font-size: small; |
||||||
|
font-family: Monospaced, monospace; |
||||||
|
} |
||||||
|
|
||||||
|
cite { |
||||||
|
font-style: italic; |
||||||
|
} |
||||||
|
|
||||||
|
code { |
||||||
|
font-size: small; |
||||||
|
font-family: Monospaced, monospace; |
||||||
|
} |
||||||
|
|
||||||
|
dfn { |
||||||
|
font-style: italic; |
||||||
|
} |
||||||
|
|
||||||
|
em { |
||||||
|
font-style: italic; |
||||||
|
} |
||||||
|
|
||||||
|
i { |
||||||
|
font-style: italic; |
||||||
|
} |
||||||
|
|
||||||
|
b { |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
|
||||||
|
kbd { |
||||||
|
font-size: small; |
||||||
|
font-family: Monospaced, monospace; |
||||||
|
} |
||||||
|
|
||||||
|
s { |
||||||
|
text-decoration: line-through; |
||||||
|
} |
||||||
|
|
||||||
|
strike { |
||||||
|
text-decoration: line-through; |
||||||
|
} |
||||||
|
|
||||||
|
strong { |
||||||
|
font-weight: bold; |
||||||
|
} |
||||||
|
|
||||||
|
sub { |
||||||
|
vertical-align: sub; |
||||||
|
} |
||||||
|
|
||||||
|
sup { |
||||||
|
vertical-align: sub; |
||||||
|
} |
||||||
|
|
||||||
|
tt { |
||||||
|
font-family: Monospaced, monospace; |
||||||
|
} |
||||||
|
|
||||||
|
u { |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
|
||||||
|
var { |
||||||
|
font-weight: bold; |
||||||
|
font-style: italic; |
||||||
|
} |
||||||
|
|
||||||
|
table { |
||||||
|
border-color: Gray; |
||||||
|
border-style: outset; |
||||||
|
} |
||||||
|
|
||||||
|
tr { |
||||||
|
text-align: left; |
||||||
|
} |
||||||
|
|
||||||
|
td { |
||||||
|
border-color: Gray; |
||||||
|
border-style: inset; |
||||||
|
padding: 3px; |
||||||
|
} |
||||||
|
|
||||||
|
th { |
||||||
|
text-align: center; |
||||||
|
font-weight: bold; |
||||||
|
border-color: Gray; |
||||||
|
border-style: inset; |
||||||
|
padding: 3px; |
||||||
|
} |
||||||
|
|
||||||
|
blockquote { |
||||||
|
margin: 5px 35px; |
||||||
|
} |
||||||
|
|
||||||
|
center { |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
|
||||||
|
pre { |
||||||
|
margin-top: 5px; |
||||||
|
margin-bottom: 5px; |
||||||
|
font-family: Monospaced, monospace; |
||||||
|
} |
||||||
|
|
||||||
|
pre p { |
||||||
|
margin-top: 0; |
||||||
|
} |
||||||
|
|
||||||
|
caption { |
||||||
|
caption-side: top; |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
|
||||||
|
table { |
||||||
|
border: none; |
||||||
|
} |
||||||
|
|
||||||
|
td { |
||||||
|
border: none; |
||||||
|
} |
||||||
|
|
||||||
|
nobr { |
||||||
|
white-space: nowrap; |
||||||
|
} |
Loading…
Reference in new issue