Commit a2d3b51ba12ec86e791075a776b6feb9302fc3dd

Authored by Melissa Wen
1 parent 7e30eceb
Exists in master and in 79 other branches add_sisp_to_chef, add_super_archives_plugin, api_for_colab, automates_core_packing, backup_not_prod, changes_in_buttons_on_content_panel, colab_automated_login, colab_spb_plugin_recipe, colab_widgets_settings, design_validation, dev_env_minimal, disable_email_dev, fix_breadcrumbs_position, fix_categories_software_link, fix_edit_institution, fix_edit_software_with_another_license, fix_get_license_info, fix_gitlab_assets_permission, fix_list_style_inside_article, fix_list_style_on_folder_elements, fix_members_pagination, fix_merge_request_url, fix_models_translations, fix_no_license, fix_software_api, fix_software_block_migration, fix_software_communities_translations, fix_software_communities_unit_test, fix_style_create_institution_admin_panel, fix_superarchives_imports, fix_sym_links_noosfero, focus_search_field_theme, gov-user-refactoring, gov-user-refactoring-rails4, header_fix, institution_modal_on_rating, kalibro-conf-refactoring, kalibro-processor-package, lxc_settings, margin_fix, mezuro_cookbook, prezento, refactor_download_block, refactor_software_communities, refactor_software_for_sisp, register_page, release-process, release-process-v2, remove-unused-images, remove_broken_theme, remove_secondary_email_from_user, remove_sisp_buttons, removing_super_archives_email, review_message, scope2method, signals_user_noosfero, sisp_catalog_header, sisp_colab_config, sisp_dev, sisp_dev_master, sisp_simple_version, software_as_organization, software_catalog_style_fix, software_communities_html_refactor, software_infos_api, spb_minimal_env, spb_to_rails4, spec_refactor, stable-4.1, stable-4.2, stable-4.x, temp_soft_comm_refactoring, theme_header, theme_javascript_refactory, thread_dropdown, thread_page, update_search_by_categories, update_software_api, update_softwares_boxes

Sitemap and help pages style

Showing 1 changed file with 79 additions and 0 deletions   Show diff stats
css/article-page.css
... ... @@ -24,6 +24,10 @@
24 24 line-height: 21px;
25 25 }
26 26  
  27 +#content .main-block .article-body a {
  28 + color: #2c66ce;
  29 +}
  30 +
27 31 /* For software internal pages */
28 32  
29 33 #content .main-block .article-body h2 {
... ... @@ -90,3 +94,78 @@
90 94 }
91 95  
92 96 /*** end of categories ***/
  97 +
  98 +/*** Site Map page ***/
  99 +
  100 +#content .main-block .article-body #sitemap{
  101 + overflow: auto;
  102 +}
  103 +
  104 +#content .main-block .article-body #sitemap a{
  105 + text-decoration: initial;
  106 +}
  107 +
  108 +#content .main-block .article-body #sitemap ul{
  109 + padding-top: 20px;
  110 + font-weight: 700;
  111 +}
  112 +
  113 +#content .main-block .article-body #sitemap li{
  114 + padding-left: 10px;
  115 + font-weight: 500;
  116 +}
  117 +
  118 +#content .main-block .article-body #sitemap #first-half{
  119 + float: left;
  120 + width: 40%;
  121 +}
  122 +
  123 +#content .main-block .article-body #sitemap #second-half{
  124 + float: left;
  125 + padding-top: 50px;
  126 + width: 40%;
  127 +}
  128 +
  129 +/*** end of sitemap page ***/
  130 +
  131 +/*** Help page ***/
  132 +
  133 +#content .main-block .article-body ul.help-list li {
  134 + list-style-type: none;
  135 + padding-bottom: 5px;
  136 +}
  137 +
  138 +#content .main-block .article-body ul.help-list li a[href="#faq"]:before {
  139 + content: url('../images/arrow-globe-icon.png');
  140 + padding-right: 5px;
  141 + vertical-align: middle;
  142 +}
  143 +
  144 +#content .main-block .article-body ul.help-list li a[href="#lista-discussao"]:before {
  145 + content: url('../images/balloon-icon.png');
  146 + padding-left: 3px;
  147 + padding-right: 6px;
  148 + vertical-align: middle;
  149 +}
  150 +
  151 +#content .main-block .article-body ul.help-list li a {
  152 + color: #2c66ce;
  153 + font-size: 15px;
  154 +}
  155 +
  156 +#content .main-block .article-body ul.help-list {
  157 + padding-top: 21px;
  158 + border-top: 1px solid #D3D6DE;
  159 +}
  160 +
  161 +#content .main-block .article-header h1.help-page-title {
  162 + margin-top: 0px;
  163 + margin-bottom: 30px;
  164 + padding-top: 0px;
  165 + line-height: 30px;
  166 + border-top: none;
  167 + letter-spacing: -0.1px;
  168 + font-size: 26px;
  169 +}
  170 +
  171 +/*** end of help page ***/
... ...