@ -1,63 +0,0 @@ |
|||||||
REM -------------------------------------------------------------------- |
|
||||||
REM This program is free software: you can redistribute it and/or modify |
|
||||||
REM it under the terms of the GNU General Public License as published by |
|
||||||
REM the Free Software Foundation, either version 3 of the License, or |
|
||||||
REM (at your option) any later version. |
|
||||||
REM |
|
||||||
REM This program is distributed in the hope that it will be useful, |
|
||||||
REM but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||||
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||||
REM GNU General Public License for more details. |
|
||||||
REM |
|
||||||
REM You should have received a copy of the GNU General Public License |
|
||||||
REM along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||||
REM --------------------------------------------------------------------- |
|
||||||
|
|
||||||
set QT_DIR=..\Qt-sankore3.1 |
|
||||||
set QT_BIN=%QT_DIR%\bin |
|
||||||
|
|
||||||
set VS_BIN="C:\Program Files\Microsoft Visual Studio 9.0\VC\bin" |
|
||||||
set WIN_SDK_BIN="C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin" |
|
||||||
set INNO_EXE="C:\Program Files\Inno Setup 5\iscc.exe " |
|
||||||
set BUILD_DIR=build\win32\release |
|
||||||
|
|
||||||
set PATH=%QT_BIN%;%PATH%;%WIN_SDK_BIN% |
|
||||||
|
|
||||||
call %VS_BIN%\vcvars32.bat |
|
||||||
|
|
||||||
REM this checks if the custom qt directory path |
|
||||||
REM is correct. This is important because installer |
|
||||||
REM pick up dll from this directory |
|
||||||
IF NOT EXIST "..\Qt-sankore3.1\lib\QtCore4.dll" GOTO EXIT_WITH_ERROR |
|
||||||
|
|
||||||
rmdir /S /Q %BUILD_DIR% |
|
||||||
|
|
||||||
set EDITION=MNEMIS_EDITION |
|
||||||
|
|
||||||
"%QT_BIN%\qmake.exe" "DEFINES+=%EDITION%" |
|
||||||
|
|
||||||
set /p VERSION= < build\win32\release\version |
|
||||||
git rev-list --tags --max-count=1 > tmp |
|
||||||
set /p LAST_TAG= < tmp |
|
||||||
erase tmp |
|
||||||
git describe %LAST_TAG% > tmp |
|
||||||
set /p LAST_TAG_VERSION=< tmp |
|
||||||
erase tmp |
|
||||||
|
|
||||||
echo %VERSION% |
|
||||||
echo %LAST_TAG_VERSION% |
|
||||||
|
|
||||||
if not v%VERSION%==%LAST_TAG_VERSION% GOTO EXIT_WITH_ERROR |
|
||||||
|
|
||||||
nmake release-install |
|
||||||
|
|
||||||
del .\build\win32\release\product\Sankore 3.1.pdb |
|
||||||
|
|
||||||
set INSTALLER_NAME=Sankore 3.1 |
|
||||||
|
|
||||||
set INSTALLER_PATH=.\install\win32\%INSTALLER_NAME%.exe |
|
||||||
|
|
||||||
call %INNO_EXE% "Sankore 3.1.iss" /F"%INSTALLER_NAME%" |
|
||||||
|
|
||||||
:EXIT_WITH_ERROR |
|
||||||
echo ERROR |
|
@ -1,69 +1,68 @@ |
|||||||
REM -------------------------------------------------------------------- |
REM -------------------------------------------------------------------- |
||||||
REM This program is free software: you can redistribute it and/or modify |
REM This program is free software: you can redistribute it and/or modify |
||||||
REM it under the terms of the GNU General Public License as published by |
REM it under the terms of the GNU General Public License as published by |
||||||
REM the Free Software Foundation, either version 3 of the License, or |
REM the Free Software Foundation, either version 3 of the License, or |
||||||
REM (at your option) any later version. |
REM (at your option) any later version. |
||||||
REM |
REM |
||||||
REM This program is distributed in the hope that it will be useful, |
REM This program is distributed in the hope that it will be useful, |
||||||
REM but WITHOUT ANY WARRANTY; without even the implied warranty of |
REM but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
REM GNU General Public License for more details. |
REM GNU General Public License for more details. |
||||||
REM |
REM |
||||||
REM You should have received a copy of the GNU General Public License |
REM You should have received a copy of the GNU General Public License |
||||||
REM along with this program. If not, see <http://www.gnu.org/licenses/>. |
REM along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||||
REM --------------------------------------------------------------------- |
REM --------------------------------------------------------------------- |
||||||
|
|
||||||
set QT_DIR=..\Qt-sankore3.1 |
set QT_DIR=..\Qt-sankore3.1 |
||||||
set QT_BIN=%QT_DIR%\bin |
set QT_BIN=%QT_DIR%\bin |
||||||
|
|
||||||
set PROGRAM_FILES_PATH=C:\Program Files (x86) |
set PROGRAMS_FILE_PATH=C:\Program Files |
||||||
|
|
||||||
set GIT_BIN=%PROGRAM_FILES_PATH%\Git\bin |
set GIT_BIN=%PROGRAMS_FILE_PATH%\Git\bin |
||||||
set VS_BIN=%PROGRAM_FILES_PATH%\Microsoft Visual Studio 9.0\VC\bin |
set VS_BIN=%PROGRAMS_FILE_PATH%\Microsoft Visual Studio 9.0\VC\bin |
||||||
set WIN_SDK_BIN=%PROGRAM_FILES_PATH%\Microsoft SDKs\Windows\v6.0A\Bin |
set WIN_SDK_BIN=%PROGRAMS_FILE_PATH%\Microsoft SDKs\Windows\v6.0A\Bin |
||||||
set INNO_EXE=%PROGRAM_FILES_PATH%\Inno Setup 5\iscc.exe |
set INNO_EXE=%PROGRAMS_FILE_PATH%\Inno Setup 5\iscc.exe |
||||||
|
set BUILD_DIR=build\win32\release |
||||||
set BUILD_DIR=build\win32\release |
|
||||||
|
set PATH=%QT_BIN%;%PATH%;%WIN_SDK_BIN%;%GIT_BIN% |
||||||
set PATH=%QT_BIN%;%PATH%;%WIN_SDK_BIN%;%GIT_BIN% |
|
||||||
|
call "%VS_BIN%\vcvars32.bat" |
||||||
call "%VS_BIN%\vcvars32.bat" |
|
||||||
|
echo %PATH% |
||||||
echo %PATH% |
|
||||||
|
REM this checks if the custom qt directory path |
||||||
REM this checks if the custom qt directory path |
REM is correct. This is important because installer |
||||||
REM is correct. This is important because installer |
REM pick up dll from this directory |
||||||
REM pick up dll from this directory |
IF NOT EXIST "..\Qt-sankore3.1\lib\QtCore4.dll" GOTO EXIT_WITH_ERROR |
||||||
IF NOT EXIST "..\Qt-sankore3.1\lib\QtCore4.dll" GOTO EXIT_WITH_ERROR |
|
||||||
|
REM rmdir /S /Q %BUILD_DIR% |
||||||
rmdir /S /Q %BUILD_DIR% |
|
||||||
|
set EDITION=MNEMIS_EDITION |
||||||
set EDITION=MNEMIS_EDITION |
|
||||||
|
"%QT_BIN%\qmake.exe" "DEFINES+=%EDITION%" |
||||||
"%QT_BIN%\qmake.exe" "DEFINES+=%EDITION%" |
|
||||||
|
set /p VERSION= < build\win32\release\version |
||||||
set /p VERSION= < build\win32\release\version |
git rev-list --tags --max-count=1 > tmp |
||||||
git rev-list --tags --max-count=1 > tmp |
set /p LAST_TAG= < tmp |
||||||
set /p LAST_TAG= < tmp |
erase tmp |
||||||
erase tmp |
git describe %LAST_TAG% > tmp |
||||||
git describe %LAST_TAG% > tmp |
set /p LAST_TAG_VERSION=< tmp |
||||||
set /p LAST_TAG_VERSION=< tmp |
erase tmp |
||||||
erase tmp |
|
||||||
|
echo %VERSION% |
||||||
echo %VERSION% |
echo %LAST_TAG_VERSION% |
||||||
echo %LAST_TAG_VERSION% |
|
||||||
|
REM if not v%VERSION%==%LAST_TAG_VERSION% GOTO EXIT_WITH_ERROR |
||||||
if not v%VERSION%==%LAST_TAG_VERSION% GOTO EXIT_WITH_ERROR |
|
||||||
|
nmake release-install |
||||||
nmake release-install |
|
||||||
|
del ".\build\win32\release\product\Sankore.pdb" |
||||||
del ".\build\win32\release\product\Sankore.pdb" |
|
||||||
|
set INSTALLER_NAME=Open-Sankore |
||||||
set INSTALLER_NAME=Sankore |
|
||||||
|
set INSTALLER_PATH=.\install\win32\%INSTALLER_NAME%.exe |
||||||
set INSTALLER_PATH=.\install\win32\%INSTALLER_NAME%.exe |
|
||||||
|
call "%INNO_EXE%" "Sankore.iss" /F"%INSTALLER_NAME%" |
||||||
call "%INNO_EXE%" "Sankore.iss" /F"%INSTALLER_NAME%" |
|
||||||
|
:EXIT_WITH_ERROR |
||||||
:EXIT_WITH_ERROR |
echo ERROR |
||||||
echo ERROR |
|
||||||
|
@ -0,0 +1,54 @@ |
|||||||
|
|
||||||
|
.main {margin:0 auto; width:800px; padding-top:10px; } |
||||||
|
|
||||||
|
|
||||||
|
.g320,.g480,.g640,.g960,.g80,.g240,.g400,.g560,.g720,.g880,.g960 {float:left; display: inline; padding-top: 10px;} |
||||||
|
|
||||||
|
.g800 {float:left; display: inline; width:800px;} |
||||||
|
|
||||||
|
.g200 {float:left; display: inline; width:190px; padding-top: 10px; padding-left: 10px;} |
||||||
|
.g200left {float:left; display: inline; width:190px; padding-top: 10px; padding-left: 5px} |
||||||
|
|
||||||
|
.g160 {width:150px; } |
||||||
|
.g320 {width:310px;} |
||||||
|
.g480 {width:470px;} |
||||||
|
.g600 {width:600px;} |
||||||
|
.g640 {width:630px;} |
||||||
|
.g800 {width:790px;} |
||||||
|
.g960 {width:950px;} |
||||||
|
|
||||||
|
.g80 {width:70px;} |
||||||
|
.g240 {width:230px;} |
||||||
|
.g400 {width:390px;} |
||||||
|
.g560 {width:550px;} |
||||||
|
.g720 {width:710px;} |
||||||
|
.g880 {width:870px;} |
||||||
|
|
||||||
|
.ml80{margin-left:90px;} |
||||||
|
.ml160{margin-left:170px;} |
||||||
|
.ml240{margin-left:250px;} |
||||||
|
.ml320{margin-left:330px;} |
||||||
|
.ml400{margin-left:410px;} |
||||||
|
.ml480{margin-left:490px;} |
||||||
|
.ml560{margin-left:560px;} |
||||||
|
.ml640{margin-left:650px;} |
||||||
|
.ml720{margin-left:730px;} |
||||||
|
.ml800{margin-left:810px;} |
||||||
|
.ml880{margin-left:890px;} |
||||||
|
.ml960{margin-left:970px;} |
||||||
|
|
||||||
|
.inside{margin-left:0;} |
||||||
|
|
||||||
|
p.grid{ padding-left:10px;} |
||||||
|
|
||||||
|
.clear {clear:both;} |
||||||
|
.clearfix, .main{ display:block;} |
||||||
|
|
||||||
|
.clearfix:after, .main:after { |
||||||
|
visibility: hidden; |
||||||
|
display: block; |
||||||
|
font-size: 0; |
||||||
|
content: " "; |
||||||
|
clear: both; |
||||||
|
height: 0; |
||||||
|
} |
@ -0,0 +1,29 @@ |
|||||||
|
html, body, div, span, object, iframe, |
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
||||||
|
a, abbr, acronym, address, code, |
||||||
|
del, dfn, em, img, q, dl, dt, dd, ol, ul, li, |
||||||
|
fieldset, form, label, legend, |
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
border: 0; |
||||||
|
font-weight: inherit; |
||||||
|
font-style: inherit; |
||||||
|
font-size: 100%; |
||||||
|
font-family: inherit; |
||||||
|
vertical-align: baseline; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/* Tables still need 'cellspacing="0"' in the markup. */ |
||||||
|
table { border-collapse: separate; border-spacing: 0; } |
||||||
|
caption, th, td { text-align: left; font-weight: normal; } |
||||||
|
table, td, th { vertical-align: middle; } |
||||||
|
|
||||||
|
/* Remove possible quote marks (") from <q>, <blockquote>. */ |
||||||
|
blockquote:before, blockquote:after, q:before, q:after { content: ""; } |
||||||
|
blockquote, q { quotes: "" ""; } |
||||||
|
|
||||||
|
/* Remove annoying border on linked images. */ |
||||||
|
a img { border: none; } |
||||||
|
|
@ -0,0 +1,94 @@ |
|||||||
|
|
||||||
|
body { font:75%/1.5em "lucida grande","lucida sans unicode", sans-serif;} |
||||||
|
|
||||||
|
p { padding:0 0 1em 0;color:#111;} |
||||||
|
|
||||||
|
|
||||||
|
p.first:first-letter{ float:left;font-family: Palatino,'Palatino Linotype',Georgia, sans-serif;font-size:3em;font-weight:700;line-height:1em;margin-bottom:-0.2em;padding:0.2em 0.1em 0 0; } |
||||||
|
p img { float: left; margin: 0.3em 0.833em 0.833em 0; padding: 0; } |
||||||
|
p img.right { float: right; margin: 0.3em 0 0.833em 0.833em; } |
||||||
|
|
||||||
|
|
||||||
|
h1,h2{ line-height: normal; font-family: Helvetica, Verdana, Arial, sans-serif; font-weight:normal; color: #333; } |
||||||
|
h3,h4,h5,h6 { font-family: Helvetica, Verdana, Arial, sans-serif; text-align: left; line-height: normal; font-weight: normal; color: #333; } |
||||||
|
|
||||||
|
|
||||||
|
h1 { font-size: 2.2em; margin-bottom: 0.682em; } |
||||||
|
h2 { font-size: 1.9em; margin-bottom: 0.79em; } |
||||||
|
h3 { font-size: 1.7em; margin-bottom: 0.882em; } |
||||||
|
h4 { font-size: 1.4em; margin-bottom: 1.071em; } |
||||||
|
h5,h6 { font-size: 1.2em; margin-bottom: 1.154em; } |
||||||
|
|
||||||
|
/* Color palete */ |
||||||
|
.water { color:#5582d1; } |
||||||
|
.earth { color:#4e3e2c; } |
||||||
|
.air { color:#f1fff7; } |
||||||
|
.fire { color:#ff8a19; } |
||||||
|
.wine { color:#4a040a; } |
||||||
|
.beer { color:#F0C030; } |
||||||
|
.caffe { color:#473523; } |
||||||
|
.caffe-cream { color:#b68d3d; } |
||||||
|
.espresso { color:#2c1901; } |
||||||
|
.caramel{ color:#ab671f; } |
||||||
|
.chocolate { color:#290200; } |
||||||
|
.black-pepper { color:#444334; } |
||||||
|
.pepper-lite { color:#8d8a72; } |
||||||
|
.lipstick { color:#c20c0c; } |
||||||
|
|
||||||
|
|
||||||
|
li ul, |
||||||
|
li ol { margin:0 1.5em; } |
||||||
|
ul, ol { margin: 0 1.5em 1.5em 1.5em; } |
||||||
|
|
||||||
|
|
||||||
|
dl { margin: 0 0 1.5em 0; } |
||||||
|
dl dt { font-weight: bold; } |
||||||
|
dl dd { margin-left: 1.5em; } |
||||||
|
|
||||||
|
a { color:#035292; text-decoration:none; } |
||||||
|
a:hover { text-decoration: underline; } |
||||||
|
|
||||||
|
|
||||||
|
table { margin-bottom:1.5em; border-collapse: collapse; } |
||||||
|
th { font-weight:bold; } |
||||||
|
tr,th,td { margin:0; padding:0 1.5em 0 1em; height:18px; } |
||||||
|
tfoot { font-style: italic; } |
||||||
|
caption { text-align:center; font-family:Georgia, serif; } |
||||||
|
|
||||||
|
|
||||||
|
abbr, acronym { border-bottom:1px dotted #000; } |
||||||
|
address { margin-top:1.5em; font-style: italic; } |
||||||
|
del {color:#000;} |
||||||
|
|
||||||
|
|
||||||
|
blockquote { padding:1em 1em 1em 1.5em; font-family:baskerville,"palatino linotype",serif; } |
||||||
|
blockquote > *:first-child:before { content:"\201C";font-size:2.5em;margin-left:-.62em;font-family:georgia,serif;padding-right:.2em;color:#aaa;line-height:0; }/* From Tripoli */ |
||||||
|
|
||||||
|
strong { ont-weight: bold; } |
||||||
|
em, dfn { font-style: italic; } |
||||||
|
dfn { font-weight: bold; } |
||||||
|
pre, code { margin: 1.5em 0; white-space: pre; } |
||||||
|
pre, code, tt { font: 1em monospace; line-height: 1.5; } |
||||||
|
tt { display: block; margin: 1.5em 0; } |
||||||
|
hr { margin-bottom:1.5em; } |
||||||
|
|
||||||
|
/*other small things */ |
||||||
|
|
||||||
|
.tc { text-align:center; } |
||||||
|
.tr { text-align:right; } |
||||||
|
.tl { text-align:left; } |
||||||
|
.b { font-weight:bold; } |
||||||
|
.i { font-style:italic; } |
||||||
|
|
||||||
|
.indent { text-indent:1.5em;} |
||||||
|
.open { font-variant: small-caps; } |
||||||
|
p.break { text-align:center;text-indent:0;line-height:0; } |
||||||
|
p.zero{padding:0; margin:0} |
||||||
|
p.one { padding:0 1em 1em 1em;color:#111;} |
||||||
|
p img.right10 { float: right; margin:0.833em; } |
||||||
|
|
||||||
|
.oldbook { font-family:"Book Antiqua","Warnock Pro","Goudy Old Style","Palatino",Georgia,serif; } |
||||||
|
.note { font-family:Georgia, "Times New Roman", Times, serif; font-style:italic; font-size:0.9em; margin:0.1em; color:#333; } |
||||||
|
.mono { font-family:"Courier New", Courier, monospace; } |
||||||
|
|
||||||
|
|
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 42 KiB |
@ -1,79 +1,70 @@ |
|||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||||
<head> |
<head> |
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
||||||
<meta name="generator" content="RapidWeaver" /> |
|
||||||
|
<link rel="stylesheet" href="CSS/grid.css" type="text/css" media="screen, projection"> |
||||||
<title>Tutoriel</title> |
<link rel="stylesheet" href="CSS/reset.css" type="text/css" media="screen, projection"> |
||||||
<link rel="stylesheet" type="text/css" media="screen" href="rw_common/themes/caribou/styles.css" /> |
<link rel="stylesheet" href="CSS/typography.css" type="text/css" media="screen, projection"> |
||||||
<!--[if IE 6]><link rel="stylesheet" type="text/css" media="screen" href="rw_common/themes/caribou/css/ie6.css" /><![endif]--> |
|
||||||
<link rel="stylesheet" type="text/css" media="screen" href="rw_common/themes/caribou/colourtag-theme-default.css" /> |
<style> |
||||||
<link rel="stylesheet" type="text/css" media="print" href="rw_common/themes/caribou/print.css" /> |
body { |
||||||
<link rel="stylesheet" type="text/css" media="handheld" href="rw_common/themes/caribou/handheld.css" /> |
background-color:#fff; |
||||||
<!--[if IE]><style type="text/css" media="screen">body {behavior: url(rw_common/themes/caribou/csshover.htc);}</style><![endif]--> |
} |
||||||
<link rel="stylesheet" type="text/css" media="screen" href="rw_common/themes/caribou/css/banner/swirls.css" /> |
.main { |
||||||
<link rel="stylesheet" type="text/css" media="screen" href="rw_common/themes/caribou/css/logo_position/center.css" /> |
background-color:#fff; |
||||||
<link rel="stylesheet" type="text/css" media="screen" href="rw_common/themes/caribou/css/sidebar/sidebar_right.css" /> |
} |
||||||
<link rel="stylesheet" type="text/css" media="screen" href="rw_common/themes/caribou/css/icons/black.css" /> |
.clear { |
||||||
|
height:10px; |
||||||
|
} |
||||||
<script type="text/javascript" src="rw_common/themes/caribou/javascript.js"></script> |
</style> |
||||||
|
</head> |
||||||
|
|
||||||
|
<body> |
||||||
|
<div class="main"> |
||||||
<script type="text/javascript" charset="utf-8"> var blankSrc = "rw_common/themes/caribou/png/blank.gif";</script> |
|
||||||
<style type="text/css"> img { behavior: url("rw_common/themes/caribou/png/pngbehavior.htc"); }</style> |
<div class="g800"> |
||||||
</head> |
|
||||||
|
<img src="images/logo_open_sankore.png" style="width: 800px"/> |
||||||
<!-- This page was created with RapidWeaver from Realmac Software. http://www.realmacsoftware.com --> |
|
||||||
|
</div> |
||||||
<body> |
|
||||||
<div id="bar"></div> |
<div class="g800"> |
||||||
<div id="container"><!-- Start container --> |
|
||||||
<div id="pageHeader"><!-- Start page header --> |
<h4>Welcome to the tutorial space of Open-Sankoré. We propose you a set of online ressources to help you discover our software and improve your teaching and technical knowledge. If you have questions to ask us or want to contribute to the project, simply visit our main website <a href="http://open-sankore.org/" target="_blank">open-sankore.org</a></h4> |
||||||
<div id="navcontainer"><!-- Start Navigation --> |
|
||||||
<ul><li><a href="index.html" rel="self" id="current">Tutoriel</a></li></ul> |
</div> |
||||||
</div><!-- End navigation --> |
|
||||||
<div id="title"> |
<div class="g200left"> |
||||||
<div id="logo"></div> |
|
||||||
<h1>Tutorial</h1> |
<a href="http://www.youtube.com/user/OpenSankore" target="_blank"><img src="images/video.png" style="width: 188px; border: 1px solid #999"/></a> |
||||||
<h2>Welcome to the Sankore 3.1 tutorial</h2> |
<br/><br/><a href="http://www.youtube.com/user/OpenSankore" target="_blank"><h5 style="text-align: center;">Video tutorials</h5></a> |
||||||
<div id="overlay_swirls"><img src="rw_common/themes/caribou/images/header_swirls.png" alt="" style="width: 900px; height: 150px;" /></div> |
|
||||||
<div id="overlay_stripes_glow"><img src="rw_common/themes/caribou/images/header_stripes_glow.png" alt="" style="width: 900px; height: 150px;" /></div> |
</div> |
||||||
<div id="overlay_stripes_solid"><img src="rw_common/themes/caribou/images/header_stripes_solid.png" alt="" style="width: 900px; height: 150px;" /></div> |
|
||||||
<div id="overlay_curve_solid"><img src="rw_common/themes/caribou/images/header_curve_solid.png" alt="" style="width: 900px; height: 150px;" /></div> |
<div class="g200"> |
||||||
</div> |
|
||||||
<div id="background"><img src="rw_common/themes/caribou/images/header_bg.png" alt="" style="width: 914px; height: 197px;" /></div> |
<a href="http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+qui+manquait" target="_blank"><img src="images/manuel.png" style="width: 188px; border: 1px solid #999"/></a> |
||||||
</div><!-- End page header --> |
<br/><br/><a href="http://planete.sankore.org/xwiki/bin/view/Pedagogique/Le+manuel+qui+manquait" target="_blank"><h5 style="text-align: center;">The user manual</h5></a> |
||||||
|
|
||||||
<div id="contentContainer"><!-- Start main content wrapper --> |
</div> |
||||||
<div id="content"><!-- Start content --> |
<div class="g200"> |
||||||
<div class="contentSpacer"></div><!-- this makes sure the content is long enough for the design --> |
|
||||||
<p style="text-align:center;"><span style="font-size:14px; font-weight:bold; ">The development of the tutorial is underway and content will progressively be added in following updates</span><br /><br />Meanwhile, you can go to our website <a href="http://www.open-sankore.org" rel="self">www.open-sankore.org</a> where you can ask your questions and discover more informations on how to use the software. <br /><br />You can also <a href="http://dev.open-sankore.org/xwiki/bin/view/Community/EndUserSupport" rel="self">download</a> the user manual.</p> |
<a href="http://planete.sankore.org/xwiki/bin/view/Pedagogique/Tutoriels" target="_blank"><img src="images/pedago.png" style="width: 188px; border: 1px solid #999"/></a> |
||||||
<div class="clearer"></div> |
<br/><br/><a href="http://planete.sankore.org/xwiki/bin/view/Pedagogique/Tutoriels" target="_blank"><h5 style="text-align: center;">The teaching space</h5></a> |
||||||
</div><!-- End content --> |
|
||||||
|
</div> |
||||||
</div><!-- End main content wrapper --> |
|
||||||
|
<div class="g200"> |
||||||
<div id="sidebarContainer"><!-- Start Sidebar wrapper --> |
|
||||||
<div id="sidebar"><!-- Start sidebar content --> |
<a href="http://planete.sankore.org/xwiki/bin/view/Technologique/WebHome" target="_blank"><img src="images/tech.png" style="width: 188px; border: 1px solid #999"/></a> |
||||||
<div class="sideHeader"></div><!-- Sidebar header --> |
<br/><br/><a href="http://planete.sankore.org/xwiki/bin/view/Technologique/WebHome" target="_blank"><h5 style="text-align: center;">The technical space</h5></a> |
||||||
<!-- sidebar content you enter in the page inspector --> |
|
||||||
<!-- sidebar content such as the blog archive links --> |
</div> |
||||||
</div><!-- End sidebar content --> |
|
||||||
</div><!-- End sidebar wrapper --> |
<div class="clear"> </div> |
||||||
|
|
||||||
<div class="clearer"></div> |
</div> |
||||||
|
|
||||||
</div><!-- End container --> |
</body> |
||||||
|
</html> |
||||||
<div class="clearer"></div> |
|
||||||
<div id="footer"><!-- Start Footer --> |
|
||||||
<p></p> |
|
||||||
<div id="breadcrumbcontainer"><!-- Start the breadcrumb wrapper --> |
|
||||||
|
|
||||||
</div><!-- End breadcrumb --> |
|
||||||
</div><!-- End Footer --> |
|
||||||
</body> |
|
||||||
</html> |
|
||||||
|
@ -1,99 +0,0 @@ |
|||||||
/* @group Layout Colours */ |
|
||||||
|
|
||||||
#bar, |
|
||||||
.photo-navigation, |
|
||||||
.movie-title { |
|
||||||
background-color: #51748C; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader #title { |
|
||||||
background-color: #FF7E00; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader h1, |
|
||||||
#pageHeader h2 { |
|
||||||
text-shadow: 0px -1px 0px #994B00; |
|
||||||
} |
|
||||||
|
|
||||||
#footer { |
|
||||||
background-color: #82B4D7; |
|
||||||
} |
|
||||||
|
|
||||||
#footer p { |
|
||||||
text-shadow: 0px -1px 0px #4E6C81; |
|
||||||
} |
|
||||||
|
|
||||||
#breadcrumbcontainer li { |
|
||||||
color: #5B7E96; |
|
||||||
} |
|
||||||
|
|
||||||
/* @end */ |
|
||||||
|
|
||||||
/* @group Content Colours */ |
|
||||||
|
|
||||||
body, |
|
||||||
.blog-entry-body, |
|
||||||
.blog-entry-date, |
|
||||||
.blog-entry { |
|
||||||
color: #7F7F7F; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
#sidebarContainer .sideHeader, |
|
||||||
#sidebarContainer #sidebar h1, |
|
||||||
#sidebarContainer #sidebar h2, |
|
||||||
#sidebarContainer #sidebar h3 { |
|
||||||
color: #51748C; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer { |
|
||||||
color: #A6A6A6; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer #sidebar a, |
|
||||||
#breadcrumbcontainer, |
|
||||||
a:link, a:visited { |
|
||||||
color: #656565; |
|
||||||
} |
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, |
|
||||||
h1.blog-entry-title a, |
|
||||||
.blog-archive-headings-wrapper, |
|
||||||
.album-title, |
|
||||||
.photo-title, |
|
||||||
.movie-page-title { |
|
||||||
color: #FF7E00; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* @end */ |
|
||||||
|
|
||||||
/* @group Navbar */ |
|
||||||
|
|
||||||
#navcontainer a { |
|
||||||
color: #7F7F7F; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer a:hover, |
|
||||||
#navcontainer #current, |
|
||||||
#navcontainer .currentAncestor, |
|
||||||
#sidebarContainer #sidebar a:hover, |
|
||||||
.photo-navigation a:hover, |
|
||||||
a:hover, a:active, |
|
||||||
form, |
|
||||||
h1 { |
|
||||||
color: #FF7E00; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul a:hover, |
|
||||||
#navcontainer ul ul #current, |
|
||||||
#navcontainer ul ul .currentAncestor { |
|
||||||
background: #FF7E00; |
|
||||||
color: #fff; |
|
||||||
border-bottom-color: #FF7E00; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* @end */ |
|
@ -1,3 +0,0 @@ |
|||||||
#pageHeader #overlay_curve_solid { |
|
||||||
display: block; |
|
||||||
} |
|
@ -1,3 +0,0 @@ |
|||||||
#pageHeader #overlay_stripes_glow { |
|
||||||
display: block; |
|
||||||
} |
|
@ -1,3 +0,0 @@ |
|||||||
#pageHeader #overlay_stripes_solid { |
|
||||||
display: block; |
|
||||||
} |
|
@ -1,3 +0,0 @@ |
|||||||
#pageHeader #overlay_swirls { |
|
||||||
display: block; |
|
||||||
} |
|
@ -1,70 +0,0 @@ |
|||||||
.filesharing-item { |
|
||||||
background: url(../../images/download_icon.png) no-repeat 0 3px; |
|
||||||
padding-left: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
/* @group Blog */ |
|
||||||
|
|
||||||
.blog-archive-link { |
|
||||||
background: url(../../images/blog_home.png) no-repeat 0 5px; |
|
||||||
padding-left: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-date { |
|
||||||
padding-left: 20px; |
|
||||||
background: url(../../images/blog_clock.png) no-repeat 0 3px; |
|
||||||
} |
|
||||||
|
|
||||||
/*styles the category link in the main entry */ |
|
||||||
.blog-entry-category { |
|
||||||
background: url(../../images/blog_file.png) no-repeat 0 0; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-body { |
|
||||||
padding: 20px 0 40px 0; |
|
||||||
background: url(../../images/blog_bottom_bar.png) no-repeat left bottom; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-comments { |
|
||||||
padding-left: 20px; |
|
||||||
background: url(../../images/blog_comments.png) no-repeat 0 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-trackback-link { |
|
||||||
padding-left: 20px; |
|
||||||
background: url(../../images/blog_trackback.png) no-repeat 0 0px; |
|
||||||
} |
|
||||||
|
|
||||||
p.blog-entry-tags { |
|
||||||
background: url(../../images/blog_tag.png) no-repeat 0 3px; |
|
||||||
} |
|
||||||
|
|
||||||
/* styles the archives in the blog sidebar */ |
|
||||||
|
|
||||||
.blog-archive-link-enabled { |
|
||||||
|
|
||||||
background: url(../../images/blog_icon.png) no-repeat 0; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-archive-link-disabled { |
|
||||||
background: url(../../images/blog_icon.png) no-repeat 0; |
|
||||||
} |
|
||||||
|
|
||||||
/* Styles the blog categories in the blog sidebar */ |
|
||||||
|
|
||||||
.blog-category-link-enabled { |
|
||||||
background: url(../../images/blog_file.png) no-repeat 0; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-disabled { |
|
||||||
background: url(../../images/blog_file.png) no-repeat 0 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/blog_rss.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/blog_rss.png) no-repeat 0; |
|
||||||
} |
|
||||||
|
|
||||||
/* @end */ |
|
@ -1,25 +0,0 @@ |
|||||||
.blog-entry-category { |
|
||||||
background: url(../../images/file_black.png) no-repeat left 0; |
|
||||||
} |
|
||||||
|
|
||||||
p.blog-entry-tags { |
|
||||||
background: url(../../images/tag_black.png) no-repeat left 2px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-disabled, |
|
||||||
.blog-archive-link-disabled { |
|
||||||
background: url(../../images/file_black.png) no-repeat left center; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
.blog-category-link-enabled, |
|
||||||
.blog-archive-link-enabled { |
|
||||||
background: url(../../images/file_black.png) no-repeat left 1px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0; |
|
||||||
} |
|
@ -1,25 +0,0 @@ |
|||||||
.blog-entry-category { |
|
||||||
background: url(../../images/file_blue.png) no-repeat left 0; |
|
||||||
} |
|
||||||
|
|
||||||
p.blog-entry-tags { |
|
||||||
background: url(../../images/tag_blue.png) no-repeat left 2px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-disabled, |
|
||||||
.blog-archive-link-disabled { |
|
||||||
background: url(../../images/file_blue.png) no-repeat left center; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
.blog-category-link-enabled, |
|
||||||
.blog-archive-link-enabled { |
|
||||||
background: url(../../images/file_blue.png) no-repeat left 1px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0; |
|
||||||
} |
|
@ -1,25 +0,0 @@ |
|||||||
.blog-entry-category { |
|
||||||
background: url(../../images/file_brown.png) no-repeat left 0; |
|
||||||
} |
|
||||||
|
|
||||||
p.blog-entry-tags { |
|
||||||
background: url(../../images/tag_brown.png) no-repeat left 2px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-disabled, |
|
||||||
.blog-archive-link-disabled { |
|
||||||
background: url(../../images/file_brown.png) no-repeat left center; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
.blog-category-link-enabled, |
|
||||||
.blog-archive-link-enabled { |
|
||||||
background: url(../../images/file_brown.png) no-repeat left 1px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0; |
|
||||||
} |
|
@ -1,25 +0,0 @@ |
|||||||
.blog-entry-category { |
|
||||||
background: url(../../images/file_green.png) no-repeat left 0; |
|
||||||
} |
|
||||||
|
|
||||||
p.blog-entry-tags { |
|
||||||
background: url(../../images/tag_green.png) no-repeat left 2px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-disabled, |
|
||||||
.blog-archive-link-disabled { |
|
||||||
background: url(../../images/file_green.png) no-repeat left center; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
.blog-category-link-enabled, |
|
||||||
.blog-archive-link-enabled { |
|
||||||
background: url(../../images/file_green.png) no-repeat left 1px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0; |
|
||||||
} |
|
@ -1,26 +0,0 @@ |
|||||||
.blog-entry-category { |
|
||||||
background: url(../../images/file_pink.png) no-repeat left 0; |
|
||||||
} |
|
||||||
|
|
||||||
p.blog-entry-tags { |
|
||||||
background: url(../../images/tag_pink.png) no-repeat left 2px; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
.blog-category-link-disabled, |
|
||||||
.blog-archive-link-disabled { |
|
||||||
background: url(../../images/file_pink.png) no-repeat left center; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
.blog-category-link-enabled, |
|
||||||
.blog-archive-link-enabled { |
|
||||||
background: url(../../images/file_pink.png) no-repeat left 2px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0; |
|
||||||
} |
|
@ -1,32 +0,0 @@ |
|||||||
.blog-entry-category { |
|
||||||
background: url(../../images/file_red.png) no-repeat left 0; |
|
||||||
} |
|
||||||
|
|
||||||
p.blog-entry-tags { |
|
||||||
background: url(../../images/tag_red.png) no-repeat left 2px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-disabled, |
|
||||||
.blog-archive-link-disabled { |
|
||||||
background: url(../../images/file_red.png) no-repeat left center; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
.blog-category-link-enabled, |
|
||||||
.blog-archive-link-enabled { |
|
||||||
background: url(../../images/file_red.png) no-repeat left 1px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0;} |
|
||||||
|
|
||||||
.blog-comments-rss-link { |
|
||||||
background: url(../../images/feed.png) no-repeat 0; |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
#navcontainer a { |
|
||||||
padding: 15px 15px 17px 15px; |
|
||||||
height: 0px; |
|
||||||
} |
|
@ -1,3 +0,0 @@ |
|||||||
#pageHeader #logo img { |
|
||||||
margin: 10px auto 0; |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
#pageHeader #logo img { |
|
||||||
float: left; |
|
||||||
margin: 10px 0 0 30px; |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
#pageHeader #logo img { |
|
||||||
float: right; |
|
||||||
margin: 10px 30px 0 0; |
|
||||||
} |
|
@ -1,15 +0,0 @@ |
|||||||
#contentContainer { |
|
||||||
float: right; |
|
||||||
padding-right: 7px; |
|
||||||
background-position: top left; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer { |
|
||||||
float: left; |
|
||||||
padding-left: 7px; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer #sidebar { |
|
||||||
padding-left: 30px; |
|
||||||
padding-right: 10px; |
|
||||||
} |
|
@ -1,8 +0,0 @@ |
|||||||
#sidebarContainer { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer { |
|
||||||
width: auto; |
|
||||||
background-image: none; |
|
||||||
} |
|
@ -1,15 +0,0 @@ |
|||||||
#contentContainer { |
|
||||||
float: left; |
|
||||||
padding-left: 7px; |
|
||||||
background-position: top right; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer { |
|
||||||
float: right; |
|
||||||
padding-right: 7px; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer #sidebar { |
|
||||||
padding-right: 30px; |
|
||||||
padding-left: 10px; |
|
||||||
} |
|
@ -1,116 +0,0 @@ |
|||||||
<attach event="ondocumentready" handler="parseStylesheets" /> |
|
||||||
<script> |
|
||||||
/** |
|
||||||
* Whatever:hover - V2.01.050927 - hover, active & focus |
|
||||||
* ------------------------------------------------------------ |
|
||||||
* (c) 2005 - Peter Nederlof |
|
||||||
* Peterned - http://www.xs4all.nl/~peterned/ |
|
||||||
* License - http://creativecommons.org/licenses/LGPL/2.1/ |
|
||||||
* |
|
||||||
* Whatever:hover is free software; you can redistribute it and/or |
|
||||||
* modify it under the terms of the GNU Lesser General Public |
|
||||||
* License as published by the Free Software Foundation; either |
|
||||||
* version 2.1 of the License, or (at your option) any later version. |
|
||||||
* |
|
||||||
* Whatever:hover is distributed in the hope that it will be useful, |
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||||
* Lesser General Public License for more details. |
|
||||||
* |
|
||||||
* Credits and thanks to: |
|
||||||
* Arnoud Berendsen, Martin Reurings, Robert Hanson |
|
||||||
* |
|
||||||
* howto: body { behavior:url("csshover.htc"); } |
|
||||||
* ------------------------------------------------------------ |
|
||||||
*/ |
|
||||||
|
|
||||||
var csshoverReg = /(^|\s)((([^a]([^ ]+)?)|(a([^#.][^ ]+)+)):(hover|active))|((a|input|textarea):unknown)/i, |
|
||||||
currentSheet, doc = window.document, hoverEvents = [], activators = { |
|
||||||
onhover:{on:'onmouseover', off:'onmouseout'}, |
|
||||||
onactive:{on:'onmousedown', off:'onmouseup'}, |
|
||||||
onunknown:{on:'onfocus', off:'onblur'} |
|
||||||
} |
|
||||||
|
|
||||||
function parseStylesheets() { |
|
||||||
if(!/MSIE (5|6)/.test(navigator.userAgent)) return; |
|
||||||
window.attachEvent('onunload', unhookHoverEvents); |
|
||||||
var sheets = doc.styleSheets, l = sheets.length; |
|
||||||
for(var i=0; i<l; i++) |
|
||||||
parseStylesheet(sheets[i]); |
|
||||||
} |
|
||||||
function parseStylesheet(sheet) { |
|
||||||
if(sheet.imports) { |
|
||||||
try { |
|
||||||
var imports = sheet.imports, l = imports.length; |
|
||||||
for(var i=0; i<l; i++) parseStylesheet(sheet.imports[i]); |
|
||||||
} catch(securityException){} |
|
||||||
} |
|
||||||
|
|
||||||
try { |
|
||||||
var rules = (currentSheet = sheet).rules, l = rules.length; |
|
||||||
for(var j=0; j<l; j++) parseCSSRule(rules[j]); |
|
||||||
} catch(securityException){} |
|
||||||
} |
|
||||||
|
|
||||||
function parseCSSRule(rule) { |
|
||||||
var select = rule.selectorText, style = rule.style.cssText; |
|
||||||
if(!csshoverReg.test(select) || !style) return; |
|
||||||
|
|
||||||
var pseudo = select.replace(/[^:]+:([a-z-]+).*/i, 'on$1'); |
|
||||||
var newSelect = select.replace(/(\.([a-z0-9_-]+):[a-z]+)|(:[a-z]+)/gi, '.$2' + pseudo); |
|
||||||
var className = (/\.([a-z0-9_-]*on(hover|active|unknown))/i).exec(newSelect)[1]; |
|
||||||
var affected = select.replace(/:(hover|active|unknown).*$/, ''); |
|
||||||
var elements = getElementsBySelect(affected); |
|
||||||
if(elements.length == 0) return; |
|
||||||
|
|
||||||
currentSheet.addRule(newSelect, style); |
|
||||||
for(var i=0; i<elements.length; i++) |
|
||||||
new HoverElement(elements[i], className, activators[pseudo]); |
|
||||||
} |
|
||||||
|
|
||||||
function HoverElement(node, className, events) { |
|
||||||
if(!node.hovers) node.hovers = {}; |
|
||||||
if(node.hovers[className]) return; |
|
||||||
node.hovers[className] = true; |
|
||||||
hookHoverEvent(node, events.on, function() { node.className += ' ' + className; }); |
|
||||||
hookHoverEvent(node, events.off, function() { node.className = node.className.replace(new RegExp('\\s+'+className, 'g'),''); }); |
|
||||||
} |
|
||||||
function hookHoverEvent(node, type, handler) { |
|
||||||
node.attachEvent(type, handler); |
|
||||||
hoverEvents[hoverEvents.length] = { |
|
||||||
node:node, type:type, handler:handler |
|
||||||
}; |
|
||||||
} |
|
||||||
|
|
||||||
function unhookHoverEvents() { |
|
||||||
for(var e,i=0; i<hoverEvents.length; i++) { |
|
||||||
e = hoverEvents[i]; |
|
||||||
e.node.detachEvent(e.type, e.handler); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
function getElementsBySelect(rule) { |
|
||||||
var parts, nodes = [doc]; |
|
||||||
parts = rule.split(' '); |
|
||||||
for(var i=0; i<parts.length; i++) { |
|
||||||
nodes = getSelectedNodes(parts[i], nodes); |
|
||||||
} return nodes; |
|
||||||
} |
|
||||||
function getSelectedNodes(select, elements) { |
|
||||||
var result, node, nodes = []; |
|
||||||
var identify = (/\#([a-z0-9_-]+)/i).exec(select); |
|
||||||
if(identify) return [doc.getElementById(identify[1])]; |
|
||||||
|
|
||||||
var classname = (/\.([a-z0-9_-]+)/i).exec(select); |
|
||||||
var tagName = select.replace(/(\.|\#|\:)[a-z0-9_-]+/i, ''); |
|
||||||
var classReg = classname? new RegExp('\\b' + classname[1] + '\\b'):false; |
|
||||||
for(var i=0; i<elements.length; i++) { |
|
||||||
result = tagName? elements[i].all.tags(tagName):elements[i].all; |
|
||||||
for(var j=0; j<result.length; j++) { |
|
||||||
node = result[j]; |
|
||||||
if(classReg && !classReg.test(node.className)) continue; |
|
||||||
nodes[nodes.length] = node; |
|
||||||
} |
|
||||||
} return nodes; |
|
||||||
} |
|
||||||
</script> |
|
@ -1,545 +0,0 @@ |
|||||||
/*<group=General Styles>*/ |
|
||||||
|
|
||||||
body { |
|
||||||
text-align: left; |
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif; |
|
||||||
font-size: 0.9em; |
|
||||||
margin: 0px; |
|
||||||
padding: 0; |
|
||||||
white-space: pre; |
|
||||||
} |
|
||||||
|
|
||||||
p { |
|
||||||
} |
|
||||||
|
|
||||||
b, strong { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
a:link { |
|
||||||
color: #0000ff; |
|
||||||
text-decoration: underline; |
|
||||||
} |
|
||||||
|
|
||||||
a:visited { |
|
||||||
color: #681796; |
|
||||||
} |
|
||||||
|
|
||||||
a:hover, a:active { |
|
||||||
text-decoration: none; |
|
||||||
background: #0000ff; |
|
||||||
color: #ffffff; |
|
||||||
} |
|
||||||
|
|
||||||
img { |
|
||||||
max-width: 99%; |
|
||||||
} |
|
||||||
|
|
||||||
.image-left { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.image-right { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Layout>*/ |
|
||||||
|
|
||||||
#container { |
|
||||||
background: #ffffff; |
|
||||||
background-image: none; |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader { |
|
||||||
height: auto; |
|
||||||
text-align: left; |
|
||||||
margin-bottom: 8px; |
|
||||||
background: #000000; |
|
||||||
padding: 3px; |
|
||||||
border-bottom: solid #191919 2px; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader img { |
|
||||||
position: relative; |
|
||||||
top: auto; |
|
||||||
right: auto; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader h1 { |
|
||||||
color: #ffffff; |
|
||||||
font-size: 1.3em; |
|
||||||
margin: 0 0 5px; |
|
||||||
padding-top: 0px; |
|
||||||
font-weight: bold; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader h2 { |
|
||||||
font-size: 1.1em; |
|
||||||
margin: 0; |
|
||||||
color: #ffffff; |
|
||||||
font-weight: normal; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer { |
|
||||||
margin: 0px; |
|
||||||
display: block; |
|
||||||
width: auto; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer #content { |
|
||||||
margin: 0; |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer { |
|
||||||
float: none; |
|
||||||
width: auto; |
|
||||||
display: block; |
|
||||||
margin-bottom: 10px; |
|
||||||
padding-bottom: 10px; |
|
||||||
border-bottom: 1px solid #808080; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer #sidebar { |
|
||||||
margin: 0; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer .sideHeader { |
|
||||||
color: #000000; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 5px; |
|
||||||
} |
|
||||||
|
|
||||||
#footer { |
|
||||||
width: auto; |
|
||||||
text-align: left; |
|
||||||
padding: 0px; |
|
||||||
margin: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#footer p { |
|
||||||
} |
|
||||||
|
|
||||||
#footer a:link, #footer a:visited { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
#footer a:hover, #footer a:active { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Bread-crumb>*/ |
|
||||||
|
|
||||||
#breadcrumbcontainer { |
|
||||||
margin-bottom: 5px; |
|
||||||
} |
|
||||||
|
|
||||||
#breadcrumbcontainer ul { |
|
||||||
list-style: none; |
|
||||||
margin: 0; |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#breadcrumbcontainer li { |
|
||||||
display: inline; |
|
||||||
padding: 0; |
|
||||||
margin: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#breadcrumbcontainer a { |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#breadcrumbcontainer a:hover { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Toolbar>*/ |
|
||||||
|
|
||||||
/* Toolbar Styles */ |
|
||||||
|
|
||||||
#navcontainer { |
|
||||||
color: #000000; |
|
||||||
margin: 0 0 10px 0; |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer #current { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer #current:hover { |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer .currentAncestor { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/* Parent - Level 0 */ |
|
||||||
|
|
||||||
#navcontainer ul{ |
|
||||||
margin: 0; |
|
||||||
padding: 0; |
|
||||||
list-style-type: none; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer li { |
|
||||||
margin: 0; |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer a { |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer a:hover { |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer a:active { |
|
||||||
} |
|
||||||
|
|
||||||
/* Child - Level 1 */ |
|
||||||
|
|
||||||
#navcontainer ul ul { |
|
||||||
list-style-type: none; |
|
||||||
margin-left: 2px; |
|
||||||
padding: 0; |
|
||||||
color: black; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul li { |
|
||||||
padding-left: 5px; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul a { |
|
||||||
padding: 0; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul a:hover{ |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul #current{ |
|
||||||
} |
|
||||||
|
|
||||||
/* Child - Level 2 */ |
|
||||||
|
|
||||||
#navcontainer ul ul ul { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul li { |
|
||||||
padding-left: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul a{ |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul a:hover{ |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/* Child Level 3 */ |
|
||||||
|
|
||||||
#navcontainer ul ul ul { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul li { |
|
||||||
padding-left: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul a{ |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul a:hover{ |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/* Child Level 4 */ |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul ul li { |
|
||||||
padding-left: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul ul a{ |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul ul a:hover{ |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/* Child Level 5 */ |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul ul { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul ul ul li { |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul ul ul a{ |
|
||||||
} |
|
||||||
|
|
||||||
#navcontainer ul ul ul ul ul ul a:hover{ |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Global Classes>*/ |
|
||||||
|
|
||||||
blockquote, .standout { |
|
||||||
margin: 0; |
|
||||||
padding: 5px; |
|
||||||
font-weight: bold; |
|
||||||
} |
|
||||||
|
|
||||||
h1 { |
|
||||||
} |
|
||||||
|
|
||||||
h2 { |
|
||||||
} |
|
||||||
|
|
||||||
h3 { |
|
||||||
} |
|
||||||
|
|
||||||
h4 { |
|
||||||
} |
|
||||||
|
|
||||||
.imageStyle { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Blog>*/ |
|
||||||
|
|
||||||
/*<group=Archive Page>*/ |
|
||||||
|
|
||||||
.blog-archive-background { |
|
||||||
}
.blog-archive-headings-wrapper { |
|
||||||
} |
|
||||||
|
|
||||||
.blog-archive-entries-wrapper { |
|
||||||
} |
|
||||||
|
|
||||||
.blog-archive-entries-wrapper .blog-entry { |
|
||||||
}
.blog-archive-month { |
|
||||||
} |
|
||||||
|
|
||||||
.blog-archive-link { |
|
||||||
}
.blog-archive-link a:link, .blog-archive-link a:visited { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
.blog-entry { |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-title { |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-date { |
|
||||||
margin-bottom: 8px; |
|
||||||
font-size: 0.9em; |
|
||||||
color: #808080; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-body { |
|
||||||
margin-bottom: 5px; |
|
||||||
padding-bottom: 5px; |
|
||||||
border-bottom: 1px solid #cccccc; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-comments { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-category { |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-enabled { |
|
||||||
} |
|
||||||
|
|
||||||
.blog-category-link-disabled { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=File Sharing>*/ |
|
||||||
|
|
||||||
.filesharing-description { |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item { |
|
||||||
margin-bottom: 5px; |
|
||||||
padding-bottom: 5px; |
|
||||||
border-bottom: 1px solid #cccccc; |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-title a:link { |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-title a:hover { |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-title a:visited { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-description { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Photo Album>*/ |
|
||||||
|
|
||||||
/*<group=Index Page (Thumbnail view)>*/ |
|
||||||
|
|
||||||
.album-title { |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.album-description { |
|
||||||
margin-bottom: 8px; |
|
||||||
font-size: 0.9em; |
|
||||||
color: #808080; |
|
||||||
} |
|
||||||
|
|
||||||
table.thumbnail-table { |
|
||||||
width: 99%; |
|
||||||
} |
|
||||||
|
|
||||||
table.thumbnail-table, table.thumbnail-table tr, table.thumbnail-table td { |
|
||||||
display: block; |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame:hover { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame a { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame a:hover { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame img { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-caption { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Single Page (Photo view)>*/ |
|
||||||
|
|
||||||
.photo-background { |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation { |
|
||||||
} |
|
||||||
|
|
||||||
.photo-links { |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation a:link, .photo-navigation a:visited { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation a:hover { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.photo-frame{ |
|
||||||
} |
|
||||||
|
|
||||||
.photo-title { |
|
||||||
} |
|
||||||
|
|
||||||
.photo-caption { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Quicktime Page>*/ |
|
||||||
|
|
||||||
.movie-description { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Quicktime Album>*/ |
|
||||||
|
|
||||||
/*<group=Index Page (Movie Thumbnail view)>*/ |
|
||||||
|
|
||||||
.movie-page-title { |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
}
.movie-page-description { |
|
||||||
margin-bottom: 8px; |
|
||||||
font-size: 0.9em; |
|
||||||
color: #808080; |
|
||||||
}
.movie-thumbnail-frame { |
|
||||||
} |
|
||||||
|
|
||||||
.movie-thumbnail-frame:hover { |
|
||||||
} |
|
||||||
|
|
||||||
.movie-thumbnail-caption { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Single Page (Movie View)>*/ |
|
||||||
|
|
||||||
.movie-background { |
|
||||||
} |
|
||||||
|
|
||||||
.movie-title { |
|
||||||
} |
|
||||||
|
|
||||||
.movie-frame { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Contact Form>*/ |
|
||||||
.message-text { |
|
||||||
} |
|
||||||
|
|
||||||
.required-text { |
|
||||||
} |
|
||||||
|
|
||||||
.form-input-field { |
|
||||||
max-width: 100%; |
|
||||||
} |
|
||||||
|
|
||||||
.form-input-button { |
|
||||||
} |
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 330 B |
Before Width: | Height: | Size: 546 B |
Before Width: | Height: | Size: 479 B |
Before Width: | Height: | Size: 486 B |
Before Width: | Height: | Size: 452 B |
Before Width: | Height: | Size: 444 B |
Before Width: | Height: | Size: 538 B |
Before Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 464 B |
Before Width: | Height: | Size: 945 B |
Before Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 437 B |
Before Width: | Height: | Size: 813 B |
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 451 B |
Before Width: | Height: | Size: 656 B |
Before Width: | Height: | Size: 448 B |
Before Width: | Height: | Size: 447 B |
Before Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 453 B |
Before Width: | Height: | Size: 434 B |
Before Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 137 B |
Before Width: | Height: | Size: 138 B |
Before Width: | Height: | Size: 656 B |
Before Width: | Height: | Size: 513 B |
Before Width: | Height: | Size: 511 B |
Before Width: | Height: | Size: 524 B |
Before Width: | Height: | Size: 506 B |
Before Width: | Height: | Size: 516 B |
Before Width: | Height: | Size: 518 B |
@ -1,443 +0,0 @@ |
|||||||
/* |
|
||||||
* RapidWeaver 3.5.0 theme functions. |
|
||||||
* Script Version 2.1 |
|
||||||
* Updated 26 May 2006. |
|
||||||
*/ |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* |
|
||||||
* Function to generate "open in new window" link as W3C compliant |
|
||||||
*/ |
|
||||||
|
|
||||||
function externalLinks() { |
|
||||||
if (!document.getElementsByTagName) return;
|
|
||||||
var anchors = document.getElementsByTagName("a");
|
|
||||||
for (var i=0; i<anchors.length; i++) {
|
|
||||||
var anchor = anchors[i];
|
|
||||||
if (anchor.getAttribute("href") &&
|
|
||||||
anchor.getAttribute("rel") == "external")
|
|
||||||
anchor.target = "_blank"; |
|
||||||
}
|
|
||||||
}
|
|
||||||
window.onload = externalLinks; |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* |
|
||||||
* Functions to generate OBJECT and EMBED tags for Flash content. |
|
||||||
* Resource: http://blog.deconcept.com/swfobject/
|
|
||||||
* |
|
||||||
* SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License: |
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
|
||||||
*/ |
|
||||||
|
|
||||||
if(typeof deconcept == "undefined") var deconcept = new Object(); |
|
||||||
if(typeof deconcept.util == "undefined") deconcept.util = new Object(); |
|
||||||
if(typeof deconcept.SWFObjectUtil == "undefined") deconcept.SWFObjectUtil = new Object(); |
|
||||||
deconcept.SWFObject = function(swf, id, w, h, ver, c, useExpressInstall, quality, xiRedirectUrl, redirectUrl, detectKey){ |
|
||||||
if (!document.createElement || !document.getElementById) { return; } |
|
||||||
this.DETECT_KEY = detectKey ? detectKey : 'detectflash'; |
|
||||||
this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY); |
|
||||||
this.params = new Object(); |
|
||||||
this.variables = new Object(); |
|
||||||
this.attributes = new Array(); |
|
||||||
if(swf) { this.setAttribute('swf', swf); } |
|
||||||
if(id) { this.setAttribute('id', id); } |
|
||||||
if(w) { this.setAttribute('width', w); } |
|
||||||
if(h) { this.setAttribute('height', h); } |
|
||||||
if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); } |
|
||||||
this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion(this.getAttribute('version'), useExpressInstall); |
|
||||||
if(c) { this.addParam('bgcolor', c); } |
|
||||||
var q = quality ? quality : 'high'; |
|
||||||
this.addParam('quality', q); |
|
||||||
this.setAttribute('useExpressInstall', useExpressInstall); |
|
||||||
this.setAttribute('doExpressInstall', false); |
|
||||||
var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location; |
|
||||||
this.setAttribute('xiRedirectUrl', xir); |
|
||||||
this.setAttribute('redirectUrl', ''); |
|
||||||
if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); } |
|
||||||
} |
|
||||||
deconcept.SWFObject.prototype = { |
|
||||||
setAttribute: function(name, value){ |
|
||||||
this.attributes[name] = value; |
|
||||||
}, |
|
||||||
getAttribute: function(name){ |
|
||||||
return this.attributes[name]; |
|
||||||
}, |
|
||||||
addParam: function(name, value){ |
|
||||||
this.params[name] = value; |
|
||||||
}, |
|
||||||
getParams: function(){ |
|
||||||
return this.params; |
|
||||||
}, |
|
||||||
addVariable: function(name, value){ |
|
||||||
this.variables[name] = value; |
|
||||||
}, |
|
||||||
getVariable: function(name){ |
|
||||||
return this.variables[name]; |
|
||||||
}, |
|
||||||
getVariables: function(){ |
|
||||||
return this.variables; |
|
||||||
}, |
|
||||||
getVariablePairs: function(){ |
|
||||||
var variablePairs = new Array(); |
|
||||||
var key; |
|
||||||
var variables = this.getVariables(); |
|
||||||
for(key in variables){ |
|
||||||
variablePairs.push(key +"="+ variables[key]); |
|
||||||
} |
|
||||||
return variablePairs; |
|
||||||
}, |
|
||||||
getSWFHTML: function() { |
|
||||||
var swfNode = ""; |
|
||||||
if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
|
|
||||||
if (this.getAttribute("doExpressInstall")) this.addVariable("MMplayerType", "PlugIn"); |
|
||||||
swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'"'; |
|
||||||
swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" '; |
|
||||||
var params = this.getParams(); |
|
||||||
for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; } |
|
||||||
var pairs = this.getVariablePairs().join("&"); |
|
||||||
if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; } |
|
||||||
swfNode += '/>'; |
|
||||||
} else { // PC IE
|
|
||||||
if (this.getAttribute("doExpressInstall")) this.addVariable("MMplayerType", "ActiveX"); |
|
||||||
swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'">'; |
|
||||||
swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />'; |
|
||||||
var params = this.getParams(); |
|
||||||
for(var key in params) { |
|
||||||
swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />'; |
|
||||||
} |
|
||||||
var pairs = this.getVariablePairs().join("&"); |
|
||||||
if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';} |
|
||||||
swfNode += "</object>"; |
|
||||||
} |
|
||||||
return swfNode; |
|
||||||
}, |
|
||||||
write: function(elementId){ |
|
||||||
if(this.getAttribute('useExpressInstall')) { |
|
||||||
// check to see if we need to do an express install
|
|
||||||
var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]); |
|
||||||
if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) { |
|
||||||
this.setAttribute('doExpressInstall', true); |
|
||||||
this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl'))); |
|
||||||
document.title = document.title.slice(0, 47) + " - Flash Player Installation"; |
|
||||||
this.addVariable("MMdoctitle", document.title); |
|
||||||
} |
|
||||||
} |
|
||||||
if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version'))){ |
|
||||||
var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId; |
|
||||||
n.innerHTML = this.getSWFHTML(); |
|
||||||
return true; |
|
||||||
}else{ |
|
||||||
if(this.getAttribute('redirectUrl') != "") { |
|
||||||
document.location.replace(this.getAttribute('redirectUrl')); |
|
||||||
} |
|
||||||
} |
|
||||||
return false; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
/* ---- detection functions ---- */ |
|
||||||
deconcept.SWFObjectUtil.getPlayerVersion = function(reqVer, xiInstall){ |
|
||||||
var PlayerVersion = new deconcept.PlayerVersion([0,0,0]); |
|
||||||
if(navigator.plugins && navigator.mimeTypes.length){ |
|
||||||
var x = navigator.plugins["Shockwave Flash"]; |
|
||||||
if(x && x.description) { |
|
||||||
PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split(".")); |
|
||||||
} |
|
||||||
}else{ |
|
||||||
try{ |
|
||||||
var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); |
|
||||||
for (var i=3; axo!=null; i++) { |
|
||||||
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i); |
|
||||||
PlayerVersion = new deconcept.PlayerVersion([i,0,0]); |
|
||||||
} |
|
||||||
}catch(e){} |
|
||||||
if (reqVer && PlayerVersion.major > reqVer.major) return PlayerVersion; // version is ok, skip minor detection
|
|
||||||
// this only does the minor rev lookup if the user's major version
|
|
||||||
// is not 6 or we are checking for a specific minor or revision number
|
|
||||||
// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
|
|
||||||
if (!reqVer || ((reqVer.minor != 0 || reqVer.rev != 0) && PlayerVersion.major == reqVer.major) || PlayerVersion.major != 6 || xiInstall) { |
|
||||||
try{ |
|
||||||
PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(",")); |
|
||||||
}catch(e){} |
|
||||||
} |
|
||||||
} |
|
||||||
return PlayerVersion; |
|
||||||
} |
|
||||||
deconcept.PlayerVersion = function(arrVersion){ |
|
||||||
this.major = parseInt(arrVersion[0]) != null ? parseInt(arrVersion[0]) : 0; |
|
||||||
this.minor = parseInt(arrVersion[1]) || 0; |
|
||||||
this.rev = parseInt(arrVersion[2]) || 0; |
|
||||||
} |
|
||||||
deconcept.PlayerVersion.prototype.versionIsValid = function(fv){ |
|
||||||
if(this.major < fv.major) return false; |
|
||||||
if(this.major > fv.major) return true; |
|
||||||
if(this.minor < fv.minor) return false; |
|
||||||
if(this.minor > fv.minor) return true; |
|
||||||
if(this.rev < fv.rev) return false; |
|
||||||
return true; |
|
||||||
} |
|
||||||
/* ---- get value of query string param ---- */ |
|
||||||
deconcept.util = { |
|
||||||
getRequestParameter: function(param){ |
|
||||||
var q = document.location.search || document.location.hash; |
|
||||||
if(q){ |
|
||||||
var startIndex = q.indexOf(param +"="); |
|
||||||
var endIndex = (q.indexOf("&", startIndex) > -1) ? q.indexOf("&", startIndex) : q.length; |
|
||||||
if (q.length > 1 && startIndex > -1) { |
|
||||||
return q.substring(q.indexOf("=", startIndex)+1, endIndex); |
|
||||||
} |
|
||||||
} |
|
||||||
return ""; |
|
||||||
} |
|
||||||
} |
|
||||||
/* fix for video streaming bug */ |
|
||||||
deconcept.SWFObjectUtil.cleanupSWFs = function() { |
|
||||||
var objects = document.getElementsByTagName("OBJECT"); |
|
||||||
for (var i=0; i < objects.length; i++) { |
|
||||||
for (var x in objects[i]) { |
|
||||||
if (typeof objects[i][x] == 'function') { |
|
||||||
objects[i][x] = null; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
if (typeof window.onunload == 'function') { |
|
||||||
var oldunload = window.onunload; |
|
||||||
window.onunload = function() { |
|
||||||
deconcept.SWFObjectUtil.cleanupSWFs(); |
|
||||||
oldunload(); |
|
||||||
} |
|
||||||
} else { |
|
||||||
window.onunload = deconcept.SWFObjectUtil.cleanupSWFs; |
|
||||||
} |
|
||||||
/* add Array.push if needed (ie5) */ |
|
||||||
if (Array.prototype.push == null) { Array.prototype.push = function(item) { this[this.length] = item; return this.length; }} |
|
||||||
|
|
||||||
/* add some aliases for ease of use/backwards compatibility */ |
|
||||||
var getQueryParamValue = deconcept.util.getRequestParameter; |
|
||||||
var FlashObject = deconcept.SWFObject; // for legacy support
|
|
||||||
var SWFObject = deconcept.SWFObject; |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* |
|
||||||
* Functions to generate OBJECT and EMBED tags for QuickTime content. |
|
||||||
* Resource: http://developer.apple.com/internet/ieembedfix.html
|
|
||||||
*/ |
|
||||||
|
|
||||||
/************** LOCALIZABLE GLOBAL VARIABLES ****************/ |
|
||||||
|
|
||||||
var gArgCountErr = 'The "%%" function requires an even number of arguments.' |
|
||||||
+ '\nArguments should be in the form "atttributeName", "attributeValue", ...'; |
|
||||||
|
|
||||||
/******************** END LOCALIZABLE **********************/ |
|
||||||
|
|
||||||
var gTagAttrs = null; |
|
||||||
var gQTGeneratorVersion = 1.0; |
|
||||||
|
|
||||||
function AC_QuickTimeVersion() { return gQTGeneratorVersion; } |
|
||||||
|
|
||||||
function _QTComplain(callingFcnName, errMsg) |
|
||||||
{ |
|
||||||
errMsg = errMsg.replace("%%", callingFcnName); |
|
||||||
alert(errMsg); |
|
||||||
} |
|
||||||
|
|
||||||
function _QTAddAttribute(prefix, slotName, tagName) |
|
||||||
{ |
|
||||||
var value; |
|
||||||
|
|
||||||
value = gTagAttrs[prefix + slotName]; |
|
||||||
if ( null == value ) |
|
||||||
value = gTagAttrs[slotName]; |
|
||||||
|
|
||||||
if ( null != value ) |
|
||||||
{ |
|
||||||
if ( 0 == slotName.indexOf(prefix) && (null == tagName) ) |
|
||||||
tagName = slotName.substring(prefix.length);
|
|
||||||
if ( null == tagName )
|
|
||||||
tagName = slotName; |
|
||||||
return tagName + '="' + value + '" '; |
|
||||||
} |
|
||||||
else |
|
||||||
return ""; |
|
||||||
} |
|
||||||
|
|
||||||
function _QTAddObjectAttr(slotName, tagName) |
|
||||||
{ |
|
||||||
// don't bother if it is only for the embed tag
|
|
||||||
if ( 0 == slotName.indexOf("emb#") ) |
|
||||||
return ""; |
|
||||||
|
|
||||||
if ( 0 == slotName.indexOf("obj#") && (null == tagName) ) |
|
||||||
tagName = slotName.substring(4);
|
|
||||||
|
|
||||||
return _QTAddAttribute("obj#", slotName, tagName); |
|
||||||
} |
|
||||||
|
|
||||||
function _QTAddEmbedAttr(slotName, tagName) |
|
||||||
{ |
|
||||||
// don't bother if it is only for the object tag
|
|
||||||
if ( 0 == slotName.indexOf("obj#") ) |
|
||||||
return ""; |
|
||||||
|
|
||||||
if ( 0 == slotName.indexOf("emb#") && (null == tagName) ) |
|
||||||
tagName = slotName.substring(4);
|
|
||||||
|
|
||||||
return _QTAddAttribute("emb#", slotName, tagName); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
function _QTAddObjectParam(slotName, generateXHTML) |
|
||||||
{ |
|
||||||
var paramValue; |
|
||||||
var paramStr = ""; |
|
||||||
var endTagChar = (generateXHTML) ? ' />' : '>'; |
|
||||||
|
|
||||||
if ( -1 == slotName.indexOf("emb#") ) |
|
||||||
{ |
|
||||||
// look for the OBJECT-only param first. if there is none, look for a generic one
|
|
||||||
paramValue = gTagAttrs["obj#" + slotName]; |
|
||||||
if ( null == paramValue ) |
|
||||||
paramValue = gTagAttrs[slotName]; |
|
||||||
|
|
||||||
if ( 0 == slotName.indexOf("obj#") ) |
|
||||||
slotName = slotName.substring(4);
|
|
||||||
|
|
||||||
if ( null != paramValue ) |
|
||||||
paramStr = ' <param name="' + slotName + '" value="' + paramValue + '"' + endTagChar + '\n'; |
|
||||||
} |
|
||||||
|
|
||||||
return paramStr; |
|
||||||
} |
|
||||||
|
|
||||||
function _QTDeleteTagAttrs() |
|
||||||
{ |
|
||||||
for ( var ndx = 0; ndx < arguments.length; ndx++ ) |
|
||||||
{ |
|
||||||
var attrName = arguments[ndx]; |
|
||||||
delete gTagAttrs[attrName]; |
|
||||||
delete gTagAttrs["emb#" + attrName]; |
|
||||||
delete gTagAttrs["obj#" + attrName]; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// generate an embed and object tag, return as a string
|
|
||||||
function _QTGenerate(callingFcnName, generateXHTML, args) |
|
||||||
{ |
|
||||||
// is the number of optional arguments even?
|
|
||||||
if ( args.length < 4 || (0 != (args.length % 2)) ) |
|
||||||
{ |
|
||||||
_QTComplain(callingFcnName, gArgCountErr); |
|
||||||
return ""; |
|
||||||
} |
|
||||||
|
|
||||||
// allocate an array, fill in the required attributes with fixed place params and defaults
|
|
||||||
gTagAttrs = new Array(); |
|
||||||
gTagAttrs["src"] = args[0]; |
|
||||||
gTagAttrs["width"] = args[1]; |
|
||||||
gTagAttrs["height"] = args[2]; |
|
||||||
gTagAttrs["classid"] = "clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"; |
|
||||||
gTagAttrs["pluginspage"] = "http://www.apple.com/quicktime/download/"; |
|
||||||
|
|
||||||
// set up codebase attribute with specified or default version before parsing args so
|
|
||||||
// anything passed in will override
|
|
||||||
var activexVers = args[3] |
|
||||||
if ( (null == activexVers) || ("" == activexVers) ) |
|
||||||
activexVers = "6,0,2,0"; |
|
||||||
gTagAttrs["codebase"] = "http://www.apple.com/qtactivex/qtplugin.cab#version=" + activexVers; |
|
||||||
|
|
||||||
var attrName, |
|
||||||
attrValue; |
|
||||||
|
|
||||||
// add all of the optional attributes to the array
|
|
||||||
for ( var ndx = 4; ndx < args.length; ndx += 2) |
|
||||||
{ |
|
||||||
attrName = args[ndx].toLowerCase(); |
|
||||||
attrValue = args[ndx + 1]; |
|
||||||
|
|
||||||
// "name" and "id" should have the same value, the former goes in the embed and the later goes in
|
|
||||||
// the object. use one array slot
|
|
||||||
if ( "name" == attrName || "id" == attrName ) |
|
||||||
gTagAttrs["name"] = attrValue; |
|
||||||
|
|
||||||
else
|
|
||||||
gTagAttrs[attrName] = attrValue; |
|
||||||
} |
|
||||||
|
|
||||||
// init both tags with the required and "special" attributes
|
|
||||||
var objTag = '<object ' |
|
||||||
+ _QTAddObjectAttr("classid") |
|
||||||
+ _QTAddObjectAttr("width") |
|
||||||
+ _QTAddObjectAttr("height") |
|
||||||
+ _QTAddObjectAttr("codebase") |
|
||||||
+ _QTAddObjectAttr("name", "id") |
|
||||||
+ _QTAddObjectAttr("tabindex") |
|
||||||
+ _QTAddObjectAttr("hspace") |
|
||||||
+ _QTAddObjectAttr("vspace") |
|
||||||
+ _QTAddObjectAttr("border") |
|
||||||
+ _QTAddObjectAttr("align") |
|
||||||
+ _QTAddObjectAttr("class") |
|
||||||
+ _QTAddObjectAttr("title") |
|
||||||
+ _QTAddObjectAttr("accesskey") |
|
||||||
+ _QTAddObjectAttr("noexternaldata") |
|
||||||
+ '>\n' |
|
||||||
+ _QTAddObjectParam("src", generateXHTML); |
|
||||||
var embedTag = ' <embed ' |
|
||||||
+ _QTAddEmbedAttr("src") |
|
||||||
+ _QTAddEmbedAttr("width") |
|
||||||
+ _QTAddEmbedAttr("height") |
|
||||||
+ _QTAddEmbedAttr("pluginspage") |
|
||||||
+ _QTAddEmbedAttr("name") |
|
||||||
+ _QTAddEmbedAttr("align") |
|
||||||
+ _QTAddEmbedAttr("tabindex"); |
|
||||||
|
|
||||||
// delete the attributes/params we have already added
|
|
||||||
_QTDeleteTagAttrs("src","width","height","pluginspage","classid","codebase","name","tabindex", |
|
||||||
"hspace","vspace","border","align","noexternaldata","class","title","accesskey"); |
|
||||||
|
|
||||||
// and finally, add all of the remaining attributes to the embed and object
|
|
||||||
for ( var attrName in gTagAttrs ) |
|
||||||
{ |
|
||||||
attrValue = gTagAttrs[attrName]; |
|
||||||
if ( null != attrValue ) |
|
||||||
{ |
|
||||||
embedTag += _QTAddEmbedAttr(attrName); |
|
||||||
objTag += _QTAddObjectParam(attrName, generateXHTML); |
|
||||||
} |
|
||||||
}
|
|
||||||
|
|
||||||
// end both tags, we're done
|
|
||||||
return objTag + embedTag + '> </em' + 'bed>\n</ob' + 'ject' + '>'; |
|
||||||
} |
|
||||||
|
|
||||||
// return the object/embed as a string
|
|
||||||
function QT_GenerateOBJECTText() |
|
||||||
{ |
|
||||||
return _QTGenerate("QT_GenerateOBJECTText", false, arguments); |
|
||||||
} |
|
||||||
|
|
||||||
function QT_GenerateOBJECTText_XHTML() |
|
||||||
{ |
|
||||||
return _QTGenerate("QT_GenerateOBJECTText_XHTML", true, arguments); |
|
||||||
} |
|
||||||
|
|
||||||
function QT_WriteOBJECT() |
|
||||||
{ |
|
||||||
document.writeln(_QTGenerate("QT_WriteOBJECT", false, arguments)); |
|
||||||
} |
|
||||||
|
|
||||||
function QT_WriteOBJECT_XHTML() |
|
||||||
{ |
|
||||||
document.writeln(_QTGenerate("QT_WriteOBJECT_XHTML", true, arguments)); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 49 B |
@ -1,86 +0,0 @@ |
|||||||
<public:component lightWeight="true"> |
|
||||||
<public:attach event="onpropertychange" onevent="propertyChanged()" /> |
|
||||||
<public:attach event="onbeforeprint" onevent="beforePrint()" for="window"/> |
|
||||||
<public:attach event="onafterprint" onevent="afterPrint()" for="window"/> |
|
||||||
<script> |
|
||||||
|
|
||||||
/* |
|
||||||
* PNG Behavior |
|
||||||
* |
|
||||||
* This script was created by Erik Arvidsson (http://webfx.eae.net/contact.html#erik) |
|
||||||
* for WebFX (http://webfx.eae.net) |
|
||||||
* Copyright 2002-2004 |
|
||||||
* |
|
||||||
* For usage see license at http://webfx.eae.net/license.html |
|
||||||
* |
|
||||||
* Version: 1.02 |
|
||||||
* Created: 2001-??-?? First working version |
|
||||||
* Updated: 2002-03-28 Fixed issue when starting with a non png image and |
|
||||||
* switching between non png images |
|
||||||
* 2003-01-06 Fixed RegExp to correctly work with IE 5.0x |
|
||||||
* 2004-05-09 When printing revert to original |
|
||||||
* |
|
||||||
*/ |
|
||||||
|
|
||||||
var supported = /MSIE ((5\.5)|[6789])/.test(navigator.userAgent) && |
|
||||||
navigator.platform == "Win32"; |
|
||||||
|
|
||||||
var realSrc; |
|
||||||
//var blankSrc = "blank.gif"; |
|
||||||
var isPrinting = false; |
|
||||||
|
|
||||||
if (supported) fixImage(); |
|
||||||
|
|
||||||
function propertyChanged() { |
|
||||||
if (!supported || isPrinting) return; |
|
||||||
|
|
||||||
var pName = event.propertyName; |
|
||||||
if (pName != "src") return; |
|
||||||
// if not set to blank |
|
||||||
if (!new RegExp(blankSrc).test(src)) |
|
||||||
fixImage(); |
|
||||||
}; |
|
||||||
|
|
||||||
function fixImage() { |
|
||||||
// get src |
|
||||||
var src = element.src; |
|
||||||
|
|
||||||
// check for real change |
|
||||||
if (src == realSrc && /\.png$/i.test(src)) { |
|
||||||
element.src = blankSrc; |
|
||||||
return; |
|
||||||
} |
|
||||||
|
|
||||||
if ( ! new RegExp(blankSrc).test(src)) { |
|
||||||
// backup old src |
|
||||||
realSrc = src; |
|
||||||
} |
|
||||||
|
|
||||||
// test for png |
|
||||||
if (/\.png$/i.test(realSrc)) { |
|
||||||
// set blank image |
|
||||||
element.src = blankSrc; |
|
||||||
// set filter |
|
||||||
element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft." + |
|
||||||
"AlphaImageLoader(src='" + src + "',sizingMethod='scale')"; |
|
||||||
} |
|
||||||
else { |
|
||||||
// remove filter |
|
||||||
element.runtimeStyle.filter = ""; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
function beforePrint() { |
|
||||||
isPrinting = true; |
|
||||||
element.src = realSrc; |
|
||||||
element.runtimeStyle.filter = ""; |
|
||||||
realSrc = null; |
|
||||||
} |
|
||||||
|
|
||||||
function afterPrint() { |
|
||||||
isPrinting = false; |
|
||||||
fixImage(); |
|
||||||
} |
|
||||||
|
|
||||||
</script> |
|
||||||
</public:component> |
|
@ -1,631 +0,0 @@ |
|||||||
/*<group=General Styles>*/ |
|
||||||
|
|
||||||
body { |
|
||||||
background: transparent none; |
|
||||||
margin: 0px 5% 0px 5%; |
|
||||||
text-align: left; |
|
||||||
color: #000000; |
|
||||||
letter-spacing: 0.5px; |
|
||||||
word-spacing: 1px; |
|
||||||
padding: 0px; |
|
||||||
font: 10pt Geneva, Arial, Helvetica; |
|
||||||
} |
|
||||||
|
|
||||||
p { |
|
||||||
} |
|
||||||
|
|
||||||
b, strong { |
|
||||||
font-weight: bold; |
|
||||||
} |
|
||||||
|
|
||||||
a:link, a:visited { |
|
||||||
} |
|
||||||
|
|
||||||
a:hover, a:active { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Layout>*/ |
|
||||||
|
|
||||||
#container {
text-align: left; |
|
||||||
width: 100%; |
|
||||||
padding: 10px 0 0 0; |
|
||||||
margin: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader img { |
|
||||||
float: right; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader h1 { |
|
||||||
color: #000000; |
|
||||||
margin: 0px; |
|
||||||
font-weight: bold; |
|
||||||
font-size: 16pt; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader h2 { |
|
||||||
color: #333333; |
|
||||||
margin: 0px; |
|
||||||
font-size: 13pt; |
|
||||||
font-weight: normal; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer { |
|
||||||
float: none !important; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer #content { |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer #content img { |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer { |
|
||||||
float: right; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer .sidebar { |
|
||||||
width: 190px; |
|
||||||
padding: 10px; |
|
||||||
border-left: 1px solid #cccccc; |
|
||||||
} |
|
||||||
|
|
||||||
#footer { |
|
||||||
text-align: center; |
|
||||||
background: none; |
|
||||||
color: #000000; |
|
||||||
font-size: 10pt; |
|
||||||
border-top: 1px solid #cccccc; |
|
||||||
margin-top: 10px; |
|
||||||
padding-top: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
#footer a { |
|
||||||
} |
|
||||||
|
|
||||||
#footer a:hover { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=toolbar>*/ |
|
||||||
|
|
||||||
#navcontainer { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Bread-crumb>*/ |
|
||||||
|
|
||||||
#breadcrumbcontainer { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Global Classes>*/ |
|
||||||
|
|
||||||
.standout { |
|
||||||
color: #474747; |
|
||||||
font-size: 11pt; |
|
||||||
font-weight: bold; |
|
||||||
letter-spacing: 1px; |
|
||||||
word-spacing: 2px; |
|
||||||
padding: 40px; |
|
||||||
background-color: #f5f5f5; |
|
||||||
font-style: italic; |
|
||||||
} |
|
||||||
|
|
||||||
h1 { |
|
||||||
font-size: 20pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h2 { |
|
||||||
font-size: 18pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h3 { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h4 { |
|
||||||
font-size: 14pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h5 { |
|
||||||
font-size: 12px; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.imageStyle { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Blog>*/ |
|
||||||
|
|
||||||
.blog-entry { |
|
||||||
border-style: none; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
border-style: none; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-date { |
|
||||||
margin-bottom: 10px; |
|
||||||
margin-top: 5px; |
|
||||||
border-style: none; |
|
||||||
font-size: 10pt; |
|
||||||
color: #333333; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-body { |
|
||||||
margin-bottom: 45px; |
|
||||||
border-style: none; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=File Sharing>*/ |
|
||||||
|
|
||||||
.filesharing-description { |
|
||||||
margin-bottom: 20px; |
|
||||||
border-bottom: 1px solid #d9d9d9; |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-description { |
|
||||||
margin-bottom: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Photo Album>*/ |
|
||||||
|
|
||||||
/*<group=Index Page (Thumbnail view)>*/ |
|
||||||
|
|
||||||
.album-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.album-description { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame { |
|
||||||
margin: 0px; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame a { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame a:hover { |
|
||||||
height: 30px; |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame img { |
|
||||||
background: repeat url(images/sidebar_bg.png); |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-caption { |
|
||||||
color: #4c4c4c; |
|
||||||
margin-top: -2px; |
|
||||||
font-size: 10pt; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Single Page (Photo view)>*/ |
|
||||||
|
|
||||||
.photo-background { |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation { |
|
||||||
background: none; |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation a { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation a:hover { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-frame{ |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.photo-links { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-title { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-caption { |
|
||||||
font-size: 11pt; |
|
||||||
margin: 0px; |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Quicktime Page>*/ |
|
||||||
|
|
||||||
.movie-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
text-align: left; |
|
||||||
} |
|
||||||
|
|
||||||
.movie-description { |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
.movie-frame { |
|
||||||
text-align: center; |
|
||||||
margin-bottom: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=General Styles>*/ |
|
||||||
|
|
||||||
body { |
|
||||||
background: transparent none; |
|
||||||
margin: 0px 5% 0px 5%; |
|
||||||
text-align: left; |
|
||||||
color: #000000; |
|
||||||
letter-spacing: 0.5px; |
|
||||||
word-spacing: 1px; |
|
||||||
padding: 0px; |
|
||||||
font: 10pt Georgia, Times New Roman, Times, serif; |
|
||||||
} |
|
||||||
|
|
||||||
p { |
|
||||||
} |
|
||||||
|
|
||||||
b, strong { |
|
||||||
font-weight: bold; |
|
||||||
} |
|
||||||
|
|
||||||
a:link, a:visited { |
|
||||||
} |
|
||||||
|
|
||||||
a:hover, a:active { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Layout>*/ |
|
||||||
|
|
||||||
#container {
text-align: left; |
|
||||||
width: 100%; |
|
||||||
padding: 0px; |
|
||||||
margin: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader { |
|
||||||
text-align: left; |
|
||||||
background: none; |
|
||||||
border-bottom: 1px solid #cccccc; |
|
||||||
padding-bottom: 10px; |
|
||||||
margin-bottom: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader img { |
|
||||||
float: right; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader h1 { |
|
||||||
color: #000000; |
|
||||||
margin: 0px; |
|
||||||
font-weight: bold; |
|
||||||
font-size: 16pt; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#pageHeader h2 { |
|
||||||
color: #333333; |
|
||||||
margin: 0px; |
|
||||||
font-size: 13pt; |
|
||||||
font-weight: normal; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer { |
|
||||||
float: none !important; |
|
||||||
padding: 0px; |
|
||||||
margin-bottom: 10px; |
|
||||||
border-bottom: 1px solid #cccccc; |
|
||||||
padding-bottom: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer #content { |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
#contentContainer #content img { |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer { |
|
||||||
float: none; |
|
||||||
width: auto; |
|
||||||
} |
|
||||||
|
|
||||||
#sidebarContainer .sidebar { |
|
||||||
} |
|
||||||
|
|
||||||
#footer { |
|
||||||
text-align: center; |
|
||||||
background: none; |
|
||||||
color: #000000; |
|
||||||
font-size: 10pt; |
|
||||||
border-top: 1px solid #cccccc; |
|
||||||
margin-top: 10px; |
|
||||||
padding-top: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
#footer a { |
|
||||||
} |
|
||||||
|
|
||||||
#footer a:hover { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=toolbar>*/ |
|
||||||
|
|
||||||
#navcontainer { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Bread-crumb>*/ |
|
||||||
|
|
||||||
#breadcrumbcontainer { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Global Classes>*/ |
|
||||||
|
|
||||||
.standout { |
|
||||||
color: #474747; |
|
||||||
font-size: 11pt; |
|
||||||
font-weight: bold; |
|
||||||
letter-spacing: 1px; |
|
||||||
word-spacing: 2px; |
|
||||||
padding: 40px; |
|
||||||
background-color: #f5f5f5; |
|
||||||
font-style: italic; |
|
||||||
} |
|
||||||
|
|
||||||
h1 { |
|
||||||
font-size: 20pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h2 { |
|
||||||
font-size: 18pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h3 { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h4 { |
|
||||||
font-size: 14pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
h5 { |
|
||||||
font-size: 12px; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.imageStyle { |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Blog>*/ |
|
||||||
|
|
||||||
.blog-entry { |
|
||||||
border-style: none; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
border-style: none; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-date { |
|
||||||
margin-bottom: 10px; |
|
||||||
margin-top: 5px; |
|
||||||
border-style: none; |
|
||||||
font-size: 10pt; |
|
||||||
color: #333333; |
|
||||||
} |
|
||||||
|
|
||||||
.blog-entry-body { |
|
||||||
margin-bottom: 45px; |
|
||||||
border-style: none; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=File Sharing>*/ |
|
||||||
|
|
||||||
.filesharing-description { |
|
||||||
margin-bottom: 20px; |
|
||||||
border-bottom: 1px solid #d9d9d9; |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
} |
|
||||||
|
|
||||||
.filesharing-item-description { |
|
||||||
margin-bottom: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Photo Album>*/ |
|
||||||
|
|
||||||
/*<group=Index Page (Thumbnail view)>*/ |
|
||||||
|
|
||||||
.album-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
margin-bottom: 3px; |
|
||||||
} |
|
||||||
|
|
||||||
.album-description { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame { |
|
||||||
margin: 0px; |
|
||||||
padding: 0px; |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame a { |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame a:hover { |
|
||||||
height: 30px; |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-frame img { |
|
||||||
background: repeat url(images/sidebar_bg.png); |
|
||||||
} |
|
||||||
|
|
||||||
.thumbnail-caption { |
|
||||||
color: #4c4c4c; |
|
||||||
margin-top: -2px; |
|
||||||
font-size: 10pt; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Single Page (Photo view)>*/ |
|
||||||
|
|
||||||
.photo-background { |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation { |
|
||||||
background: none; |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation a { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-navigation a:hover { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-frame{ |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
.photo-links { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-title { |
|
||||||
display: none; |
|
||||||
} |
|
||||||
|
|
||||||
.photo-caption { |
|
||||||
font-size: 11pt; |
|
||||||
margin: 0px; |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
/*<group=Quicktime Page>*/ |
|
||||||
|
|
||||||
.movie-title { |
|
||||||
font-size: 16pt; |
|
||||||
font-weight: bold; |
|
||||||
text-align: left; |
|
||||||
} |
|
||||||
|
|
||||||
.movie-description { |
|
||||||
text-align: center; |
|
||||||
} |
|
||||||
|
|
||||||
.movie-frame { |
|
||||||
text-align: center; |
|
||||||
margin-bottom: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
/*</group>*/ |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,54 @@ |
|||||||
|
|
||||||
|
.main {margin:0 auto; width:800px; padding-top:10px; } |
||||||
|
|
||||||
|
|
||||||
|
.g320,.g480,.g640,.g960,.g80,.g240,.g400,.g560,.g720,.g880,.g960 {float:left; display: inline; padding-top: 10px;} |
||||||
|
|
||||||
|
.g800 {float:left; display: inline; width:800px;} |
||||||
|
|
||||||
|
.g200 {float:left; display: inline; width:190px; padding-top: 10px; padding-left: 10px;} |
||||||
|
.g200left {float:left; display: inline; width:190px; padding-top: 10px; padding-left: 5px} |
||||||
|
|
||||||
|
.g160 {width:150px; } |
||||||
|
.g320 {width:310px;} |
||||||
|
.g480 {width:470px;} |
||||||
|
.g600 {width:600px;} |
||||||
|
.g640 {width:630px;} |
||||||
|
.g800 {width:790px;} |
||||||
|
.g960 {width:950px;} |
||||||
|
|
||||||
|
.g80 {width:70px;} |
||||||
|
.g240 {width:230px;} |
||||||
|
.g400 {width:390px;} |
||||||
|
.g560 {width:550px;} |
||||||
|
.g720 {width:710px;} |
||||||
|
.g880 {width:870px;} |
||||||
|
|
||||||
|
.ml80{margin-left:90px;} |
||||||
|
.ml160{margin-left:170px;} |
||||||
|
.ml240{margin-left:250px;} |
||||||
|
.ml320{margin-left:330px;} |
||||||
|
.ml400{margin-left:410px;} |
||||||
|
.ml480{margin-left:490px;} |
||||||
|
.ml560{margin-left:560px;} |
||||||
|
.ml640{margin-left:650px;} |
||||||
|
.ml720{margin-left:730px;} |
||||||
|
.ml800{margin-left:810px;} |
||||||
|
.ml880{margin-left:890px;} |
||||||
|
.ml960{margin-left:970px;} |
||||||
|
|
||||||
|
.inside{margin-left:0;} |
||||||
|
|
||||||
|
p.grid{ padding-left:10px;} |
||||||
|
|
||||||
|
.clear {clear:both;} |
||||||
|
.clearfix, .main{ display:block;} |
||||||
|
|
||||||
|
.clearfix:after, .main:after { |
||||||
|
visibility: hidden; |
||||||
|
display: block; |
||||||
|
font-size: 0; |
||||||
|
content: " "; |
||||||
|
clear: both; |
||||||
|
height: 0; |
||||||
|
} |
@ -0,0 +1,29 @@ |
|||||||
|
html, body, div, span, object, iframe, |
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre, |
||||||
|
a, abbr, acronym, address, code, |
||||||
|
del, dfn, em, img, q, dl, dt, dd, ol, ul, li, |
||||||
|
fieldset, form, label, legend, |
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
border: 0; |
||||||
|
font-weight: inherit; |
||||||
|
font-style: inherit; |
||||||
|
font-size: 100%; |
||||||
|
font-family: inherit; |
||||||
|
vertical-align: baseline; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/* Tables still need 'cellspacing="0"' in the markup. */ |
||||||
|
table { border-collapse: separate; border-spacing: 0; } |
||||||
|
caption, th, td { text-align: left; font-weight: normal; } |
||||||
|
table, td, th { vertical-align: middle; } |
||||||
|
|
||||||
|
/* Remove possible quote marks (") from <q>, <blockquote>. */ |
||||||
|
blockquote:before, blockquote:after, q:before, q:after { content: ""; } |
||||||
|
blockquote, q { quotes: "" ""; } |
||||||
|
|
||||||
|
/* Remove annoying border on linked images. */ |
||||||
|
a img { border: none; } |
||||||
|
|
@ -0,0 +1,94 @@ |
|||||||
|
|
||||||
|
body { font:75%/1.5em "lucida grande","lucida sans unicode", sans-serif;} |
||||||
|
|
||||||
|
p { padding:0 0 1em 0;color:#111;} |
||||||
|
|
||||||
|
|
||||||
|
p.first:first-letter{ float:left;font-family: Palatino,'Palatino Linotype',Georgia, sans-serif;font-size:3em;font-weight:700;line-height:1em;margin-bottom:-0.2em;padding:0.2em 0.1em 0 0; } |
||||||
|
p img { float: left; margin: 0.3em 0.833em 0.833em 0; padding: 0; } |
||||||
|
p img.right { float: right; margin: 0.3em 0 0.833em 0.833em; } |
||||||
|
|
||||||
|
|
||||||
|
h1,h2{ line-height: normal; font-family: Helvetica, Verdana, Arial, sans-serif; font-weight:normal; color: #333; } |
||||||
|
h3,h4,h5,h6 { font-family: Helvetica, Verdana, Arial, sans-serif; text-align: left; line-height: normal; font-weight: normal; color: #333; } |
||||||
|
|
||||||
|
|
||||||
|
h1 { font-size: 2.2em; margin-bottom: 0.682em; } |
||||||
|
h2 { font-size: 1.9em; margin-bottom: 0.79em; } |
||||||
|
h3 { font-size: 1.7em; margin-bottom: 0.882em; } |
||||||
|
h4 { font-size: 1.4em; margin-bottom: 1.071em; } |
||||||
|
h5,h6 { font-size: 1.2em; margin-bottom: 1.154em; } |
||||||
|
|
||||||
|
/* Color palete */ |
||||||
|
.water { color:#5582d1; } |
||||||
|
.earth { color:#4e3e2c; } |
||||||
|
.air { color:#f1fff7; } |
||||||
|
.fire { color:#ff8a19; } |
||||||
|
.wine { color:#4a040a; } |
||||||
|
.beer { color:#F0C030; } |
||||||
|
.caffe { color:#473523; } |
||||||
|
.caffe-cream { color:#b68d3d; } |
||||||
|
.espresso { color:#2c1901; } |
||||||
|
.caramel{ color:#ab671f; } |
||||||
|
.chocolate { color:#290200; } |
||||||
|
.black-pepper { color:#444334; } |
||||||
|
.pepper-lite { color:#8d8a72; } |
||||||
|
.lipstick { color:#c20c0c; } |
||||||
|
|
||||||
|
|
||||||
|
li ul, |
||||||
|
li ol { margin:0 1.5em; } |
||||||
|
ul, ol { margin: 0 1.5em 1.5em 1.5em; } |
||||||
|
|
||||||
|
|
||||||
|
dl { margin: 0 0 1.5em 0; } |
||||||
|
dl dt { font-weight: bold; } |
||||||
|
dl dd { margin-left: 1.5em; } |
||||||
|
|
||||||
|
a { color:#035292; text-decoration:none; } |
||||||
|
a:hover { text-decoration: underline; } |
||||||
|
|
||||||
|
|
||||||
|
table { margin-bottom:1.5em; border-collapse: collapse; } |
||||||
|
th { font-weight:bold; } |
||||||
|
tr,th,td { margin:0; padding:0 1.5em 0 1em; height:18px; } |
||||||
|
tfoot { font-style: italic; } |
||||||
|
caption { text-align:center; font-family:Georgia, serif; } |
||||||
|
|
||||||
|
|
||||||
|
abbr, acronym { border-bottom:1px dotted #000; } |
||||||
|
address { margin-top:1.5em; font-style: italic; } |
||||||
|
del {color:#000;} |
||||||
|
|
||||||
|
|
||||||
|
blockquote { padding:1em 1em 1em 1.5em; font-family:baskerville,"palatino linotype",serif; } |
||||||
|
blockquote > *:first-child:before { content:"\201C";font-size:2.5em;margin-left:-.62em;font-family:georgia,serif;padding-right:.2em;color:#aaa;line-height:0; }/* From Tripoli */ |
||||||
|
|
||||||
|
strong { ont-weight: bold; } |
||||||
|
em, dfn { font-style: italic; } |
||||||
|
dfn { font-weight: bold; } |
||||||
|
pre, code { margin: 1.5em 0; white-space: pre; } |
||||||
|
pre, code, tt { font: 1em monospace; line-height: 1.5; } |
||||||
|
tt { display: block; margin: 1.5em 0; } |
||||||
|
hr { margin-bottom:1.5em; } |
||||||
|
|
||||||
|
/*other small things */ |
||||||
|
|
||||||
|
.tc { text-align:center; } |
||||||
|
.tr { text-align:right; } |
||||||
|
.tl { text-align:left; } |
||||||
|
.b { font-weight:bold; } |
||||||
|
.i { font-style:italic; } |
||||||
|
|
||||||
|
.indent { text-indent:1.5em;} |
||||||
|
.open { font-variant: small-caps; } |
||||||
|
p.break { text-align:center;text-indent:0;line-height:0; } |
||||||
|
p.zero{padding:0; margin:0} |
||||||
|
p.one { padding:0 1em 1em 1em;color:#111;} |
||||||
|
p img.right10 { float: right; margin:0.833em; } |
||||||
|
|
||||||
|
.oldbook { font-family:"Book Antiqua","Warnock Pro","Goudy Old Style","Palatino",Georgia,serif; } |
||||||
|
.note { font-family:Georgia, "Times New Roman", Times, serif; font-style:italic; font-size:0.9em; margin:0.1em; color:#333; } |
||||||
|
.mono { font-family:"Courier New", Courier, monospace; } |
||||||
|
|
||||||
|
|
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 28 KiB |