diff options
author | Lars Thorsén <[email protected]> | 2017-04-26 14:42:31 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-04-26 14:42:31 +0200 |
commit | 157317c25b20e8af3d61fa833fa9554ceb9bb968 (patch) | |
tree | d81659e077eed0c353bd4dd435846ffd545a123e /system/doc/top/templates/applications.html.src | |
parent | b1df6219d51a56cb934d91225af9d8f78931c3ce (diff) | |
parent | 7bbfffcef7b7c81d1797a0d66c0fdfd3a646f5a9 (diff) | |
download | otp-157317c25b20e8af3d61fa833fa9554ceb9bb968.tar.gz otp-157317c25b20e8af3d61fa833fa9554ceb9bb968.tar.bz2 otp-157317c25b20e8af3d61fa833fa9554ceb9bb968.zip |
Merge pull request #1215 from marianoguerra/improve-docs-style
Merge PR-1215 from 'marianoguerra/improve-docs-style'
OTP-14371
Improve Documentation Style
Diffstat (limited to 'system/doc/top/templates/applications.html.src')
-rw-r--r-- | system/doc/top/templates/applications.html.src | 56 |
1 files changed, 39 insertions, 17 deletions
diff --git a/system/doc/top/templates/applications.html.src b/system/doc/top/templates/applications.html.src index 1f73c44d69..7e939ddcd6 100644 --- a/system/doc/top/templates/applications.html.src +++ b/system/doc/top/templates/applications.html.src @@ -24,31 +24,53 @@ limitations under the License. <title>Erlang/OTP #version# Applications</title> <style type="text/css"> <!-- - BODY { background: white } + BODY { background: #fefefe; color: #111; } - BODY { font-family: Verdana, Arial, Helvetica, sans-serif } - TH { font-family: Verdana, Arial, Helvetica, sans-serif } - TD { font-family: Verdana, Arial, Helvetica, sans-serif } - P { font-family: Verdana, Arial, Helvetica, sans-serif } + BODY { font-family: sans-serif } - .header { background: #222; color: #fff } - .app { background: #ccc } + .header { background: #333; color: #fefefe; } - a.anum:link { color: green; text-decoration: none } - a.anum:active { color: green; text-decoration: none } - a.anum:visited { color: green; text-decoration: none } + a:link { color: #303f9f; text-decoration: none } + a:active { color: #303f9f; text-decoration: none } + a:visited { color: #303f9f; text-decoration: none } - a:link { text-decoration: none } - a:active { text-decoration: none } - a:visited { text-decoration: none } + h1,h2{ + text-align: center; + } + table { + margin: 1em 10%; + width: 80%; + border-collapse: collapse; + min-width: 50%; + } + + table, th, td { + border: 1px solid #666; + } + + th, td { + padding: 0.5em; + text-align: left; + } + + tr:hover { + background-color: #f5f5f5; + } + + tr:nth-child(even) { + background-color: #f2f2f2; + } + + th { + background-color: #777; + color: #fefefe; + } --> </style> </head> -<body bgcolor=white text="#000000" link="#0000ff" vlink="#ff00ff" - alink="#ff0000"> -<center> +<body> + <h1>Erlang/OTP Applications</h1> #groups# -</center> </body> </html> |