From 948b85c9d58d14868c65a95fe83f5790c5f6590a Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 15 May 2013 01:19:59 +0200 Subject: [PATCH] Add some CSS to make things not entirely horrible. --- itkacl-web-1.0/web/header.html | 2 ++ itkacl-web-1.0/web/itkacl.css | 36 ++++++++++++++++++++++++++++++++++ itkacl-web-1.0/web/style.css | 20 +++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 itkacl-web-1.0/web/itkacl.css create mode 100644 itkacl-web-1.0/web/style.css diff --git a/itkacl-web-1.0/web/header.html b/itkacl-web-1.0/web/header.html index abb99a3..f25353b 100644 --- a/itkacl-web-1.0/web/header.html +++ b/itkacl-web-1.0/web/header.html @@ -7,6 +7,8 @@ %TITLE% + + diff --git a/itkacl-web-1.0/web/itkacl.css b/itkacl-web-1.0/web/itkacl.css new file mode 100644 index 0000000..c8bec7d --- /dev/null +++ b/itkacl-web-1.0/web/itkacl.css @@ -0,0 +1,36 @@ +div.floatingtree { + float: right; + border-left: 1px solid navy; + padding-left: 1em; + margin-left: 1em; + margin-bottom: 1em; + min-height: 100%; + width: 17em; + background: white; +} +.tree { + font-family: ms sans serif, sans-serif; + font-size: 12px; +} +.tree img { + vertical-align: middle; + border: 0px; +} +.tree p { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tree a:link, .tree a:visited { + text-decoration: underline; + color: navy; +} +.tree a:hover { + text-decoration: none; +} + +img { + border:0; +} + diff --git a/itkacl-web-1.0/web/style.css b/itkacl-web-1.0/web/style.css new file mode 100644 index 0000000..ec38c3b --- /dev/null +++ b/itkacl-web-1.0/web/style.css @@ -0,0 +1,20 @@ +body { + font-family: sans-serif; + margin:0; + padding:10px 20px 20px 20px; +} + +/* Headers */ +h1 { + border-bottom:2px solid #ddd; + padding:10px 0 5px 0; + margin:0 0 30px 0; + color:#000; +} +h2 { + font-size:130%; + margin:0 0 10px 0; + padding:15px 0 5px 0; + border-bottom: 1px solid #ddd; + color:#000; +} -- 2.39.2