diff options
author | Cesar G <prototech91@gmail.com> | 2014-05-27 09:26:49 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2015-02-25 20:08:03 -0800 |
commit | a07b29c1df8519e31401ec3d5f472c8a8f04431c (patch) | |
tree | 39102b9c831fbc319e388d047eb6fb79f26ca1d7 | |
parent | 6e5f33e5fb659350af2a5a3113295b1a91a60ddc (diff) | |
download | forums-a07b29c1df8519e31401ec3d5f472c8a8f04431c.tar forums-a07b29c1df8519e31401ec3d5f472c8a8f04431c.tar.gz forums-a07b29c1df8519e31401ec3d5f472c8a8f04431c.tar.bz2 forums-a07b29c1df8519e31401ec3d5f472c8a8f04431c.tar.xz forums-a07b29c1df8519e31401ec3d5f472c8a8f04431c.zip |
[ticket/12599] Place standalone text in a box.
PHPBB3-12599
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 5 | ||||
-rw-r--r-- | phpBB/docs/FAQ.html | 7 | ||||
-rw-r--r-- | phpBB/docs/INSTALL.html | 14 | ||||
-rw-r--r-- | phpBB/docs/README.html | 6 | ||||
-rw-r--r-- | phpBB/docs/assets/css/stylesheet.css | 4 | ||||
-rw-r--r-- | phpBB/docs/auth_api.html | 2 | ||||
-rw-r--r-- | phpBB/docs/coding-guidelines.html | 4 |
7 files changed, 33 insertions, 9 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 4649cea6ed..9710014b56 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -34,7 +34,10 @@ <!-- BEGIN DOCUMENT --> -<p>This is a non-exhaustive (but still near complete) changelog for phpBB 3.1.x including release candidate versions. Our thanks to all those people who've contributed bug reports and code fixes.</p> +<p class="paragraph main-description"> + This is a non-exhaustive (but still near complete) changelog for phpBB 3.1.x including release candidate versions. + Our thanks to all those people who've contributed bug reports and code fixes. +</p> <h1>Changelog</h1> diff --git a/phpBB/docs/FAQ.html b/phpBB/docs/FAQ.html index 409a7ce9be..0b3b421e72 100644 --- a/phpBB/docs/FAQ.html +++ b/phpBB/docs/FAQ.html @@ -35,7 +35,12 @@ <!-- BEGIN DOCUMENT --> - <p>This is a very basic Frequently Asked Questions (FAQ) page which attempts to answer some of the more commonly asked questions. It is by no means exhaustive and should be used in combination with the 'built-in' User FAQ within phpBB, the community forums and our IRC channel (see <a href="README.html">README</a> for details).</p> + <p class="paragraph main-description"> + This is a very basic Frequently Asked Questions (FAQ) page which attempts to answer some of the + more commonly asked questions. It is by no means exhaustive and should be used in combination with + the 'built-in' User FAQ within phpBB3, the community forums and our IRC channel + (see <a href="README.html">README</a> for details). + </p> <h1>FAQ</h1> diff --git a/phpBB/docs/INSTALL.html b/phpBB/docs/INSTALL.html index a122d22274..4050636b38 100644 --- a/phpBB/docs/INSTALL.html +++ b/phpBB/docs/INSTALL.html @@ -35,12 +35,18 @@ <!-- BEGIN DOCUMENT --> -<p><strong>Please read this document completely before proceeding with installation, updating or converting.</strong></p> +<div class="paragraph"> + <p><strong>Please read this document completely before proceeding with installation, updating or converting.</strong></p> -<p>This document will walk you through the basics on installing, updating and converting the forum software.</p> - -<p>A basic overview of running phpBB can be found in the accompanying <a href="README.html">README</a> file. Please ensure you read that document in addition to this! For more detailed information on using, installing, updating and converting phpBB you should read <a href="https://www.phpbb.com/support/docs/en/3.1/ug/">the documentation</a> available online.</p> + <p>This document will walk you through the basics on installing, updating and converting the forum software.</p> + <p> + A basic overview of running phpBB can be found in the accompanying <a href="README.html">README</a> file. + Please ensure you read that document in addition to this! For more detailed information on using, installing, + updating and converting phpBB you should read <a href="https://www.phpbb.com/support/docs/en/3.1/ug/">the documentation</a> + available online. + </p> +</div> <h1>Install</h1> <div class="paragraph menu"> diff --git a/phpBB/docs/README.html b/phpBB/docs/README.html index 8a9e2f4a17..f5ac3ecacd 100644 --- a/phpBB/docs/README.html +++ b/phpBB/docs/README.html @@ -34,7 +34,11 @@ <!-- BEGIN DOCUMENT --> - <p>Thank you for downloading phpBB. This README will guide you through the basics of installation and operation of phpBB. Please ensure you read this and the accompanying documentation fully <strong>before</strong> proceeding with the installation.</p> + <p class="paragraph main-description"> + Thank you for downloading phpBB. This README will guide you through the basics of installation + and operation of phpBB. Please ensure you read this and the accompanying documentation fully + <strong>before</strong> proceeding with the installation. + </p> <h1>Readme</h1> diff --git a/phpBB/docs/assets/css/stylesheet.css b/phpBB/docs/assets/css/stylesheet.css index 5e4a4535f1..192a6f9f79 100644 --- a/phpBB/docs/assets/css/stylesheet.css +++ b/phpBB/docs/assets/css/stylesheet.css @@ -178,6 +178,10 @@ a#logo:hover { color: #000000; } +.main-description { + font-size: 1.15em; +} + .content { color: #333333; } diff --git a/phpBB/docs/auth_api.html b/phpBB/docs/auth_api.html index 6de7a7d12e..6dd697166b 100644 --- a/phpBB/docs/auth_api.html +++ b/phpBB/docs/auth_api.html @@ -35,7 +35,7 @@ <!-- BEGIN DOCUMENT --> - <p>This is an explanation of how to use the phpBB auth/acl API.</p> + <p class="paragraph main-description">This is an explanation of how to use the phpBB auth/acl API.</p> <h1>Auth API</h1> diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html index 8e7da53025..ecbae68fe2 100644 --- a/phpBB/docs/coding-guidelines.html +++ b/phpBB/docs/coding-guidelines.html @@ -35,7 +35,9 @@ <!-- BEGIN DOCUMENT --> -<p>These are the phpBB Coding Guidelines for Ascraeus, all attempts should be made to follow them as closely as possible.</p> +<p class="paragraph main-description"> + These are the phpBB Coding Guidelines for Ascraeus, all attempts should be made to follow them as closely as possible. +</p> <h1>Coding Guidelines</h1> |