diff options
author | Jan Holesovsky <kendy@collabora.com> | 2016-11-07 12:45:23 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2016-11-07 12:56:04 +0100 |
commit | 677759f9f3b94cc73b78f4fd21d10e36a96fc59b (patch) | |
tree | ae3286b448881c75b60e5ea63eac423e638e4bd1 /source/default.css | |
parent | d8383b5e3a447c32257eb0fd206fcb2f23e8cc34 (diff) |
Move the JavaScript pieces directly to 'source'.
This avoids problems with tryint to access stuff via '..'.
Diffstat (limited to 'source/default.css')
-rw-r--r-- | source/default.css | 175 |
1 files changed, 175 insertions, 0 deletions
diff --git a/source/default.css b/source/default.css new file mode 100644 index 0000000000..8863bbe030 --- /dev/null +++ b/source/default.css @@ -0,0 +1,175 @@ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you 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 . + */ + +/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++ OPENOFFICE.ORG 2.0 HELP + ++ DEFAULT STYLESHEET + ++ WESTERN LANGUAGES + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++ LAST CHANGES: 15-NOV-2004 + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +*/ + + +body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable + { font-family: "Albany AMT",Albany,Arial,"Nimbus Sans L","Bitstream Vera Sans",Helvetica,Lucida,Geneva,Helmet,"Andale Sans UI","Arial Unicode MS","Lucida Sans Unicode",Tahoma,sans-serif; } + +pre, .code, .codeintable, .example, .exampleintable, .literal, .literalintable, .path, .pathintable + { font-family: "Cumberland AMT",Cumberland,"Courier New","Nimbus Mono L","Bitstream Vera Sans Mono",Courier,"Lucida Sans Typewriter","Lucida Typewriter",Monaco,Monospaced; margin-top: 1pt; margin-bottom: 1pt;} + +.acronym + { font-weight: bold; } + +.related + { font-weight: bold; margin-top:20pt; border-top: 1px solid black;} + +.emph, .menuitem, .keycode + { font-weight: bold; } + +.tablehead, .tableheadintable + { font-weight: bold; margin-top: 0px;} + +.howtogetheader + { font-weight: bold; border: 1px solid #999999; background: #FFFFFF; padding: 3px;} + +h1, h2, h3, h4, h5, h6 + { margin-bottom: 5pt; } + +p, td + { font-size: 10pt; margin-top: 2px; margin-bottom: 2px;} + +h1 + { font-size: 18pt; border-bottom: 1px solid black; padding-bottom: 6px; margin-bottom: 6px;} + +h2 + { font-size: 14pt; } + +h3 + { font-size: 12pt; } + +h4, h5, h6 + { font-size: 10pt; } + +.relatedtopics + { font-weight: normal; } + +.relatedbody + { margin-top: 2px; margin-bottom: 2px; margin-left: 5px; } + +.howtoget + { background:#EEEEEE;} + +.howtogetbody + { background:#EEEEEE; margin: 0px;} + +.wide + { width: 100%; } + +.topalign + { vertical-align: top; border: 1px;} + +.bug + { color: red; border: 1px solid red;} + +.debug + { border: 1px solid black; padding: 3px; display: none;} + +/* Basic code syntax highlight */ +.identifier, .unknown + { color: green;} + +.keyword + { color: blue;} + +.comment + { color: gray;} + +.number, .string + { color: red;} + +.operator, .parameter + { color: black;} + +.hotlink + { color:blue;} + +.infopage { + color:green; + font-size:16pt; + font-weight:bold; + } + +.topmenu{ + color: green; + background-color: white; + font-size:16pt; + font-weight:bold; +} +.indexlink{font-size: 10pt; margin-top: 2px; margin-bottom: 2px;} + +#DisplayArea{ +position: fixed; +bottom: 5px; +right: 5px; +overflow:auto; +width: 70%; +height: 90%; +} + +#BottomLeft { +position: fixed; +bottom: 5px; +left: 5px; +overflow:auto; +width: 29%; +height: 90%; +} + +#TopRight { +position: fixed; +top: 5px; +right: 5px; +} + +#TopLeft { +position: fixed; +top: 5px; +left: 5px; +} + +#centerdiv { +position: fixed; +top: 25%; +left:25%; +} + +.tintro { + color: white; +background-color: green; +font-family: Arial; +font-weight: bold; +font-size: 24pt; +border: 1px solid black; +padding-bottom: 6px; +margin-bottom: 6px; +} +.embedded { +background-color:yellow; +} + |