diff --git a/userguide/Haiku-doc.css b/userguide/Haiku-doc.css new file mode 100644 index 00000000..509c9fef --- /dev/null +++ b/userguide/Haiku-doc.css @@ -0,0 +1,405 @@ +/* + * Copyright 2008-2009, Haiku. All rights reserved. + * Distributed under the terms of the MIT License. + * + * Authors: + * François Revol + * Stephan Aßmus + * Braden Ewing + * Humdinger + * Vincent Duvert + */ + +html { + margin: 0; + padding: 0; + background: #FFF; +} + +body { + color: #333333; + line-height: 1.5; + margin: 0; + padding: 0; + font-family: "DejaVu Sans", Arial, Helvetica, sans-serif; +} + +/* link colors and text decoration */ + +a:link { + font-weight: bold; + text-decoration: none; + color: #dc3c01; +} +a:visited { + font-weight: bold; + text-decoration: none; + color: #892601; +} +a:hover, a:active { + text-decoration: underline; + color: #ff4500; +} + +/* Some headers act as anchors, don't give them a hover effect */ + +h2 a:hover, a:active { + text-decoration: none; + color: #0c3762; +} +h3 a:hover, a:active { + text-decoration: none; + color: #0c3762; +} +h4 a:hover, a:active { + text-decoration: none; + color: #0c3762; +} +h5 a:hover, a:active { + text-decoration: none; + color: #0c3762; +} + +/* heading and navigation */ + +#banner { + position: relative; + left: 0; + top: 0; + height: 84px; + min-width: 59em; + background: #eeeeee; +} + +#banner div { + background: transparent url(images/logo.png) no-repeat scroll 10px 0; + min-width: 59em; + max-width: 70em; + height: 100%; + margin: 0 auto; +} + +#banner span { + position: relative; + top: 51px; + left: 272px; + color: #333333; + text-transform: uppercase; + letter-spacing: 3px; + font-family: Myriad Pro,Myriad Web Pro Regular,Lucida Grande,Geneva,Trebuchet MS,sans-serif; + font-weight: normal; + font-size: 16px; +} + +div.nav { + position: relative; + min-width: 59em; + left: 0; + top: 0; + background: #e0e0e0; + padding: 0; +} + +div.nav div.inner { + min-width: 59em; + max-width: 70em; + height: 100%; + margin: 0 auto; + text-align: right; + padding: 0; +} + +div.nav div.inner span { + margin-right: 40px; + font-size: 0.8em; +} + +div.nav div.inner span a.uplink { + font-weight: normal; +} + +/* Language selection menu */ + +ul.lang-menu { + display: block; + text-align: left; + list-style-type: none; + font-size: 0.8em; + position: absolute; + margin: 0; +} + +ul.lang-menu img { + border: 0; + padding-right: 5px; +} + +ul.lang-menu li { + margin-left: 10px; + padding: 2px 5px 2px 5px; + background: #e0e0e0; + display: none; +} + +ul.lang-menu:hover li { + display: block; +} + +ul.lang-menu li:hover { + background-color: #efefef; +} + +ul.lang-menu li.now { + padding: 5px 5px 0 5px; + display: block; + background-color: inherit; +} + +ul.lang-menu li a { + color: black; + text-decoration: none; + font-weight: normal; +} + +/* main content */ +#content { + min-width: 59em; + max-width: 70em; + margin: 0 auto; +} + +#content div { + margin-top: 30px; + margin-left: 40px; + margin-right: 40px; + margin-bottom: 50px; + font-size: 0.9em; +} + +/* contents box */ + +table.index { + margin: 0px 0px 30px 30px; + padding: 1px; + border-width: 1px; + border-style: dotted; + border-color: #e0e0e0; + float:right; +} +table.index tr.heading { + background-color: #e0e0e0; + text-align: center; + font-weight: bold; + font-size: 1.1em; +} +table.index tr.index { + background-color: #eeeeee; +} +table.index td { + padding: 5px 20px; +} + +table.index a:link, table.index a:visited { + font-weight: normal; + text-decoration: none; + color: #dc3c01; +} +table.index a:hover, table.index a:active { + text-decoration: underline; + color: #ff4500; +} + + +/* Haiku User Guide styles and layout */ + +/* Rounded corner boxes */ +/* Common declarations */ +.box-info, .box-stop, .box-warning { + -webkit-border-radius: 10px; + -khtml-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + border-style: dotted; + border-width: thin; + border-color: #dcdcdc; + padding: 10px 15px 10px 80px; + margin-bottom: 15px; + margin-top: 15px; + min-height: 42px; +} +.box-info { + background: #e4ffde url(images/alert_info_32.png) 15px 15px no-repeat; +} +.box-warning { + background: #fffbc6 url(images/alert_warning_32.png) 15px 15px no-repeat; +} +.box-stop { + background: #ffeae6 url(images/alert_stop_32.png) 15px 15px no-repeat; +} + +/* More layout and styles */ +h1 { + font-size: 1.3em; + font-weight: bold; + color: #0c3762; + border-bottom: dotted thin #e0e0e0; + margin-bottom: 25px; +} +h2 { + font-size: 1.3em; + font-weight: normal; + color: #0c3762; + border-bottom: dotted thin #e0e0e0; + margin-top: 35px; +} +h3 { + font-size: 1.2em; + font-weight: normal; + color: #0c3762; + border-bottom: dotted thin #e0e0e0; + margin-top: 30px; +} +h4 { + font-size: 1.1em; + font-weight: normal; + color: #0c3762; + margin-top: 30px; +} +h5 { + font-size: 1.0em; + font-weight: normal; + color: #0c3762; + margin-top: 30px; +} +p { + text-align: justify; +} +ol { + padding-left: 20px; +} +ul { + padding-left: 14px; +} +li { + line-height: 1.3; +} +td { + vertical-align: top; +} +td.onelinetop { + vertical-align: top; + white-space: nowrap; +} +tt { + background-color: #e2e2e2; + font-size: 1.0em; + font-family: monospace; +} +pre { + border-color: #0c3762; + border-style: dotted; + border-width: thin; + margin: 0em; + padding: 1.5em; + background-color: #f0f0f0; +} +pre.terminal { /* Terminal output*/ + border-color: #ffb11f; + border-style: dotted; + border-width: thin; + margin: 0em; + padding: 1.5em; + background-color: #3a3a3a; + color: #ffb11f; +} +.menu { /* Menu */ + font-size: 1.0em; + font-family: serif; + font-style: italic; + color: #24225e; +} +.button { /* Button */ + font-size: 1.0em; + font-family: serif; + font-style: italic; + color: #33583c; +} +.app { /* GUI Application name */ + font-size: 1.0em; + font-family: serif; + font-style: italic; + color: #5e1c1c; +} +.cli { /* Shell command or file */ + background-color: #e8e8e8; + font-size: 0.9em; + font-family: monospace; +} +.path { /* File path */ + background-color: #e8e8e8; + font-size: 0.9em; + font-family: monospace; +} +.key { /* Shortcut (separate with   */ + -webkit-border-radius: 3px; + -khtml-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + border-color: #c7c7c7; + border-style: solid; + border-width: 1px; + padding: 0px 2px 0px 2px; + background-color: #e8e8e8; + font-family: serif; + font-variant: small-caps; + font-size: 0.8em; +} + +/* printer only pretty stuff */ +@media /*screen,*/print { + /* suggest page orientation */ + @page { size: portrait; } + .noprint { + display: none; + } + /* hide header and nav bar */ + #banner { + display:none; + } + + div.nav { + display:none; + } + + /* some links we want to print the url along with (CSS2) */ + a.printurl:after { + content: " <" attr(href) ">"; + font-weight: normal; + font-size: small; + } + /* override for those we really don't want to print */ + a.noprinturl:after { + content: ""; + } + /* for acronyms we want their definitions inlined at print time */ + acronym[title]:after { + font-size: small; + content: " (" attr(title) ")"; + font-style: italic; + } + /* and not have mozilla dotted underline */ + acronym { + border: none; + } + pre.terminal { /* Terminal output black on white*/ + background-color: #ffffff; + color: #000000; + } + #content { + margin: 0px; + padding: 0px; + } + html { + background: #FFF; + } +} diff --git a/userguide/de/applications.html b/userguide/de/applications.html index 765fb972..3ebf19f6 100644 --- a/userguide/de/applications.html +++ b/userguide/de/applications.html @@ -1,5 +1,5 @@ - + Icon-O-Matic - + @@ -28,14 +29,14 @@ @@ -73,7 +74,7 @@ This is a handy feature mostly when looking at file systems, as they often conta
 «  Calculadora de escritorio  ::  Aplicaciones  -::  DriveUsage  » +::  Uso de disco  »
diff --git a/userguide/es/applications/diskusage.html b/userguide/es/applications/diskusage.html index cb7b9e31..c22ddbac 100644 --- a/userguide/es/applications/diskusage.html +++ b/userguide/es/applications/diskusage.html @@ -1,5 +1,5 @@ - + DiskUsage - + @@ -29,14 +30,14 @@ diff --git a/userguide/es/applications/drivesetup.html b/userguide/es/applications/drivesetup.html index 47c3ab8d..2c3c7220 100644 --- a/userguide/es/applications/drivesetup.html +++ b/userguide/es/applications/drivesetup.html @@ -1,5 +1,5 @@ - + Installer - + @@ -26,14 +28,14 @@ diff --git a/userguide/es/applications/magnify.html b/userguide/es/applications/magnify.html index 3701da8d..b5ba14cd 100644 --- a/userguide/es/applications/magnify.html +++ b/userguide/es/applications/magnify.html @@ -1,5 +1,5 @@ - + Magnify - + @@ -26,14 +28,14 @@