mirror of https://github.com/weisJ/darklaf.git
weisj
5 years ago
16 changed files with 403 additions and 2385 deletions
@ -0,0 +1,50 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2020 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
* |
||||
*/ |
||||
package ui.text; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
import ui.ComponentDemo; |
||||
import ui.DemoResources; |
||||
|
||||
public class HTMLPaneDemo extends TextPaneDemo { |
||||
|
||||
public static void main(final String[] args) { |
||||
ComponentDemo.showDemo(new HTMLPaneDemo()); |
||||
} |
||||
|
||||
@Override |
||||
protected JTextPane createTextComponent() { |
||||
JTextPane textPane = super.createTextComponent(); |
||||
textPane.setContentType("text/html"); |
||||
textPane.setText(DemoResources.HTML_DEMO); |
||||
return textPane; |
||||
} |
||||
|
||||
@Override |
||||
public String getTitle() { |
||||
return "HTML Demo"; |
||||
} |
||||
} |
@ -1,337 +0,0 @@
|
||||
/* |
||||
* 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; |
||||
} |
@ -1,337 +0,0 @@
|
||||
/* |
||||
* 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: #000000; |
||||
} |
||||
|
||||
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: #1AEBFF; |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
address { |
||||
color: #1AEBFF; |
||||
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: White; |
||||
border-style: outset; |
||||
} |
||||
|
||||
tr { |
||||
text-align: left; |
||||
} |
||||
|
||||
td { |
||||
border-color: White; |
||||
border-style: inset; |
||||
padding: 3px; |
||||
} |
||||
|
||||
th { |
||||
text-align: center; |
||||
font-weight: bold; |
||||
border-color: White; |
||||
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; |
||||
} |
@ -1,337 +0,0 @@
|
||||
/* |
||||
* 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: #FFFFFF; |
||||
} |
||||
|
||||
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: #00D1E5; |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
address { |
||||
color: #00D1E5; |
||||
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: Black; |
||||
border-style: outset; |
||||
} |
||||
|
||||
tr { |
||||
text-align: left; |
||||
} |
||||
|
||||
td { |
||||
border-color: Black; |
||||
border-style: inset; |
||||
padding: 3px; |
||||
} |
||||
|
||||
th { |
||||
text-align: center; |
||||
font-weight: bold; |
||||
border-color: Black; |
||||
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; |
||||
} |
@ -1,337 +0,0 @@
|
||||
/* |
||||
* 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: #000000; |
||||
} |
||||
|
||||
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; |
||||
} |
@ -1,337 +0,0 @@
|
||||
/* |
||||
* 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: #abb2bf; |
||||
} |
||||
|
||||
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: #6494ed; |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
address { |
||||
color: #6494ed; |
||||
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; |
||||
} |
@ -1,345 +0,0 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2020 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
*/ |
||||
body { |
||||
font-size: 14pt; |
||||
font-family: Serif, serif; |
||||
font-weight: normal; |
||||
margin-left: 0; |
||||
margin-right: 0; |
||||
color: #A7B6BA; |
||||
} |
||||
|
||||
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; |
||||
} |
@ -1,345 +0,0 @@
|
||||
/* |
||||
* MIT License |
||||
* |
||||
* Copyright (c) 2020 Jannis Weis |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
* of this software and associated documentation files (the "Software"), to deal |
||||
* in the Software without restriction, including without limitation the rights |
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
* copies of the Software, and to permit persons to whom the Software is |
||||
* furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in all |
||||
* copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
||||
* SOFTWARE. |
||||
*/ |
||||
body { |
||||
font-size: 14pt; |
||||
font-family: Serif, serif; |
||||
font-weight: normal; |
||||
margin-left: 0; |
||||
margin-right: 0; |
||||
color: #2E4E58; |
||||
} |
||||
|
||||
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