mirror of
https://github.com/boostorg/website.git
synced 2026-01-27 19:32:16 +00:00
94 lines
2.3 KiB
CSS
Executable File
94 lines
2.3 KiB
CSS
Executable File
/*=============================================================================
|
|
|
|
Boostbook Green Style
|
|
|
|
Copyright (c) 2006-2007 Matias Capeletto
|
|
|
|
Use, modification and distribution is subject to the Boost Software
|
|
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
Acknowledgments:
|
|
This css is based on ideas from stylesheets from Joel De Guzman and
|
|
Rene Rivera.
|
|
|
|
|
|
=============================================================================*/
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------------
|
|
Headings
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
h1, h2, h3, h4, h5, h6
|
|
{
|
|
text-align: left;
|
|
margin: 1em 0em 0.5em 0em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
h1 { font: 140% }
|
|
h2 { font: bold 140% }
|
|
h3 { font: bold 130% }
|
|
h4 { font: bold 120% }
|
|
h5 { font: italic 110% }
|
|
h6 { font: italic 100% }
|
|
|
|
/* Top page titles */
|
|
title,
|
|
h1.title,
|
|
h2.title,
|
|
h3.title,
|
|
h4.title,
|
|
h5.title,
|
|
h6.title,
|
|
.refentrytitle
|
|
{
|
|
font-weight: bold;
|
|
margin-bottom: 1pc;
|
|
}
|
|
|
|
h1.title { font-size: 140% }
|
|
h2.title { font-size: 140% }
|
|
h3.title { font-size: 130% }
|
|
h4.title { font-size: 120% }
|
|
h5.title { font-size: 110% }
|
|
h6.title { font-size: 100% }
|
|
|
|
.section h1
|
|
{
|
|
margin: 0em 0em 0.5em 0em;
|
|
font-size: 140%;
|
|
}
|
|
|
|
.section h2 { font-size: 140% }
|
|
.section h3 { font-size: 130% }
|
|
.section h4 { font-size: 120% }
|
|
.section h5 { font-size: 110% }
|
|
.section h6 { font-size: 100% }
|
|
|
|
/* Code on titles */
|
|
h1 tt.computeroutput { font-size: 140% }
|
|
h2 tt.computeroutput { font-size: 140% }
|
|
h3 tt.computeroutput { font-size: 130% }
|
|
h4 tt.computeroutput { font-size: 120% }
|
|
h5 tt.computeroutput { font-size: 110% }
|
|
h6 tt.computeroutput { font-size: 100% }
|
|
|
|
|
|
h3.author
|
|
{
|
|
font-size: 100%
|
|
}
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
|
|
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
|
|
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited
|
|
{
|
|
text-decoration: none; /* no underline */
|
|
color: #000000;
|
|
border: none;
|
|
}
|
|
|