diff --git a/generator/main.py b/generator/main.py index c5b96d4..e45691d 100644 --- a/generator/main.py +++ b/generator/main.py @@ -121,9 +121,9 @@ class extractData: for tag in appInfo["tags"]: html += '
  • ' + tag + '
  • \n' html += ( - '\n\n

    Download

    \n\n' + '">Download

    \n
    \n\n' ) WriteTextFiles( diff --git a/website/css/main.css b/website/css/main.css index f9555d7..4384a26 100644 --- a/website/css/main.css +++ b/website/css/main.css @@ -49,11 +49,11 @@ h1 { text-align: center; } -#color1 { -color: #0c007e; +#downloadButton a { +color: Crimson; } -#color1 a:hover { +#downloadButton a:hover { color: DarkGoldenRod; } diff --git a/website/js/search.js b/website/js/search.js index 3f4f1bb..fb4ab26 100644 --- a/website/js/search.js +++ b/website/js/search.js @@ -43,7 +43,9 @@ var search = { var html = '

    '+app.name+'

    \n

    \n

    Summary

    \n

    '+app.summary+'

    \n
    \n

    Description

    \n

    '+app.description+'

    \n
    \n

    Tags

    \n\n
    \n'; + html += '\n\n

    Download

    \n'; return html; },