diff options
author | Mariano Guerra <[email protected]> | 2016-10-21 16:44:28 +0100 |
---|---|---|
committer | Mariano Guerra <[email protected]> | 2017-03-13 11:51:52 +0100 |
commit | c46da866eb1a6396ae1d670436dd6d87b4b8e442 (patch) | |
tree | 61e5f8b9bbee4a435fbc07e677be6412f0b343c3 /system/doc/top/templates/applications.html.src | |
parent | db41a7fe2ebbc44c7fa16835630c11fe78a9cc4a (diff) | |
download | otp-c46da866eb1a6396ae1d670436dd6d87b4b8e442.tar.gz otp-c46da866eb1a6396ae1d670436dd6d87b4b8e442.tar.bz2 otp-c46da866eb1a6396ae1d670436dd6d87b4b8e442.zip |
improve applications and modules list styles
Diffstat (limited to 'system/doc/top/templates/applications.html.src')
-rw-r--r-- | system/doc/top/templates/applications.html.src | 54 |
1 files changed, 38 insertions, 16 deletions
diff --git a/system/doc/top/templates/applications.html.src b/system/doc/top/templates/applications.html.src index 1f73c44d69..001234ad32 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 } - .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> |