diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 9f4c784..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-# backup files
-*~
-*.swp
diff --git a/README.md b/README.md
deleted file mode 100644
index 2ea6179..0000000
--- a/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-PSB Theme for Noosfero
-================================
-
-Noosfero theme for the _Portal do Software Público_ project.
-
-Install on /public/designs/themes/noosfero-spb-theme
\ No newline at end of file
diff --git a/categories.html.erb b/categories.html.erb
deleted file mode 100644
index d6393c8..0000000
--- a/categories.html.erb
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/css/administration-panel.css b/css/administration-panel.css
deleted file mode 100644
index 558ffaf..0000000
--- a/css/administration-panel.css
+++ /dev/null
@@ -1,159 +0,0 @@
-/*** Environment Admin Pages - General Rules ***/
-.action-admin_panel-index #content .main-block h2,
-.controller-features #content .main-block h2{
- font-family: Arial;
- font-size: 22px;
- font-weight: 700;
- line-height: 21px;
-}
-
-/* Environment Settings */
-
-/* Profile tab */
-
-.action-admin_panel-site_info .main-content .ui-tabs{
- border: none;
-}
-
-.action-admin_panel-site_info .main-content .ui-tabs .ui-tabs-nav{
- margin: 0 0 0 1em;
- padding: 0;
- background: none;
- color: #172738;
- border: 0px solid #aaaaaa;
- border-radius: 4px;
- font-weight: bold;
-}
-
-.action-admin_panel-site_info .main-content .ui-widget-content .ui-state-default,
-.action-admin_panel-site_info .main-content .ui-widget-header .ui-state-default{
- background: #d5d5d5 none;
- color: #555555;
- font-weight: normal;
-}
-
-.action-admin_panel-site_info .main-content .ui-widget-content .ui-state-active,
-.action-admin_panel-site_info .main-content .ui-widget-header .ui-state-active{
- background: #eeeff1;
- color: #212121;
- font-weight: normal;
-}
-
-.action-admin_panel-site_info .main-content .ui-tabs .ui-tabs-panel{
- display: block;
- padding: 1em 1.4em;
- background-color: #eeeff1;
- color: #777;
- border-width: 1px;
- font-size: 13px;
- text-decoration: none;
-}
-
-/* Organizations Settings */
-
-.action-organizations-index .main-block form#manage-profiles,
-.action-organizations-index .main-block form#manage-profiles form{
- background-color: transparent;
-}
-
-.action-organizations-index .main-block form#manage-profiles .search-field{
- margin-bottom: 30px;
-}
-
-.action-organizations-index .main-block form#manage-profiles .search-field .formfield {
- width: 100%;
- margin-right: 0.5em;
- float: left;
-}
-
-.action-organizations-index .main-block form#manage-profiles .search-field .formfield input {
- margin-top: 0px;
- margin-right: 0.5em;
- padding: 6px;
- min-width: 97%;
- height: 19px;
- max-height: 19px;
- background: none;
- border: 1px solid #ccc;
- border-radius: 4px;
-}
-
-.action-organizations-index .main-block form#manage-profiles input.button.submit{
- height: 32px;
- margin-top: 8px;
- padding: 5px 15px;
- background: #3E67B1 none;
- color: #FFF;
- border-radius: 4px;
- border: 1px solid #3E67B1;
- line-height: 22px;
- font-size: 14px;
- text-transform: uppercase;
-}
-
-.action-organizations-index .main-block form#manage-profiles input.button.submit:hover{
- background: #5E82C6;
-}
-
-.action-organizations-index .main-block #environment-profiles-filter-title,
-.action-organizations-index .main-block #environment-profiles-filter-filter{
- line-height: 35px;
- font-size: 12px;
-}
-
-.action-organizations-index .main-block table#organizations-list th{
- text-align: left;
- vertical-align: middle;
- padding: 2px 8px;
-}
-
-/*** Features Settings ***/
-
-.controller-features #content form *{
- font-size: 15px;
-}
-
-.controller-features #content th{
- text-align: left;
-}
-
-.controller-features #content h3{
- min-height: 0;
- margin: 20px auto 10px auto;
-}
-
-.controller-features #content hr{
- display: none;
-}
-
-.controller-features #content ul.token-input-list{
- padding: 6px;
- background: none;
- border: 1px solid #ccc;
- border-radius: 4px;
- font-family: Arial, helvetica;
- font-size: 15px;
-}
-
-/*** Community Admin pages ***/
-/* Homepage */
-.action-profile_editor-index #profile-editor-index h1.block-title{
- color: #172738;
- background-color: transparent;
- border-bottom: none;
- font-size: 2.3em;
- font-weight: bold;
- font-variant: normal;
- font-family: Arial, open_sansbold, Helvetica, sans-serif;
-}
-
-/* Index */
-.action-cms-index .cms-articles th{
- text-align: left;
-}
-
-/* Spam Index */
-.action-spam-index .ui-widget-header {
- border: none;
- background: none;
-}
diff --git a/css/animate.css b/css/animate.css
deleted file mode 100644
index 76810e6..0000000
--- a/css/animate.css
+++ /dev/null
@@ -1,68 +0,0 @@
-.animated {
- -webkit-animation-duration: .7s;
- animation-duration: .7s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-
-@-webkit-keyframes slideInDown {
- from {
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
- visibility: visible;
- }
-
- 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
-}
-
-@keyframes slideInDown {
- from {
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
- visibility: visible;
- }
-
- 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
-}
-
-.slideInDown {
- -webkit-animation-name: slideInDown;
- animation-name: slideInDown;
-}
-
-@-webkit-keyframes slideOutUp {
- from {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
-
- 100% {
- visibility: hidden;
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
- }
-}
-
-@keyframes slideOutUp {
- from {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
-
- 100% {
- visibility: hidden;
- -webkit-transform: translate3d(0, -100%, 0);
- transform: translate3d(0, -100%, 0);
- }
-}
-
-.slideOutUp {
- -webkit-animation-name: slideOutUp;
- animation-name: slideOutUp;
-}
diff --git a/css/article-page.css b/css/article-page.css
deleted file mode 100644
index ddace95..0000000
--- a/css/article-page.css
+++ /dev/null
@@ -1,256 +0,0 @@
-/*** General Definitions ***/
-#content .main-block #article-header h1.title{
- margin-bottom: 10px;
- padding: 0px 0px 10px 0px;
- color: #172738;
- border-bottom: 1px solid #D3D6DE;
- font-family: Arial, open_sansbold, Helvetica, sans-serif;
- font-size: 34px;
- font-variant: normal;
- font-weight: bold;
- line-height: 37px;
-}
-
-#content .main-block #article-header .publishing-info span{
- font-size: 12px;
- color: #172738;
- font-family: Arial;
-}
-
-#content .main-block .publishing-info a{
- color: #2C66CE;
- font-family: Arial;
-}
-
-#content .main-block .article-body {
- font-family: Arial ;
- font-size: 15px;
- line-height: 21px;
-}
-
-#content #article-parent{
- margin: 0px 0px 10px 0;
- font-style: normal;
- text-align: left;
-}
-
-#content #article-parent a.button.with-text{
- height: 18px;
- padding: 5px;
- background-color: #3E67B1;
- color: #FFF;
- border-radius: 4px;
- border: 1px solid #3E67B1;
- font-size: 12px;
- line-height: 18px;
- text-transform: none;
-}
-
-#content #article-parent a.button.with-text:hover{
- background-color: #5E82C6;
- border-color: #5E82C6;
-}
-
-#content #article-parent a.button.with-text::before{
- content: "\f053";
- font-family: FontAwesome;
- padding-right: 4px;
- padding-left: 2px;
- color: #ffffff;
- border-radius: 4px;
- text-align: center;
-}
-
-/* Need a dev solution - blog internal pages*/
-
-#article-header .preview{
- display: none;
-}
-
-#article-hits {
- display: none;
-
-}
-
-/* For software internal pages */
-
-#content .main-block .article-body h2 {
- margin-bottom: 20px;
- font-family: Arial;
- font-size: 16px;
- font-weight: bold;
- line-height: 21px;
-}
-
-#content .main-block .article-body h3 {
- margin-bottom: 20px;
- font-size: 15px;
- line-height: 21px;
- font-weight: bold;
- font-family: Arial;
-}
-
-#content .main-block .article-body p{
- margin-bottom: 22px;
- font-family: Arial;
-}
-
-#content .main-block .article-body .zoomable-image,
-#content .main-block .article-body img {
- display: block;
-}
-
-#content .main-block .article-body hr {
- height: 0;
- margin: 30px 0;
- border: 0;
- border-top: 1px solid rgba(0, 0, 0, 0.1);
- border-bottom: 1px solid rgba(255, 255, 255, 0.3);
-}
-
-#content .main-block .article-body #article-actions:last-child{
- margin: 0;
- padding: 10px 0;
- border-top: 3px solid #172938;
-}
-
-#content .main-block .article-body #article-actions {
- display: none;
-}
-
-/*** Categories ***/
-
-#content .main-block #article-cat{
- border-top: 4px solid #2C4B6B;
- border-bottom: 1px solid #D3D6DE;
-}
-
-#content .main-block #article-cat h4 {
- float: left;
- margin: 12px 10px 10px 0;
- min-height: 0px;
- color: #5E82C6;
- font-family: Arial;
- font-size: 12px;
- font-weight: 300;
- text-decoration: initial;
-}
-
-#content .main-block #article-cat a{
- display: inline-block;
- margin: 10px 10px 10px 0;
- padding: 3px 10px;
- color: #5E82C6;
- background-color: #ECEDF1;
- border: 1px solid #D3D6DE;
- border-radius: 3px;
- font-size: 12px;
- text-decoration: initial;
-}
-
-/*** Tags ***/
-
-#content .main-block #article-tags{
- display: none; /* wait to fix label */
- width: 100%;
- color: #5E82C6;
- border-bottom: 1px solid #D3D6DE;
- font-family: Arial;
- font-size: 12px;
- font-weight: 300;
- text-align: left;
-}
-
-#content .main-block #article-tags a{
- display: inline-block;
- margin: 10px 10px 10px 0;
- padding: 3px 10px;
- color: #5E82C6;
- background-color: #ECEDF1;
- border: 1px solid #D3D6DE;
- border-radius: 3px;
- font-size: 12px;
- text-decoration: initial;
-}
-
-/*** Site Map page ***/
-
-#content .main-block .article-body #sitemap{
- overflow: auto;
-}
-
-#content .main-block .article-body #sitemap a{
- text-decoration: initial;
-}
-
-#content .main-block .article-body #sitemap ul{
- padding-top: 20px;
- font-weight: 700;
-}
-
-#content .main-block .article-body #sitemap li{
- padding-left: 10px;
- font-weight: 500;
-}
-
-#content .main-block .article-body #sitemap #first-half{
- float: left;
- width: 40%;
-}
-
-#content .main-block .article-body #sitemap #second-half{
- float: left;
- padding-top: 50px;
- width: 40%;
-}
-
-/*** end of sitemap page ***/
-
-/*** Help page ***/
-
-#content .main-block .article-body ul.help-list li {
- list-style-type: none;
- padding-bottom: 5px;
-}
-
-#content .main-block .article-body ul.help-list li a[href="#faq"]:before {
- content: url('../images/arrow-globe-icon.png');
- padding-right: 5px;
- vertical-align: middle;
-}
-
-#content .main-block .article-body ul.help-list li a[href="#lista-discussao"]:before {
- content: url('../images/balloon-icon.png');
- padding-left: 3px;
- padding-right: 6px;
- vertical-align: middle;
-}
-
-#content .main-block .article-body ul.help-list li a {
- color: #2c66ce;
- font-size: 15px;
-}
-
-#content .main-block .article-body ul.help-list {
- padding-top: 21px;
- border-top: 1px solid #D3D6DE;
-}
-
-#content .main-block .article-header h1.help-page-title {
- margin-top: 0px;
- margin-bottom: 30px;
- padding: 0px;
- color: #172738;
- line-height: 30px;
- border: none;
- letter-spacing: -0.1px;
- font-family: Arial;
- font-size: 26px;
- font-variant: normal;
-}
-
-#content .main-block .article-body p a {
- color: #2c66ce;
-}
-
-/*** end of help page ***/
diff --git a/css/community-pages.css b/css/community-pages.css
deleted file mode 100644
index a866f4b..0000000
--- a/css/community-pages.css
+++ /dev/null
@@ -1,1130 +0,0 @@
-/*** Home page - profile page ***/
-.action-profile-index .main-content{
- padding:0px;
-}
-.action-profile-index .page-profile-header{
- display: block;
- border-bottom: 1px solid #D3D6DE;
- padding-bottom:30px;
- margin-bottom: 30px;
-}
-.action-profile-index .page-profile-header .join-leave-button.require-login-popup{
- float:left;
- width: 35%;
-}
-.action-profile-index #content .page-profile-header a.button.with-text {
- padding: 5px 15px;
- border: 1px solid #D3D6DE;
- text-transform: none;
- font-size: 12px;
-}
-.action-profile-index #content .page-profile-header .control-panel-button a{
- background:#3E67B1;
- color:#fff;
-}
-.action-profile-index #content .page-profile-header .control-panel-button a.button.with-text,
-.action-profile-index #content .page-profile-header .join-leave-button a:hover{
- border:1px solid #3E67B1;
-}
-
-
-
-/* Profile header */
-.profile-type-is-community .action-profile-index #content .main-block h1 {
- color: #172738;
- border-bottom: none;
- font-size: 2.3em;
- font-weight: bold;
- font-variant: normal;
- font-family: Arial, open_sansbold, Helvetica, sans-serif;
-}
-
-/* Search form - need to develop solution - hidden on profile page*/
-.profile-type-is-community .action-profile-index #public-profile-search{
- display: none;
-}
-
-.action-profile-index .main-block #public-profile-search,
-.action-profile-index .main-block #profile-search-results form,
-.action-profile-index .main-block .profile-search-block form {
- background-color: transparent;
-}
-
-.action-profile-index .main-block #public-profile-search .search-field .formfield {
- float: left;
- margin-right: 0.5em;
-}
-
-.action-profile-index .main-block #public-profile-search .search-field .formfield input {
- margin-top: 0px;
- margin-right: 0.5em;
- padding: 6px;
- height: 19px;
- max-height: 19px;
- border: 1px solid #D3D6DE;
- border-radius: 4px;
-}
-
-.action-profile-index .main-block #public-profile-search .formfield input,
-.action-profile-index .main-block #public-profile-search .formfield textarea{
- width: 100%;
- background: none #FFFFFF;
- color: #585858;
- border: 1px solid #DDDDDD;
- font-size: 16px;
- word-wrap: break-word;
-}
-
-.action-profile-index .main-block #public-profile-search form input.button.submit {
- height: 32px;
- margin-top: 8px;
- padding: 5px 15px;
- color: #ffffff;
- background: #2B51A8;
- border-radius: 4px;
- border: 1px solid #2B51A8;
- font-size: 14px;
- line-height: 14px;
- text-transform: uppercase;
-}
-
-/* Profile tab */
-.profile-type-is-community .action-profile-index .profile{
- display: none;
-}
-
-#block-community-tabs{
- font-family: Arial;
-}
-
-#block-community-tabs .ui-corner-all{
- overflow: visible;
-}
-
-#content #block-community-tabs .iu-widget{
- font-size: 0px ;
-}
-
-#block-community-tabs .ui-widget-header{
- background:#ECEDF1;
- border:none;
- border-bottom: 3px solid #D3D6DE;
-}
-
-#block-community-tabs .ui-widget-content{
- border:none;
- background:none;
-}
-
-#block-community-tabs .ui-corner-all{
- border-radius:0px;
-}
-
-#block-community-tabs .ui-state-default
-#block-community-tabs .ui-widget-content .ui-state-default,
-#block-community-tabs .ui-widget-header .ui-state-default{
- border:none;
- background:#ECEDF1;
- font-weight: normal;
- color:#172738;
-}
-
-#block-community-tabs .ui-tabs .ui-tabs-nav{
- font-size: 15px;
- padding:.2em .0em 0;
-}
-
-#block-community-tabs .ui-tabs .ui-tabs-nav .ui-tabs-anchor{
- float:none;
- display:table;
-}
-.profile-members-tabs-container .ui-tabs .ui-tabs-panel,
-#block-community-tabs .ui-tabs .ui-tabs-panel{
- padding: 0px;
-}
-
-#block-community-tabs .ui-tabs .ui-tabs-nav li a:visited{
- color:#172738;
-}
-
-#block-community-tabs .ui-tabs .ui-tabs-nav li{
- padding-right: 3px;
-}
-
-#block-community-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-active{
- margin-bottom: -3px !important;
- padding-bottom: 1px;
- border-bottom: 3px solid #FF0366;
-}
-
-#block-community-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-active.ui-state-active:before{
- content:"\f0dd";
- font-family: FontAwesome;
- font-size: 16px;
- position:absolute;
- top:26px;
- margin:0px 45%;
- color:#FF0366;
-}
-#block-community-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-active a{
- color: #FF0366;
- font-weight: 300;
-}
-
-/* Community's area tabs */
-
-#content #discussions-content{
- color:#172738;
-}
-
-#content #discussions-content .pull-left{
- float:none;
-}
-
-#content #discussions-content{
- font-family: Arial;
- font-size: 14px;
-}
-
-#content #discussions-content .message-discussion{
- border-bottom: 1px solid #ECEDF1;
- margin:0px 0px 8px 0px;
- padding:10px 0px 18px 0px;
-}
-
-#content #discussions-content .message-discussion .quiet:last-child{
- font-size: 16px;
- max-height: 50px;
- overflow: hidden;
-}
-
-#content #discussions-content h4{
- font-size: 22px;
- border-bottom: 1px solid #ECEDF1;
- padding: 8px 0px 6px 0px;
-}
-
-#discussions-content hr{
- display: none;
-}
-
-#discussions-content .quiet{
- line-height: 21px;
-}
-
-#discussions-content div.quiet:last-child{
- border-top:none;
-}
-
-#discussions-content .text-right{
- padding:6px 0px 25px 0px;
-}
-
-#discussions-content .text-right a{
- text-align: right;
- display: block;
- text-transform: uppercase;
- line-height: 21px;
- font-size: 11px;
-}
-
-#discussions-content .text-right a:visited,
-#content #discussions-content .text-right a:visited,
-#discussions-content .text-right dl.portlet a:visited{
- color: #172738;
-}
-
-#discussions-content .text-right a::after {
- content: "\f105";
- font-family: FontAwesome;
- padding-left: 7px;
- padding-right: 4px;
- color: #ffffff;
- background: #3E67B1;
- border-radius: 4px;
- font-size: 18px;
- line-height: 20px;
- text-align: center;
- margin-left: 5px;
- position: relative;
- top: 2px;
-}
-
-#content #discussions-content .pull-left a{
- color:#3E67B1;
- font-weight: 600;
-}
-
-#content #discussions-content .subject{
- font-weight: 800;
- font-size: 16px
-}
-
-#repository-feed-tab .event-inline.event-item{
- border-bottom: 1px solid #ECEDF1;
- margin-top:30px;
- padding: 0px 0px 80px 0px;
-}
-
-#repository-feed-tab .event-inline.event-item img{
- display: none;
-}
-
-#repository-feed-tab .event-item-timestamp{
- border-right: 1px dotted #D3D6DE;
- float:left;
- width: 112px;
- height: 55px;
- margin-right: 20px;
-}
-#repository-feed-tab .event-item-timestamp .time_ago{
- color:#172738;
-}
-
-#repository-feed-tab .event-item-timestamp .time_ago:before{
- content: url("../images/ic-calendar.png");
- margin-right: 10px;
- margin-top: 0px;
- float: left;
-}
-
-#repository-feed-tab .event-title{
- max-height: 55px;
- overflow: hidden;
- float:left;
- width: 70%;
- font-size: 16px;
-}
-
-#content #repository-feed-tab .author_name{
- display: block;
- padding-bottom: 5px;
- font-size: 12px;
-}
-
-#content #repository-feed-tab .author_name a{
- color:#3E67B1;
-}
-
-#repository-feed-tab .see-more-repository{
- text-align: right;
- display: block;
- text-transform: uppercase;
- line-height: 21px;
- font-size: 11px;
- margin-top: 15px;
-}
-
-#repository-feed-tab .see-more-repository:after{
- content: "\f105";
- font-family: FontAwesome;
- padding-left: 7px;
- padding-right: 4px;
- color: #ffffff;
- background: #3E67B1;
- border-radius: 4px;
- font-size: 18px;
- line-height: 20px;
- text-align: center;
- margin-left: 5px;
- position: relative;
- top: 2px;
-}
-
-
-#repository-feed-tab .see-more-repository a:visited,
-#content #repository-feed-tab .see-more-repository a:visited,
-#repository-feed-tab .see-more-repository dl.portlet a:visited{
- color:#172738;
-}
-
-/* Blog tab*/
-
-#content #blog-tab .blog-posts{
- margin-top:15px;
-}
-
-#content #blog-tab .blog .blog-post{
- background:none;
- border-bottom: 1px solid #ECEDF1;
- padding:25px 0px 12px 0px;
-}
-
-#content #blog-tab .blog .blog-post h1{
- margin: 0px 0px 10px 0px;
- padding: 0px 0px 0px 0px;
- max-width: 555px;
- max-height: 40px;
- border: none;
- font: normal normal bold 16px/20px Arial;
- overflow: hidden;
- display: inline-block;
-}
-
-#content #blog-tab .blog .blog-post .post-pic{
- margin:0 20px 5px 0px;
- border-radius: 4px;
- height: 62px;
- width: 19%;
- background: center/cover no-repeat;
- float: left;
-}
-#content #blog-tab .blog .blog-post .publishing-info {
- border-top: none;
- color: #172838;
- font: 13px/21px Arial;
-}
-
-#content #blog-tab .blog .publishing-info{
- display:inline;
- text-align: left;
-}
-#content #blog-tab .blog .blog-post .publishing-info .date {
- margin: 0px 0px 5px 0px;
- display: table-cell;
- font-size: 11px;
-}
-#content #blog-tab .blog .blog-post .author {
- display: none;
-}
-
-#content #blog-tab .blog .blog-post .comments{
- display: none;
-}
-
-#content #blog-tab .blog .blog-post .short-post {
- max-height: 35px;
- text-align: justify;
- text-overflow: ellipsis;
- overflow: hidden;
-}
-
-#content #blog-tab .blog .article-body p {
- margin: 0px 0px 5px 0px;
- max-height: 25px;
- color: #172738;
- text-align: left;
- text-overflow: ellipsis;
- font: 15px/21px Arial;
- overflow: hidden;
-}
-
-/*Post Position-1*/
-#content #blog-tab .blog .blog-post.position-1 h1{
- line-height: 37px;
- font-size: 22px;
- color: #172738;
- padding-left:0px;
- text-align: left;
-}
-#content #blog-tab .blog .blog-post.position-1 .date{
- padding-left:0px;
-}
-
-#content #blog-tab .blog .blog-post.position-1 .post-pic {
-margin: 0 20px 5px 0px;
-border-radius: 4px;
-height: 210px;
-width: 100%;
-background: center/cover no-repeat;
-float: left;
-}
-
-/* Read more button*/
-#content #blog-tab .blog .read-more{
- text-align: right;
- display: block;
- text-transform: uppercase;
- line-height: 21px;
- font-size: 11px;
- margin:15px 0px 20px 0px;
-}
-
-#content #blog-tab .blog .read-more:after{
- content: "\f105";
- font-family: FontAwesome;
- padding-left: 7px;
- padding-right: 4px;
- color: #ffffff;
- background: #172738;
- border-radius: 2px;
- font-size: 19px;
- line-height: 20px;
- text-align: center;
- margin-left: 5px;
- position: relative;
- top: 2px;
-}
-
-#content #blog-tab .blog .read-more a{
- text-decoration: none;
- color:#172735;
-}
-
-/* Software Tab Data - Need to develop solution - Only display on profile page */
-
-.profile-type-is-community #content .software-tab-data-block{
- display: none;
-}
-
-.profile-type-is-community .action-profile_design-index #content .software-tab-data-block,
-.profile-type-is-community .action-profile-index #content .software-tab-data-block{
- display: block;
-}
-
-/*** Right bar ***/
-
-.template-default.profile-type-is-community .action-profile-index #content .box-3 .link-list-block,
-.template-lefttopright.profile-type-is-community .action-profile-index #content .box-2 .link-list-block
- display: none;
-}
-
-/*Block with Community information - Need to develop solution - Only display on profile page */
-
-.profile-type-is-community .community-block{
- display: none;
-}
-
-.profile-type-is-community .action-profile_design-index #content .community-block,
-.profile-type-is-community .action-profile-index #content .community-block{
- display: block;
- border: 1px solid #ECEDF1;
- border-radius: 4px;
-}
-
-.profile-type-is-community #content .community-block-logo{
- border-bottom: 3px solid #3E67B1;
-}
-
-.profile-type-is-community #content .community-block-title{
- padding: 10px;
- background-color: #ECEDF1;
- border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-
-.profile-type-is-community #content .community-block-title h1{
- margin: 5px auto;
- font-size: 14px;
- line-height: 20px;
-}
-
-.profile-type-is-community #content .community-block-logo{
- padding: 10px;
-}
-
-.profile-type-is-community #content .community-block-logo img.logo{
- height: auto;
- width: 100px;
- min-width: 100px;
- max-width: 170px;
-}
-
-.profile-type-is-community #content .community-block-logo a{
- display: block;
- height: 100px;
- overflow: hidden;
- text-align: center;
-}
-
-/* Wiki block - Need to develop solution - Only display on profile page */
-.template-default #content .box-3 .wiki-block,
-.template-lefttopright #content .box-2 .wiki-block{
- display: none;
-}
-
-.template-default .action-profile-index #content .box-3 .wiki-block,
-.template-lefttopright .action-profile-index #content .box-2 .wiki-block,
-.template-default .action-profile_design-index #content .box-3 .wiki-block,
-.template-lefttopright .action-profile_design-index #content .box-2 .wiki-block{
- display: block;
-}
-
-/* Repository block and wiki block need to look a unique block */
-.action-profile-index #content .box-2 .block-outer .repository-block,
-.action-profile-index #content .box-3 .block-outer .repository-block{
- margin-bottom: 20px;
-}
-
-/*Block with Members information - Need to develop solution - Only display on profile page */
-
-.profile-type-is-community #content .members-block{
- display: none;
- border: 1px solid #D3D6DE;
- border-radius: 4px;
-}
-
-.profile-type-is-community .action-profile_design-index #content .members-block,
-.profile-type-is-community .action-profile-index #content .members-block{
- display: block;
-}
-
-.profile-type-is-community #content .members-block .block-title{
- padding: 12px;
- margin-bottom: 12px;
- background-color: #ECEDF1;
- color: #172738;
- border-bottom: 1px solid #D3D6DE;
- border-top: none;
- font-size: 14px;
-}
-
-.profile-type-is-community #content .members-block .block-footer-content{
- padding: 8px 10px 15px 0px;
- margin-right: 0px;
- background-color: #ECEDF1;
- border-top: 1px solid #D3D6DE;
- text-align: right;
-}
-
-.profile-type-is-community #content .members-block .block-footer-content a{
- padding-right: 0px !important;
-}
-
-.profile-type-is-community #content .members-block .block-footer-content a.view-all{
- background-image: none;
- border: none;
- text-transform: uppercase;
- line-height: 21px;
-}
-
-.profile-type-is-community #content .members-block .block-footer-content a.view-all::after{
- content: "\f105";
- position: relative;
- top: 2px;
- margin-left: 5px;
- padding-left: 7px;
- padding-right: 4px;
- color: #ffffff;
- background: #3E67B1;
- border-radius: 4px;
- font-family: FontAwesome;
- font-size: 18px;
- line-height: 20px;
- text-align: center;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block .vcard{
- border: none;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block .vcard:hover{
- background: none;
- border: none;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block .vcard li a{
- color: #172738;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block .vcard a.profile_link{
- /*height: 70px;*/
- height: 100px;
- max-height: 100px;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu{
- background: #172738;
- border-radius: 4px;
- /***side block position***/
- top: -39px;
- right: 100%;
- width: 131px;
- height: 176px;
- box-shadow: 2px 2px 2px #ECEDF1;
- -webkit-box-shadow: 2px 2px 2px #ECEDF1;
- -moz-box-shadow: 2px 2px 2px #ECEDF1;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu.down::before{
- content:"\f0da";
- float: right;
- position: relative;
- margin: -7px;
- margin-top: 30%;
- color: #172738;
- font-family: FontAwesome;
- font-size: 25px;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-header,
-.profile-type-is-community #content .members-block .menu-submenu-content,
-.profile-type-is-community #content .members-block .menu-submenu-footer{
- background: none;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-header,
-.profile-type-is-community #content .members-block .menu-submenu-footer{
- display: none;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-content{
- height: 100%;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block li{
- margin: 0px !important;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block .vcard .menu-submenu-trigger{
- display: block;
- height: 13px;
- top: 2px;
- left: 3px;
- padding-bottom: 0px;
- background: #172738;
- border: 1px solid #fff;
- opacity: 0.7;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block .vcard .menu-submenu-trigger::before{
- content: "\f053";
- color: #fff;
- font-family: FontAwesome;
- font-size: 8px;
- line-height: 11px;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block .fn {
- margin-top: 2px;
- color: #172738;
- max-height: 34px;
- overflow: hidden;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-content h4{
- max-height: 16px;
- padding: 8px 7px 10px 6px;
- margin: 0px 0px 2px 0px;
- background: #243F59;
- color: #fff;
- border-bottom: 2px solid #FF0366;
- border-radius: 4px 4px 0px 0px;
- font-family: Arial;
- font-size: 13px;
- text-transform: uppercase;
- text-align: center;
- overflow: hidden;
-}
-
-.profile-type-is-community #content .friends-block ul, #content .members-block ul {
- min-width: 196px;
- width: 192px;
- margin: 0px 0px 0px 0px;
- padding: 0px;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a{
- padding: 2px;
- color: #fff;
- border-bottom: 1px dotted #2C4B6B;
- text-align: center;
- line-height: 30px;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a.add-friend{
- border: none;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a.add-friend::before{
- content: "\f067";
- padding-right: 6px;
- color: #FF0366;
- font-family: FontAwesome;
- font-size: 11px;
-}
-
-.profile-type-is-community #content .members-block .menu-submenu-content h4:hover,
-.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a:hover{
- color: #ECEDF1;
-}
-
-.profile-type-is-community #content .members-block .common-profile-list-block img{
- width: 50px;
- height: 50px;
- max-height: 50px;
- max-width: 50px;
- border-radius: 4px;
-}
-
-.profile-type-is-community #content .members-block .block-footer-content a.view-all{
- position:relative;
-}
-
-/* Profile info block */
-
-#content .profile-image-block .admin-link a{
- color: #2c66ce;
-}
-
-#content .profile-image-block .profile-info-options{
- padding-right: 0;
- text-align: center;
-}
-
-#content .profile-image-block .profile-info-options a.button.with-text{
- border-color: #D3D6DE;
- font-size: 12px;
- text-transform: none;
-}
-
-#content .profile-image-block .profile-info-options a.button.with-text:hover{
- border-color: #3E67B1;
-}
-
-/*** Members Page ***/
-
-/* Title of the area members */
-.action-profile-members .box-1{
- width: 560px;
-}
-
-.action-profile-members #content .page-members-header{
- margin-bottom: 45px;
- border-bottom: 1px solid #D3D6DE;
- font-family: Arial;
- height: 150px;
-}
-
-.action-profile-members #content .page-members-header h1{
- margin:20px 0px 8px 0px;
-}
-
-.action-profile-members #content .page-members-header h3.community-name{
- margin: 0px 0px 5px 0px;
- font-size: 14px;
- font-weight: 300;
-}
-
-.action-profile-members #content .page-members-header ul li{
- float:left;
- margin:8px 0px 0px 0px;
- width: 36%;
-
-}
-
-.action-profile-members #content .page-members-header a.button.with-text{
- padding: 5px 15px;
- border: 1px solid #D3D6DE;
- text-transform: none;
- font-size: 12px;
- margin-right: 5px;
-}
-
-.action-profile-members #content .page-members-header a.button.with-text:hover{
- border-color: #3E67B1;
-}
-
-
-/* Tabs */
-
-.action-profile-members #content .profile-members-tabs-container{
- font-family: Arial;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-corner-all{
- overflow: visible;
- padding: 0;
-}
-
-.action-profile-members #content .profile-members-tabs-container .iu-widget{
- font-size: 0px ;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-widget-header{
- background: #ECEDF1;
- border: none;
- border-bottom: 3px solid #D3D6DE;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-widget-content{
- background: none;
- border: none;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-corner-all,
-.action-profile-members #content .profile-members-tabs-container .ui-corner-bl,
-.action-profile-members #content .profile-members-tabs-container .ui-corner-top,
-.action-profile-members #content .profile-members-tabs-container .ui-corner-right,
-.action-profile-members #content .profile-members-tabs-container .ui-corner-bottom,
-.action-profile-members #content .profile-members-tabs-container .ui-corner-left,
-.action-profile-members #content .profile-members-tabs-container .ui-corner-tr,
-.action-profile-members #content .profile-members-tabs-container .ui-corner-tl{
- border-radius: 0px;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-state-default,
-.action-profile-members #content .profile-members-tabs-container .ui-widget-content .ui-state-default,
-.action-profile-members #content .profile-members-tabs-container .ui-widget-header .ui-state-default{
- border: none;
- background: #ECEDF1;
- font-weight: normal;
- color: #172738;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav {
- font-size: 15px;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav .ui-tabs-anchor{
- float: none;
- display: table;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li{
- padding-right: 3px;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li a:visited{
- color: #172738;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li.ui-tabs-active {
- margin-bottom: -3px;
- padding-bottom: 1px;
- border-bottom: 3px solid #FF0366;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li.ui-tabs-active.ui-state-active:before{
- content:"\f0dd";
- font-family: FontAwesome;
- font-size: 16px;
- position:absolute;
- top:26px;
- margin:0px 45%;
- color:#FF0366;
-}
-
-.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
- color: #FF0366;
- font-weight: 300;
-}
-
-/* Sort selection */
-.action-profile-members #profile-members-sort-options{
- font-size: 14px;
- text-align: right;
- margin:16px 15px 17px 6px;
- border-bottom: 1px solid #ECEDF1;
- padding-bottom:8px;
-}
-
-.action-profile-members #profile-members-sort-options label{
- font-weight: 700;
- color:#172738;
-}
-
-.action-profile-members #profile-members-sort-options select{
- background: none;
- border: 1px solid #D3D6DE;
- border-radius: 4px;
- padding: 4px 15px 4px 4px;
- margin: 0px 0px 0px 10px;
- font-size: 14px;
-}
-
-/* Members Tab */
-.action-profile-members .profile-members-tabs-container .profile-members{
- padding-left: 5px;
-}
-
-/* Admins Tab */
-.action-profile-members .profile-members-tabs-container .profile-admins{
- padding-left: 5px;
-}
-
-/* Profiles list*/
-.action-profile-members .common-profile-list-block .vcard{
- border: none;
-}
-
-.action-profile-members .common-profile-list-block .vcard:hover{
- border: none;
- background: none;
-}
-
-.action-profile-members .common-profile-list-block .vcard a{
- padding-bottom: 30px;
-}
-
-.action-profile-members .box-1 .common-profile-list-block span{
- margin-right: 9px;
- width: 90px;
- height: 86px;
-}
-
-.action-profile-members .common-profile-list-block img{
- border-radius: 4px;
- width: 82px;
- height: 82px;
- max-width: 150px;
- max-height: 150px;
-}
-
-.action-profile-members .menu-submenu{
- background:#172738;
- border-radius: 4px;
- /***side block position***/
- bottom:0px;
- right: 105%;
- width: 131px;
- height: 178px;
- box-shadow: 2px 2px 2px #ECEDF1;
- -webkit-box-shadow: 2px 2px 2px #ECEDF1;
- -moz-box-shadow: 2px 2px 2px #ECEDF1;
-}
-
-.action-profile-members .menu-submenu.down::before {
- content:"\f0da";
- color:#172738;
- font-family: FontAwesome;
- font-size: 25px;
- float: right;
- position: relative;
- margin:-7px;
- margin-top: 30%;
-}
-
-.action-profile-members .menu-submenu-header,
-.action-profile-members .menu-submenu-content,
-.action-profile-members .menu-submenu-footer{
- background:none;
-}
-
-.action-profile-members .menu-submenu-header,
-.action-profile-members .menu-submenu-footer{
- display: none;
-}
-
-.action-profile-members .menu-submenu-content{
- height: 100%;
-}
-
-.action-profile-members #content .menu-submenu-content h4{
- color:#fff;
- font-size: 13px;
- background:#243F59;
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- border-bottom: 2px solid #FF0366;
- text-transform: uppercase;
- padding:8px 7px 10px 6px;
- margin:0px 0px 2px 0px;
- text-align: center;
- max-height: 16px;
- overflow: hidden;
-}
-
-.action-profile-members #content .menu-submenu-content ul a{
- padding-left: 0px;
-}
-
-.action-profile-members #content .menu-submenu-content .menu-submenu-list .add-friend::before{
- content:"\f067";
- font-family: FontAwesome;
- color:#FF0366;
- font-size: 11px;
- padding-right: 6px;
-}
-
-.action-profile-members #content .menu-submenu-content .menu-submenu-list .add-friend:last-child{
- border-bottom:none;
-}
-
-.action-profile-members #content .menu-submenu-content .menu-submenu-list li a {
- color:#fff;
- font-family: Arial;
- font-size: 14px;
- border-bottom:1px dotted #2C4B6B;
- text-align: center;
- padding-top:8px;
- padding-bottom:10px;
- margin-right: 1px;
-}
-
-.action-profile-members .common-profile-list-block .vcard .menu-submenu-trigger{
- display: block;
- background:#172738;
- top:5px;
- left:4px;
- border:1px solid #172738;
- padding-bottom: 0px;
- border-radius: 5px;
- -moz-border-radius:5px;
- -webkit-border-radius:5px;
- height: 15px;
-}
-
-.action-profile-members .common-profile-list-block .vcard .menu-submenu-trigger::before{
- content:"\f053";
- color:#fff;
- font-family: FontAwesome;
- font-size: 10px;
- line-height: 11px;
-}
-
-.action-profile-members .box-1 .common-profile-list-block .fn{
- font-size: 14px;
- color:#172738;
- margin-bottom: 27px;
- margin-top:2px;
- height: 35px;
- max-height: 35px;
- overflow: hidden;
-}
-
-/*** Events ***/
-
-#content .article-body-event .event-card{
- border-top: 1px dotted #D3D6D3;
- background-repeat: no-repeat;
- width: 494px;
- height: 116px;
- margin-bottom: 30px;
-}
-
-#content .article-body-event .event-image{
- border-right: 1px dotted #D3D6DE;
-}
-
-#content .article-body-event .about-event > span{
- font-family: Arial;
- line-height: 13px;
-}
-
-#content .article-body-event .about-event .event-date{
- font-weight: bold;
- letter-spacing: 0.49px;
-}
-
-#content .article-body-event .about-event .event-address{
- margin-top: 19px;
-}
-
-#content .article-body-event .about-event .event-address span{
- margin-top: 4.4px;
- line-height: 14px;
- letter-spacing: 0.5px;
-}
-
-#content .article-body-event .event-link{
- letter-spacing: 0.48px;
-}
-
-#content .article-body-event .event-link a{
- text-decoration: underline;
-}
-
-#content .article-body-event .event-body .event-lead p{
- font-size: 16px;
- font-family: Arial;
- font-weight: bold;
- letter-spacing: -0.4px;
- line-height: 21px;
-}
-
-#content .article-body-event .event-body .event-content p{
- font-size: 15px;
- font-family: Arial;
- line-height: 22px;
-}
diff --git a/css/edition-pages.css b/css/edition-pages.css
deleted file mode 100644
index c5e2dae..0000000
--- a/css/edition-pages.css
+++ /dev/null
@@ -1,477 +0,0 @@
-/*** General Form Fields ***/
-
-/*** Edit Blog and Articles ***/
-
-.controller-cms #content .main-content h1{
- margin: 0 0 10px 0;
- padding: 0;
- color: #172738;
- border-bottom: none;
- font-family: Arial;
- font-size: 32px;
- font-weight: bold;
- font-variant: normal;
-}
-
-.controller-cms #content .main-content form{
- font-size: 14px;
- font-family: Arial;
-}
-
-.controller-cms #content .main-content form .required-field .pseudoformlabel,
-.controller-cms #content .main-content form .required-field label.formlabel:after {
- color: #FF0366;
- font-size: 14px;
- font-weight: 500;
-}
-
-.controller-cms #content .main-content .formlabel{
- display: inline-block;
- max-width: 100%;
- margin-bottom: 5px;
- padding: 10px 0 5px 0;
- color: #231f20;
- font-size: 14px;
-}
-
-.controller-cms #content .main-content .formfieldline .formfield code{
- display: block;
- width: auto;
- height: 30px;
- padding: 2px 0px 2px 0px;
- border: none;
- border-radius: 4px;
- font-size: 15px;
- font-family: Arial, helvetica;
-}
-
-.controller-cms #content .main-content .formfieldline .formfield code *{
- display: inline;
-}
-
-.controller-cms #content .main-content .formfieldline .formfield input[type="text"]{
- padding: 6px;
- color: #585858;
- background: #FFF;
- border: 1px solid #ccc;
- border-radius: 4px;
- font-size: 15px;
- font-family: Arial, helvetica;
-}
-
-.controller-cms #content .main-content .formfieldline textarea{
- padding: 6px;
- color: #585858;
- background: none;
- border: 1px solid #ccc;
- border-radius: 4px;
- font-family: Arial, helvetica;
- font-size: 15px;
-}
-
-.controller-cms #content .main-content .formfieldline .formfield code input[type="text"]:hover,
-.controller-cms #content .main-content .formfieldline .formfield code input[type="text"]:focus,
-.controller-cms #content .main-content .formfieldline textarea:hover,
-.controller-cms #content .main-content .formfieldline textarea:focus{
- border: 1px solid #172738;
-}
-
-.controller-cms #content .main-content .formfieldline .type-file .type-file .formlabel{
- display: none;
-}
-
-.controller-cms #content .main-content .formfieldline .type-file .type-file .type-text .formlabel{
- display: block;
-}
-
-.controller-cms #content .formfield #article_image_builder_uploaded_data,
-.controller-cms #content .formfield #article_image_builder_label{
- height: 19px;
- padding: 6px;
- background: none;
- border: 1px solid #ccc;
- border-radius: 4px;
- font-size: 12px;
- text-indent: 0px;
-}
-
-.controller-cms #content .formfield #article_image_builder_uploaded_data:hover,
-.controller-cms #content .formfield #article_image_builder_label:hover,
-.controller-cms #content .formfield #article_image_builder_uploaded_data:focus,
-.controller-cms #content .formfield #article_image_builder_label:focus{
- border: 1px solid #172738;
-}
-
-.controller-cms #content .formfield #fetch-external-feed{
- padding-left: 20px;
- border-radius: 4px;
-}
-
-.controller-cms #content .formfield #fetch-external-feed > input{
- height: 13px;
- margin: 8px 8px 8px 0px;
- vertical-align: middle;
- width: 13px;
-}
-
-.controller-cms #content .formfield #fetch-external-feed #external-feed-options #external-feed-options-only-once input{
- margin-right: 3px;
- width: 13px;
- vertical-align: middle;
-}
-
-.controller-cms #content .formfield #fetch-external-feed #external-feed-options #external-feed-options-only-once label{
- margin-right: 250px;
-}
-
-.controller-cms #content .main-content form label.formlabel,
-.controller-cms #content .main-content form .article-translation-field {
- font-size: 14px;
- margin-bottom: 5px;
- color: #231f20;
-}
-
-.controller-cms #content .main-content form .article-translation-field {
- margin-top: 25px;
- margin-bottom: 15px;
-}
-
-.controller-cms #content .main-content form .button-bar input{
- height: 30px;
- padding: 2px 15px;
- margin-right: 10px;
- color: #FFF;
- background: #3E67B1;
- font-size: 15px;
-}
-
-.controller-cms #content .main-content form .button-bar input:hover{
- background: #5E82C6;
- border: none;
-}
-
-.controller-cms #content .main-content form .button-bar input.button.with-text{
- height: 36px;
-}
-
-.controller-cms #content .main-content form .button-bar a.button{
- height: 30px;
- padding: 2px 15px;
- color: #3E67B1;
- background: #FFF;
- border: 1px solid #3E67B1;
- font-size: 14px;
- text-align: center;
-}
-
-.controller-cms #content .main-content form .button-bar a.button:hover{
- background: none;
- color: #3E67B1;
- border-color: #3E67B1;
-}
-
-.controller-cms #content .main-content form .box-title{
- font-size: 15px;
- font-family: Arial, helvetica;
-}
-
-.controller-cms #content .main-content #category-ajax-selector{
- border-style: dotted;
-}
-
-.controller-cms #content .main-content #category-ajax-selector label{
- font-size: 14px;
-}
-
-.controller-cms #content .main-content #category-ajax-selector .select-subcategory-link{
- background: #FFF;
- border: 1px solid #2C66CE;
- color: #2C66CE;
- padding: 3px;
-}
-
-.controller-cms #content .main-content #category-ajax-selector .select-subcategory-link:hover{
- background: #2C66CE;
- color: #FFF;
-}
-
-.controller-cms #content .main-content .inputosaurus-required{
- background: none;
- border: 1px solid #ccc;
-}
-
-.controller-cms #content .main-content .inputosaurus-required:hover,
-.controller-cms #content .main-content .inputosaurus-required:focus{
- border: 1px solid #172738;
-}
-
-.controller-cms #content .main-content .inputosaurus-required input:hover{
- background: none;
-}
-
-#content #edit-article-options h4 {
- font-family: "open_sansbold", Arial, Helvetica, sans-serif;
- font-size: 14px;
-}
-
-#content #edit-article-options div div {
- margin-top: 13px;
- margin-bottom: 13px;
-}
-
-/*** Article's edition page ***/
-
-#content .text-editor-sidebar .header{
- padding: 13px 10px;
- color: #172738;
- background: #D3D6DE;
- border-radius: 4px;
- font-size: 14px;
- font-weight: 300;
- font-family: Arial;
-}
-
-#content .text-editor-sidebar .header a.button.icon-vertical-toggle{
- padding: 0 15px;
- background: #3E67B1;
- color: #FFF;
- font-size: 14px;
- font-weight: 300;
- font-family: Arial;
-}
-
-#content .text-editor-sidebar .header a.button.icon-vertical-toggle:hover{
- background: #5E82C6;
-}
-
-#content .text-editor-sidebar-box{
- background: #ECEDF1;
- border-radius: 4px;
- border: 1px solid #D3D6DE;
-}
-
-/*New Software form*/
-
-.action-software_communities_plugin_myprofile-new_software #content.current-step h3 {
- color: #F50054;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content .main-block form input[type="text"] {
- display: block;
- height: 19px;
- padding: 6px;
- border: 1px solid #ccc;
- border-radius: 4px;
- width: 384px;
- font-size: 15px;
- font-family: arial, helvetica;
- color: #585858;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content .formfield input{
- background: none #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #585858;
- font-size: 16px;
- width: 76%;
- word-wrap: break-word;
- border-radius: 4px;
-}
-.action-software_communities_plugin_myprofile-new_software #content .main-content form label.formlabel.mandatory{
- font-size: 14px;
- margin-bottom: 5px;
- color: #231f20;
- font-weight: 300;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content .main-content form .required-field .formlabel.mandatory:after{
- color: #FF0366;
- font-weight: 500;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content .formfield textarea{
- background: none #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #585858;
- font-size: 16px;
- width: 100%;
- word-wrap: break-word;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content #finality textarea {
- resize: none;
- height: 100px;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content #software-hostname {
- float: left;
- display: inline-block;
- vertical-align: middle;
- background: #EEE;
- border: 1px solid #CFCFCF;
- line-height: 22px;
- padding: 0px 7px;
- color: #4A4A4A;
- font-size: 20px;
- text-transform: lowercase;
- min-width: 190px;
- border-spacing: 20px;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content .main-block form #profile_change_picture {
- padding: 0 15px 15px 15px;
- border: 1px dotted #ddd;
- margin-top: 10px;
-}
-
-.action-software_communities_plugin_myprofile-new_software #content .main-content form p .required-field {
- max-width: 500px;
- padding: 15px 20px;
- margin: 20px 0 30px 0;
- border: 1px dotted #ccc;
- border-left: 5px solid #FF0366;
- border-radius: 3px;
- display: block;
- background: #fff;
- line-height: 20px;
- font-size: 13px;
-}
-
-.action-software_communities_plugin_myprofile-new_software .explanation {
-font-style: italic;
-font-size: 10px;
-}
-
-/* new community form*/
-
-.action-memberships-new_community #content .main-block form input[type="text"] {
- display: block;
- height: 19px;
- padding: 6px;
- border: 1px solid #ccc;
- border-radius: 4px;
- width: 384px;
- font-size: 15px;
- font-family: arial, helvetica;
- color: #585858;
-}
-
-.action-memberships-new_community .formfield input{
- background: none #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #585858;
- font-size: 16px;
- width: 76%;
- word-wrap: break-word;
- border-radius: 4px;
-}
-
-.action-memberships-new_community #content .main-content form label.formlabel{
- font-size: 14px;
- margin-bottom: 5px;
- color:#231f20;
- font-weight: 300;
-}
-
-.action-memberships-new_community #content .main-content form .required-field .formlabel:after {
- color: #FF0366;
- font-weight: 500;
-}
-
-.action-memberships-new_community .formfield textarea{
- background: none #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #585858;
- font-size: 16px;
- width: 100%;
- word-wrap: break-word;
-}
-
-.action-memberships-new_community #content .main-block form #profile_change_picture {
- padding: 0 15px 15px 15px;
- border: 1px dotted #ddd;
- margin-top: 10px;
-}
-
-.action-memberships-new_community #content .main-content form p .required-field {
- max-width: 500px;
- padding: 15px 20px;
- margin: 20px 0 30px 0;
- border: 1px dotted #ccc;
- border-left: 5px solid #FF0366;
- border-radius: 3px;
- display: block;
- background: #fff;
- line-height: 20px;
- font-size: 13px;
-}
-
-/*Contact new form*/
-
-.action-contact-new #content .main-block form input[type="text"] {
- display: block;
- height: 19px;
- padding: 6px;
- border: 1px solid #ccc;
- border-radius: 4px;
- width: 384px;
- font-size: 15px;
- font-family: arial, helvetica;
- color: #585858;
-}
-
-.action-contact-new .formfield input{
- background: none #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #585858;
- font-size: 16px;
- width: 76%;
- word-wrap: break-word;
- border-radius: 4px;
-}
-
-.action-contact-new #content .main-content form label.formlabel{
- font-size: 14px;
- margin-bottom: 5px;
- color:#231f20;
- font-weight: 300;
-}
-
-.action-contact-new #content .main-content form .required-field .formlabel:after {
- color: #FF0366;
- font-weight: 500;
-}
-.action-contact-new #content .main-content form label.formlabel{
- font-size: 14px;
- margin-bottom: 5px;
- color:#231f20;
- font-weight: 300;
-}
-
-.action-contact-new #content .main-content form .required-field .formlabel:after {
- color: #FF0366;
- font-weight: 500;
-}
-
-
-.action-contact-new .formfield textarea{
- background: none #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #585858;
- font-size: 16px;
- width: 100%;
- word-wrap: break-word;
-}
-
-.action-contact-new #content .main-content form p .required-field {
- max-width: 500px;
- padding: 15px 20px;
- margin: 20px 0 30px 0;
- border: 1px dotted #ccc;
- border-left: 5px solid #FF0366;
- border-radius: 3px;
- display: block;
- background: #fff;
- line-height: 20px;
- font-size: 13px;
-}
\ No newline at end of file
diff --git a/css/footer.css b/css/footer.css
deleted file mode 100644
index c65eb10..0000000
--- a/css/footer.css
+++ /dev/null
@@ -1,208 +0,0 @@
-/******************Footer-Rodapé**********************************/
-#theme-footer {
- width: 100%;
- min-width: 960px;
-}
-
-#theme-footer a{
- color: #2c66ce;
-}
-
-#theme-footer a:hover{
- color: #2c66ce;
-}
-
-#theme-footer #footer-content {
- background: #fff;
-}
-
-#theme-footer #footer-logos {
- background: #0042b2;
- max-width: 100%;
- padding: 2em 0;
- height: 49px;
-}
-
-#theme-footer #footer-logos > div {
- max-width: 960px;
- margin: 0 auto;
-}
-
-#theme-footer #footer-logos a {
- display: block;
- height: 49px;
- float: left;
-}
-
-#theme-footer #footer-logos span {
- display: none;
-}
-
-#theme-footer #footer-logos .logo-acesso {
- background: transparent url(images/acesso-a-informacao.png) center center no-repeat;
- width: 107px;
-}
-
-#theme-footer #footer-logos .logo-brasil {
- background: transparent url(images/brasil.png) center center no-repeat;
- width: 153px;
-}
-
-#footer-logos .logo-sgpr {
- background: transparent url(images/sgpr.png) center center no-repeat;
- width: 187px;
- margin-right: 30px;
-}
-
-#theme-footer #footer-logos .institucionais {
- float: right;
-}
-
-#theme-footer #footer-license {
- max-width: 960px;
- margin: 0 auto;
- text-align: left;
- padding: 5px;
-}
-
-#theme-footer #footer-license p {
- color: #0d4094;
- text-align: left;
-}
-
-/***********Rodape Colab *********************/
-
-#theme-footer footer{
- display:block
-}
-
-#theme-footer footer {
- background:#d5d5d5;
-}
-
-#theme-footer footer .footer-atalhos {
- background:#fff;
- border-bottom: 2px;
-}
-
-#theme-footer footer .container2{
- width: 100%;
- margin-right:auto;
- margin-left:auto;
- *zoom:1;
- max-width: 960px;
-}
-
-#theme-footer .container2:before,
-#theme-footer .container2:after {
- display:table;
- content:"";
- line-height:0;
-}
-
-#theme-footer .container2:after {
- clear:both;
-}
-
-#theme-footer .voltar-ao-topo {
- margin-top: 1.915em;
- text-align: right;
-}
-
-#theme-footer footer .footer-atalhos a {
- margin-right:12px
-}
-
-#theme-footer footer .footer-atalhos .voltar-ao-topo a {
- color:#717782;
- padding-left: 20px;
- background: url(images/voltar-topo.png) no-repeat left center;
- color: #777;
- font-size: 15px;
-}
-
-#theme-footer footer .footer-atalhos .voltar-ao-topo a:hover {
- text-decoration:underline;
-}
-
-#theme-footer footer .row {
- margin-bottom: 20px;
- margin-left: auto;
- *zoom: 1;
- margin-right: auto;
-}
-
-#theme-footer .row:before,
-#theme-footer .row:after {
- display: table;
- content: "";
- line-height: 0;
-}
-
-#theme-footer .row:after {
- clear:both;
-}
-
-#theme-footer footer nav {
- border-left: 1px dotted #2c66ce;
- padding: 0 5px 0 10px
-}
-
-#theme-footer footer nav h2 {
- font-size: 18px;
- font-weight: bold;
- color: #2c66ce;
- line-height: 1.3em;
- padding: 0px;
- margin: 0 0 8px 0;
-}
-
-#theme-footer footer nav ul {
- margin-left: 0px;
-}
-
-#theme-footer footer nav li {
- display: block;
- padding-bottom: 3px;
-}
-
-#theme-footer footer nav a {
- font-size: 13px;
- color: #2c66ce;
- line-height: 1.7em;
- font-family: "open_sansregular", Arial, Helvetica, sans-serif;
-}
-
-#theme-footer footer nav a:hover {
- color: #2c66ce;
- text-decoration: underline;
-}
-
-#theme-footer footer .footer-menus {
- padding-bottom: 10px;
-}
-
-#theme-footer .span2 {
- width: 104px;
-}
-
-#theme-footer [class*="span"] {
- float:left;
- min-height: 1px;
- margin-left: 30px;
- margin-top: 30px;
-}
-
-#theme-footer .span3 {
- width:210px;
-}
-
-#theme-footer .hide {
- display:none;
-}
-
-#theme-footer .visible-phone {
- display:none !important;
-}
-
-/*****fim footer Colab*****/
diff --git a/css/header.css b/css/header.css
deleted file mode 100644
index 40a20d4..0000000
--- a/css/header.css
+++ /dev/null
@@ -1,301 +0,0 @@
-#theme-header {
- height: auto;
-}
-
-.header-content * {
- margin: 0;
- padding: 0;
- list-style: none;
- vertical-align: baseline;
-}
-
-.header-content li { display: inline; }
-
-.header-content #header {
- padding: 15px 0 0 0;
- color: #000;
- background-color:#f0f2f1;
- background-color:#ecedf1;
- background-image: -webkit-radial-gradient(center, ellipse cover, #f0f2f1 1%, #ecedf1 100%)
-}
-
-.header-content #header > div {
- max-width: 960px;
- min-width: 960px;
- margin: 0 auto;
-}
-
-.header-content #accessibility {
- display: block;
- float: left;
- font-family: arial;
- font-size: 10px;
- width: 50%;
-}
-
-.header-content #accessibility a {
- margin-right: 8px;
- color: #2c66ce;
-}
-
-.header-content #accessibility span {
- background: none repeat scroll 0 0 #2c66ce;
- color: #FFFFFF;
- padding: 0 3px;
-}
-
-/* logo */
-.header-content #logo {
- padding: 0;
- float: left;
- width: 50%;
-}
-
-.header-content #logo span {
- display: block;
-}
-
-.header-content #logo a {
- display: block;
- width: 100%;
- color: #03316f;
- margin: 1em 0px;
-}
-
-.header-content #logo a,
-.header-content #logo #portal-title {
- color: #03316f;
-}
-
-.header-content #logo #portal-title {
- background-image: url("../images/logotipo_spb_beta.svg");
- background-repeat: no-repeat;
- background-size: 370px;
- height: 78px;
- width: 374px;
- margin: 10px 0px 10px 0px;
-}
-
-.header-content #logo #portal-description {
- font-size: 1.2em;
- text-transform: uppercase;
-}
-
-/* Site Actions */
-.header-content #portal-siteactions {
- display: block;
- float: right;
- clear: left;
- padding-bottom: 2px;
- margin-top: -15px;
- font-size: 10px;
- text-align: center;
-}
-
-.header-content #portal-siteactions a {
- color:#2c66ce;
- text-decoration: none;
- padding: 4px 0 4px 10px;
- text-transform: uppercase;
- font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
-}
-
-.header-content #portal-siteactions a:hover {
- color: #03316f;
-}
-
-.header-content #portal-siteactions li {
- display: inline;
- margin: 0 5px 0 0;
- border-bottom: 1px dotted #2c66ce;
-}
-
-.header-content #portal-siteactions li a {
- padding: 4px 0px;
-}
-
-.header-content #siteaction-accessibility,
-.header-content #siteaction-contraste,
-.header-content li#siteaction-mapadosite {
- margin: 0px 48px 0px 0px;
-}
-
-/* Top links */
-.header-content #header #sobre {
- line-height: 30px;
- font-size: 12px;
- height: 30px;
- clear: both;
- background-color:#CFD0D2;
- max-width: 100%;
- margin: 0px auto;
- text-align: right;
- padding: 0 0 0 10px;
- border-right: none;
-}
-
-.header-content #sobre a {
- color: #2c66ce;
- font-family: 'Open Sans', Arial, Helvetica, sans-serif;
-}
-
-.header-content #links-rapidos{
- width: 960px;
- margin: 0 auto;
- font-color:#fff;
-}
-
-.header-content #link-faq a {
- border-right: 1px solid #2c66ce;
- padding: 0 10px;
-}
-
-.header-content #link-contact a {
- padding-left: 10px;
-}
-
-/* Searchbox */
-.header-content .LSBox {
- margin: 0;
- padding: 0;
- border: none;
-}
-
-.header-content input.searchField {
- -moz-appearance: none;
-}
-
-.header-content #portal-searchbox {
- clear: right;
- float: right;
- font-size: 80%;
- margin: 30px 0 15px;
- text-align: right;
- border-radius: 5px;
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border: 1px solid #CCCCCC;
- background: #fff;
- padding: 2px;
-}
-
-.header-content #portal-searchbox .searchField {
- padding: 0.45em;
- border-right: none;
- border: none;
- width: 171px;
-}
-
-.header-content #portal-searchbox form {
- white-space: nowrap;
-}
-
-.header-content #portal-searchbox label {
- font-weight: normal;
-}
-
-.header-content #searchGadget {
- width: 13em;
-}
-
-.header-content #header input.searchButton {
- padding: 0.3em;
- background: transparent;
- text-indent: -2000px;
- padding: 4px 15px;
- border: none;
-}
-
-.header-content #content input.searchField {
- margin-bottom: 1em;
-}
-
-.header-content #header input.searchButton {
- background-image: url("../images/search-button.png");
- background-position: 8px 2px;
- background-repeat: no-repeat;
- background-color: #ffffff;
-}
-
-.header-content #LSResult {
- z-index: 1;
- margin-top: 0.5%;
-}
-
-/* Social Icons */
-
-.header-content #social-icons {
- float: right;
- clear: right;
- margin: 0px 0px 17px;
-}
-
-.header-content #social-icons ul {
- display: table-row;
-}
-
-.header-content #social-icons li {
- float: right;
- width: 20px;
- margin-left: 4px;
- display: table-cell;
-}
-
-.header-content #social-icons li a {
- width: 20px;
- height: 20px;
- padding: 0px;
- display: inline-block;
- opacity: .85;
- border: none;
- background-repeat: no-repeat;
-}
-
-.header-content #social-icons span {
- display: none;
-}
-
-.header-content #sb_face,
-.header-content #sb_tweet,
-.header-content #sb_youtb,
-.header-content #sb_flickr {
- background: url(images/icones_home_branco.jpg) 0px;
-}
-
-.header-content #sb_flickr {
- background-position: -100px;
-}
-
-.header-content #sb_face {
- background-position: -12px;
-}
-
-.header-content #sb_tweet {
- background-position: -42px;
-}
-
-.header-content #sb_youtb {
- background-position: -71px;
-}
-
-.header-content #social-icons a:focus,
-.header-content #social-icons a:hover {
- opacity: 1;
- filter: alpha(opacity=100);
-}
-
-/* end of Social Icons */
-
-/**** disable html****/
-#barra-psocial {
- position: relative;
- height: 40px;
- margin: -3px 0px 0px 0px;
- border: none;
- background-color:rgb(236,237,241);
-}
-
-#barra-psocial li {
- float: left;
-}
-/********** end disable html *************/
diff --git a/css/home-page.css b/css/home-page.css
deleted file mode 100644
index c6829e7..0000000
--- a/css/home-page.css
+++ /dev/null
@@ -1,526 +0,0 @@
-/*** boxes sizes definition **/
-.action-home-index .box-1 {
- margin: 0px 0px 0px 210px;
- width: 490px;
-}
-
-.action-home-index .box-3 {
- width: 230px;
-}
-
-/*** end of boxes sizes definition **/
-
-/*** Box's patterns ***/
-
-.action-home-index .block-outer{
- margin-bottom: 45px;
-}
-
-/* Read More pattern */
-
-.action-home-index #content .box .block-outer .read-more{
- border-bottom: none;
- background: #eee;
- font: normal normal normal 10px 'open_sansregular', arial, helvetica, sans-serif;
- text-transform: uppercase;
- text-align: right;
-}
-
-.action-home-index #content .box .block-outer .read-more a{
- padding: 8px;
- line-height: 20px;
- color: #000000;
- display: block;
-}
-
-.action-home-index #content .box .block-outer .read-more a:hover{
- background: #dedede;
-}
-
-.action-home-index #content .box .block-outer .read-more a::after{
- margin-left: 7px;
- border-radius: 4px;
- padding: 0px 5px 0px 8px;
- line-height: 20px;
- color: #FFFFFF;
- font: 14px 'open_sansbold', arial, helvetica, sans-serif;
- text-align: center;
- content: url('../images/right-arrow.png');
-}
-
-
-/*** end of box patterns ***/
-
-/******************** Box-1 ********************/
-
-/*** Software catalog search block **/
-
-.action-home-index #content #catalogo-software-search{
- width: 100%;
- background-color: #1A397D;
- border-radius: 4px;
-}
-
-.action-home-index #content #catalogo-software-search h1{
- margin: 0px 15px 10px 15px;
- border-bottom: none;
- padding: 10px 0px 0px 0px;
- line-height: 1.3em;
- color: #FFFFFF;
- font: normal normal normal 22px 'open_sansregular', arial;
- text-align: left;
-}
-
-.action-home-index #content #catalogo-software-search #search-Gadget{
- margin: 0px 15px 9px 15px;
- border: none;
- border-radius: 4px;
- padding: 7px;
- width: 90%;
-}
-
-.action-home-index #content #catalogo-software-search .searchButton-catalog{
- cursor: pointer;
- margin: 0px 0px 15px 15px;
- padding: 6px 25px;
- border: 1px solid #FFFFFF;
- border-radius: 4px;
- background-color: #1A397D;
- color: #FFFFFF;
- font-weight: bold;
- font-size: 14px;
- text-transform: uppercase;
-}
-
-.action-home-index #content #catalogo-software-search #search-catalog-footer{
- border-top: 1px solid;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- background-color: #192758;
- color: #FFFFFF;
-}
-
-.action-home-index #content #catalogo-software-search #search-catalog-footer p{
- margin: 0px;
- font-size: 11px;
- text-align: right;
- text-transform: uppercase;
-}
-
-.action-home-index #content #catalogo-software-search #search-catalog-footer a{
- padding: 7px 0px 12px 0px;
- color: #FFF;
- display: block;
-}
-
-.action-home-index #content #catalogo-software-search #search-catalog-footer a:hover{
- background-color: #101A38;
-}
-
-.action-home-index #content #catalogo-software-search #bt_catalog-search::after{
- margin: 0px 15px 0 5px;
- border-radius: 4px;
- padding: 0px 4px 0 7px;
- top: 2px;
- line-height: 20px;
- background: #eee;
- color: #172857;
- font-size: 15px;
- text-align: center;
- position: relative;
- content: url('../images/right-arrow-black.png');
-}
-
-/*** Softwares block **/
-.action-home-index #content .softwares-block{
- margin: 0px;
- overflow: auto;
-}
-
-.action-home-index #content .softwares-block .block-title{
- margin: 0px 0px 25px 0px;
- border-top: 4px solid #2c66ce;
- background: #eee;
- color: #2c66ce;
- font-weight: 300;
-}
-
-.action-home-index #content .softwares-block .block-footer-content a{
- display:none;
-}
-
-.action-home-index #content .software-block{
- width: 145px;
- height: 218px;
- margin: 0px 18px 14px 0px;
-}
-
-.action-home-index #content .software-block .software-block-logo{
- border: 1px solid #ccc;
- border-radius: 8px;
- width: 140px;
- height: 150px;
- text-align: center;
- overflow: hidden;
- vertical-align: middle;
- display: table-cell;
-}
-
-.action-home-index #content .software-block .software-block-logo img{
- height: auto;
- max-width: 90px;
-}
-
-.action-home-index #content .software-block .software-block-info{
- height: 85px;
- overflow: hidden;
-}
-
-.action-home-index #content .software-block .software-block-title{
- height: 50px;
- font-weight: 300;
- font-size: 14px;
- text-align: center;
- overflow: hidden;
-}
-
-.action-home-index #content .software-block .software-block-title h3{
- margin: 10px 0px 10px 0px;
- color: #2C66CE;
- font: normal normal 300 14px 'open_sansregular', arial, helvetica, sans-serif;
-}
-
-.action-home-index #content .software-block-description{
- display: none;
-}
-
-.action-home-index #content .software-block .software-block-finality,
-.action-home-index #content .software-block .software-block-content{
- text-align: right;
-}
-
-.action-home-index #content .software-block .software-block-finality{
- border: solid 1px #D7D7D7;
- border-radius: 8px;
- width:142px;
- height: 216px;
- left: 0px;
- background-color: #f4f4f4;
- text-transform: uppercase;
-}
-
-.action-home-index #content .software-block .software-block-finality::after{
- margin: 0px 7px 0px 3px;
- border-radius: 4px;
- padding: 0 4px 0 7px;
- line-height: 20px;
- background: #2c65cd;
- color: #FFF;
- font-size: 15px;
- text-align: center;
- position: relative;
- content: url('../images/right-arrow.png');
-}
-
-.action-home-index #content .software-block .software-block-finality p{
- margin: 0px 0px 7px 0px;
- border-bottom: solid 1px #D7D7D7;
- padding: 12px 12px 0px 12px;
- height: 170px;
- color: #172738;
- font-size: 12px;
- text-align: left;
- text-transform: none;
- overflow: hidden;
-}
-
-/*** News block - display content block **/
-
-.action-home-index #content .display-content-block .block-title{
- margin: 0px;
- border-top: 4px solid #643C67;
- background: #eee;
- color: #643C67;
- font-weight: 300;
-}
-
-.action-home-index #content .display-content-block li{
- border-top: 1px solid #eee;
- padding: 15px 0px 0px 0px;
- min-height: 150px;
-}
-
-.action-home-index #content .display-content-block li:first-child{
- border-top: 0px solid #eee;
-}
-
-.action-home-index #content .display-content-block .published-at{
- padding: 0px 0px 15px 0px;
- color: #643C67;
-}
-
-.action-home-index #content .display-content-block .image{
- padding-right: 25px;
- padding: 0px 25px 0px 0px;
- border: 0px solid #c0c1c1;
- width: 150px;
- display: table-cell;
-}
-
-.action-home-index #content .display-content-block .image a{
- border-radius: 8px;
- height: 90px;
- overflow: hidden;
- display: block;
-}
-
-.action-home-index #content .display-content-block .image img{
- border: 0px solid #c0c1c1;
- max-width: 150px;
-}
-
-.action-home-index #content .display-content-block .title{
- margin: 2px 0px 4px 0px;
- padding-right: 0px;
- max-height: 40px;
- text-align: justify;
- overflow: hidden;
-}
-
-.action-home-index #content .display-content-block .title a{
- padding: 0px;
- color: #172738;
- font: normal normal bold 16px/1.3em arial, helvetica, sans-serif;
-}
-
-.action-home-index #content .display-content-block .lead{
- max-height: 47px;
- overflow: hidden;
-}
-
-.action-home-index #content .display-content-block .lead a{
- color: #000000;
- font: 15px/1.3em arial;
-}
-
-.action-home-index #content .display-content-block .lead a:visited,
-.action-home-index #content .lead a:visited,
-.action-home-index #content .lead dl.portlet a:visited{
- color: #172738;
-}
-
-.action-home-index #content .display-content-block .notice-info{
- display: table-cell;
- vertical-align: top;
-}
-
-.action-home-index #content .display-content-block .read_more{
- display: none;
-}
-
-.action-home-index #content .display-content-block .read-more{
- border-top: 1px solid #643C67;
-}
-
-.action-home-index #content .display-content-block .read-more a::after{
- background: #643C67;
-}
-
-/******************** End Box-1 ********************/
-
-/******************** Box-3 ********************/
-
-/*** What Is block - Article block **/
-
-.template-default .action-home-index #content .box-3 .article-block .block-title{
- border-top: 4px solid #08A649;
- border-bottom: none;
- padding: 6px 8px 22px 10px;
- background: #eee;
- color: #08A649;
- font: normal normal 300 18px/1.3em 'open_sansregular', arial, helvetica, sans-serif;
- text-align: left;
- text-transform: none;
-}
-
-.template-default .action-home-index #content .box-3 .article-block .read-more{
- margin-top: 30px;
- border-top: 1px solid #08A649;
-}
-
-.template-default .action-home-index #content .box-3 .article-block .read-more a::after{
- background: #08A649;
-}
-
-.template-default .action-home-index #content .box-3 .article-block .short-post{
- padding-top: 23px;
-}
-
-.template-default .action-home-index #content .box-3 .article-block p{
- margin: 0px 0px 14px 0px;
- padding: 0px;
- font: 15px/18px arial, helvetica, sans-serif;
- text-align: left;
- text-transform: none;
-}
-
-/******* See As Well Block - Highlights block *******/
-
-.action-home-index #content .highlights-block .block-title{
- display: none;
-}
-
-.action-home-index #content .highlights-border{
- border: 1px solid #c0c1c1;
- border-radius: 8px;
- width: auto;
- height: 248px;
- max-height: 250px;
- background-color: #e8e9ec;
- background-image: linear-gradient(
- 0deg,
- transparent 45%,
- #fff 55%);
- background-size: 100% 100%;
-}
-
-.action-home-index #content .highlights-container{
- border-radius: 8px;
- border-width: 0px 0px 1px 0px;
- border-bottom: none;
- padding: 0;
- width: 100% !important;
- max-height: 230px;
- background: transparent;
- position: relative;
- top: 0;
-}
-
-.action-home-index #content .highlights-image-link{
- padding: 18px 0px 0px 0px;
- border-radius: 0px 0px 8px 8px;
- width: 220px;
- max-height: 217px;
- background-color: #fff;
-}
-
-.action-home-index #content .highlights-image-link img{
- height: 100px;
- max-width: 200px;
-}
-
-.action-home-index #content .highlights-label{
- border-top: 4px solid #3b61a7;
- padding: 23px 20px 46px 20px;
- max-height: 60px;
- width: 190px;
- position: relative;
- bottom: -18px;
- background: #e8e9ec;
- color: #172638;
- text-align: center;
- font: normal normal normal 16px/1.5em 'open_sansbold', arial, helvetica, sans-serif;
- vertical-align: middle;
-}
-
-.action-home-index #content .highlights-block-pager{
- float: none;
- display: block;
- text-align: center;
-}
-
-.action-home-index #content .highlights-block-pager a{
- margin: 0 4px;
- border-color: transparent;
- border-radius: 50%;
- height: 6px;
- width: 6px;
- background: #c0c1c1 center center no-repeat;
- color: transparent;
- text-indent: -5000px;
- z-index: 1000;
- overflow: hidden;
- display: inline-block;
-}
-
-.action-home-index #content .highlights-block-pager a.activeSlide{
- border-color: transparent;
- background: #3e67b1;
- color: transparent;
-}
-
-/*** software highlights block ***/
-
-.action-home-index #content a.toggle-popover,
-.action-home-index #content a.toggle-popover:hover{
- margin: 0 0 0 55px;
- color: #3867b7;
- cursor: pointer;
-}
-
-.action-home-index #content span.popover-span{
- padding: 1px 6px;
- border-radius: 50%;
- background-color: #3867b7;
- color: #ffffff;
- font-weight: bold;
- cursor: pointer;
-}
-
-/*** mais software block **/
-.action-home-index #content #mais-software-block{
- margin: 11px 0px;
- border: 1px solid #c0c1c1;
- border-radius: 8px;
- padding: 5px 0px;
- width: auto;
- background-color: #eeeff1;
- font: 14px arial;
-}
-
-.action-home-index #content #mais-software-block #sbp-information-softwares h2{
- margin: 10px 0px 0px 0px;
- padding: 0px 0px 17px 15px;
- border-bottom: 1px solid #c0c1c1;
- color: #454545;
- font: normal normal normal 16px/21px 'open_sansbold', arial, helvetica, sans-serif;
- text-align: left;
- text-transform: uppercase;
-}
-
-.action-home-index #content #mais-software-block #list-categories{
- margin: 14px 14px 14px 14px;
-}
-
-.action-home-index #content #mais-software-block #list-categories p{
- margin: 0 0 16px 0;
- color: #464A55;
-}
-
-.action-home-index #content #mais-software-block #list-categories ul li{
- margin: 18px 5px 5px 5px;
-}
-
-.action-home-index #content #mais-software-block #list-categories li a{
- color: #335277;
- font-weight: bold;
-}
-
-.action-home-index #content #mais-software-block #list-categories a:hover{
- text-decoration: none;
-}
-
-.action-home-index #content #mais-software-block #footer-mais-software{
- margin: 0px;
- border-top: 1px solid #c0c1c1;
- padding: 10px 10px 0px 3px;
- font-size: 11px;
- text-align: right;
- text-transform: uppercase;
-}
-
-.action-home-index #content #mais-software-block #footer-mais-software a{
- color: #464A55;
-}
-
-/******************** End Box-3 ********************/
diff --git a/css/left-bar.css b/css/left-bar.css
deleted file mode 100644
index 873694e..0000000
--- a/css/left-bar.css
+++ /dev/null
@@ -1,184 +0,0 @@
-/******************** Box-2 ********************/
-
-/*** WARNING - WITHOUT BOX-4 ***/
-
-.template-leftbar .box-2,
-.template-default .box-2 {
- width:150px;
-}
-
-.template-leftbar #content .box-2 .block-outer .block-title,
-.template-default #content .box-2 .block-outer .block-title {
- background: #eee;
- color: #4562b1;
- border-top: 4px solid #4562b1;
- line-height: 15px;
-}
-
-/*** Menus - Link list block ***/
-
-.template-leftbar #content .box-2 .link-list-block li,
-.template-default #content .box-2 .link-list-block li {
- margin: 0;
- padding: 0;
- border-bottom: 1px solid #ddd;
- border-top: none;
-}
-
-.template-leftbar #content .box-2 .link-list-block li a,
-.template-default #content .box-2 .link-list-block li a {
- width: auto;
- padding: 6px 5px 8px 18px;
- background-color: #fff;
- background-position: 0px 50%;
- color: #2C66CE;
- border-right: none;
- border-top: 0px solid #64946E;
- border-radius: 0 0 0 0;
- font-weight: normal;
- font-size: 14px;
- line-height: 17px;
-}
-
-.template-leftbar #content .box-2 .link-list-block h3.empty + ul,
-.template-default #content .box-2 .link-list-block h3.empty + ul {
- border-top: 1px solid #ddd;
-}
-
-.template-leftbar #content .box-2 .link-list-block h3.empty + ul li a,
-.template-default #content .box-2 .link-list-block h3.empty + ul li a {
- padding-left: 0px;
- padding-right: 0px;
- background-image: none;
-}
-
-.template-leftbar #content .box-2 .link-list-block li a.link-this-page,
-.template-leftbar #content .box-2 .link-list-block li a.link-this-page:hover ,
-.template-default #content .box-2 .link-list-block li a.link-this-page,
-.template-default #content .box-2 .link-list-block li a.link-this-page:hover {
- border-right: none;
-}
-
-.template-leftbar #content .box-2 .link-list-block li a:hover,
-.template-default #content .box-2 .link-list-block li a:hover {
- background-color: #FFFFFF;
- color: #000;
-}
-
-.template-leftbar #content .box-2 .link-list-block li a.link-this-page,
-.template-default #content .box-2 .link-list-block li a.link-this-page {
- width: auto;
- margin-left: 0px;
- background-color: #ffffff;
- font-weight: bold;
-}
-
-/*** END OF WARNING - WITHOUT BOX-4 ***/
-
-/*** WARNING - WITH BOX-4 ***/
-
-/************ DUPLICATE ************
-
- This part of the code is duplicated because, if there is
- a change of layout from template-default to lefttopright
- the CSS fit without many complication.
-
- */
-
-.template-lefttopright .box-3 {
- width:150px;
-}
-
-.template-lefttopright #content .box-3 .block-outer .block-title {
- background: #eee;
- color: #4562b1;
- border-top: 4px solid #4562b1;
- line-height: 15px;
-}
-
-/*** Menus - Link list block ***/
-
-.template-lefttopright #content .box-3 .link-list-block li {
- margin: 0;
- padding: 0;
- border-bottom: 1px solid #ddd;
- border-top: none;
-}
-
-.template-lefttopright #content .box-3 .link-list-block li a {
- width: auto;
- padding: 6px 5px 8px 18px;
- background-color: #fff;
- background-position: 0px 50%;
- color: #2C66CE;
- border-right: none;
- border-top: 0px solid #64946E;
- border-radius: 0 0 0 0;
- font-weight: normal;
- font-size: 14px;
- line-height: 17px;
-}
-
-.template-lefttopright #content .box-3 .link-list-block h3.empty + ul {
- border-top: 1px solid #ddd;
-}
-
-.template-lefttopright #content .box-3 .link-list-block h3.empty + ul li a {
- padding-left: 0px;
- padding-right: 0px;
- background-image: none;
-}
-
-.template-lefttopright #content .box-3 .link-list-block li a.link-this-page,
-.template-lefttopright #content .box-3 .link-list-block li a.link-this-page:hover {
- border-right: none;
-}
-
-.template-lefttopright #content .box-3 .link-list-block li a:hover {
- background-color: #FFFFFF;
- color: #000;
-}
-.template-lefttopright #content .box-3 .link-list-block li a.link-this-page {
- width: auto;
- margin-left: 0px;
- background-color: #ffffff;
- font-weight: bold;
-}
-
-/************ END OF DUPLICATE ************
-
-/*** END OF WARNING - WITH BOX-4 ***/
-
-/*** Statistics block **/
-.template-default #content .box-2 .statistics-block {
- padding: 10px 0px 10px 10px
-}
-
-.statistics-block-data ul {
- margin-top: 10px;
-}
-
-.statistics-block-data ul li {
- margin-left: 18px;
- margin-top: 6px;
- line-height: 17px;
-}
-
-.statistics-block-data ul li.users span {
- font-size: 14px;
-}
-
-span.amount {
- font-size: 14px;
- font-weight: 700;
-}
-
-span.label {
- font-size: 14px;
-}
-
-/*** end of statistics block **/
-
-/*** WARNING - WITH BOX-4 ***/
-
-/******************** end Box-2 ********************/
diff --git a/css/main-content.css b/css/main-content.css
deleted file mode 100644
index 56307fb..0000000
--- a/css/main-content.css
+++ /dev/null
@@ -1,174 +0,0 @@
-/*** Box ***/
-
-.no-boxes .block {
- margin-top: 50px;
-}
-
-#content .box-2 .block-outer .block,
-#content .box-3 .block-outer .block{
- margin-bottom: 45px;
- clear: both;
-}
-
-/*** Block Title ***/
-#content .block-outer .block-title {
- padding: 5px 8px 18px 7px;
- margin: 0px 0px 2px 0px;
- background: #eee;
- border-bottom: none;
- font-size: 12px;
- font-family: "open_sansbold", Arial, Helvetica, sans-serif;
- font-variant: normal;
- text-transform: uppercase;
- text-align: left;
- font-weight: 300;
-}
-
-#content .box-1 .block-title {
- padding: 5px 8px 20px 10px;
- font-size: 18px;
- font-family: "open_sansregular", Arial, Helvetica, sans-serif;
- text-transform: none;
-}
-
-/*** Pagination ***/
-
-#content .pagination {
- margin: 48px auto 30px auto;
- border-top: 0 none;
- font-family: "open_sansregular", Arial, Helvetica, sans-serif;
-}
-
-#content .pagination a,
-#content .pagination em,
-#content .pagination span{
- padding: 5px 9px;
- margin-right: 4px;
- color: #172738;
- border: 1px solid #D3D6DE;
- border-radius: 4px;
- letter-spacing: 0.6px;
- font-size: 12px;
- font-weight: 700;
- text-decoration: none;
- display: inline-table;
-}
-
-#content .pagination .current {
- background-color: #ECEDF1;
- font-style: normal;
-}
-
-#content .pagination .previous_page{
- float: left;
-}
-
-#content .pagination .next_page{
- float: right;
-}
-
-#content .pagination .previous_page,
-#content .pagination .next_page{
- width: auto;
- position: relative;
- background-image: none;
- font-weight: 500;
-}
-
-#content .pagination .disabled{
- opacity: 0.5;
-}
-
-/*** Button ***/
-
-#content .button-bar a.button,
-#content .button-bar input {
- margin: 0 10px 10px 0;
-}
-
-#content a.button.with-text{
- height: 32px;
- padding: 5px 15px;
- background: #FFF none;
- color: #3E67B1;
- border-radius: 4px;
- border: 1px solid #3E67B1;
- font-size: 14px;
- line-height: 32px;
- text-transform: uppercase;
-}
-
-#content #article-actions a.button.with-text{
- display: inline-block;
- height: 18px;
- padding: 5px 10px;
- margin-bottom: 5px;
- background: #FFF none;
- color: #3E67B1;
- border-radius: 4px;
- border: 1px solid #3E67B1;
- font-size: 12px;
- line-height: 18px;
- text-transform: none;
-}
-
-#content #article-actions a.button.with-text span{
- padding: 0;
-}
-
-.action-profile-members #content .button-bar a.button.with-text{
- height: auto;
- border: 1px solid #D3D6DE;
- font-size: 12px;
- line-height: normal;
- text-transform: none;
-}
-.action-profile-members #content .page-profile-header a.button.with-text{
- border:none;
-}
-.action-profile-members #content .button-bar a.button.with-text:hover{
- border-color: #3E67B1;
-}
-
-#content form input.button.with-text{
- height: 42px;
- max-height: 42px;
- padding: 5px 15px;
- background: #FFF none;
- color: #3E67B1;
- border-radius: 4px;
- border: 1px solid #3E67B1;
- font-size: 14px;
- line-height: 32px;
- text-transform: uppercase;
-}
-
-#content a.button:hover,
-#content #article-actions a.button.with-text:hover,
-#content input.button.with-text:hover{
- background-color: #3E67B1;
- color: #FFF;
-}
-
-/* This is a temporary solution until noosfero deals with logged-out comments in a better manner. */
-.comment-replies .comment-logged-out .comment-text,
-.comment-logged-out .comment-picture,
-.comment-logged-out h4 {
- opacity: 1.0;
-}
-
-.comment-logged-out .comment-text,
-.comment-info {
- color: black;
-}
-/**/
-
-/* Temporary solution to code block in tutorial page. */
-.article-body td {
- background-color: white;
-}
-
-.article-body td:hover {
- background-color: white;
-}
-/* End of temporary solution to code block in tutorial page. */
diff --git a/css/news-page.css b/css/news-page.css
deleted file mode 100644
index 26d9720..0000000
--- a/css/news-page.css
+++ /dev/null
@@ -1,215 +0,0 @@
-/*** News Page's homepage ***/
-
-/** Header's Block **/
-.profile-name-is-spb #article #article-toolbar #article-header h1.title,
-#content .blog #article-header h1.title{
- margin: 20px 0px 10px 0px;
- padding: 0px 0px 10px 0px;
- border-bottom: 1px solid #D3D6DE;
- font: normal normal bold 35px/37px arial;
-}
-
-/* WARNING:
- * This solution is TEMPORARY. This informations shouldn't exist
- * in this area.
- *
- * TODO: Remove this informations of the html and, then, from here.
- */
-
-#article-toolbar a.button.icon-feed.blog-feed-link {
- display: none;
-}
-
-/* WARNING:
- * This solution is TEMPORARY. This informations shouldn't exist
- * in this area.
- *
- * TODO: Remove this informations of the html and, then, from here.
- */
-#content .blog #article-header .publishing-info .date,
-#content .blog #article-header .publishing-info .author,
-#content .blog #article-header .publishing-info .comments {
- display: none;
-}
-
-
-/** General Properties of News **/
-#content .blog .article-body p {
- margin: 0px 0px 5px 0px;
- max-height: 25px;
- color: #172738;
- text-align: left;
- text-overflow: ellipsis;
- font: 14px/21px arial;
- overflow: hidden;
-}
-
-#content .blog .publishing-info {
- display: inline;
-}
-
-#content .blog .blog-post {
- margin: 0 auto;
- border-bottom: 1px solid #ccc;
- padding: 25px 0px 0px 0px;
- background: none;
-}
-
-#content .blog .blog-post h1.title {
- margin: 0px 0px 10px 0px;
- padding: 0px 0px 0px 0px;
- max-width: 555px;
- max-height: 40px;
- border: none;
- font: normal normal bold 16px/20px arial;
- overflow: hidden;
- display: inline-block;
-}
-
-#content .blog .blog-post h1.title a {
- color: black;
-}
-
-/* WARNING:
- * This solution is TEMPORARY. This informations shouldn't exist
- * in this area.
- *
- * TODO: Remove this informations of the html and, then, from here.
- */
-#content .blog .blog-post .author {
- display: none;
-}
-
-#content .blog .blog-post .publishing-info {
- border-top: none;
- color: #172838;
- font: 13px/21px arial;
-}
-
-#content .blog .blog-post .publishing-info .date {
- margin: 0px 0px 5px 0px;
- display: block;
-}
-
-#content .blog .blog-post .post-pic {
- margin: 0px 20px 5px 0px;
- border-radius: 4px;
- height: 80px;
- width: 20%;
- background: center/cover no-repeat;
- float: left;
-}
-
-#content .blog .blog-post .short-post {
- max-height: 35px;
- text-align: justify;
- text-overflow: ellipsis;
- overflow: hidden;
-}
-
-/* WARNING:
- * This solution is TEMPORARY. This informations shouldn't exist
- * in this area.
- *
- * TODO: Remove this informations of the html and, then, from here.
- * The correct is the text is sensitive to lead to the complete text.
- */
-#content .blog .blog-post .read-more {
- display: none;
-}
-
-#content .blog #article-actions:last-child {
- border-top: none;
-}
-/** end of General Properties of News **/
-
-
-/** Main News' Block **/
-#content .blog .page-1 .position-1 {
- padding: 0px 0px 0px 0px;
-}
-
-#content .blog .page-1 .position-1 .title a {
- line-height: 37px;
- color: #172738 !important;
- font-size: 34px;
-}
-
-#content .blog .page-1 .position-1 .post-pic {
- margin: 0px 0px 13px 0px;
- max-height: 320px;
- height: 320px;
- width: 100%;
-}
-
-#content .blog .page-1 .position-1 .short-post {
- max-height: 50px;
-}
-
-
-/** Secondary News' Block **/
-#content .blog .page-1 .position-2,
-#content .blog .page-1 .position-3,
-#content .blog .page-1 .position-4 {
- margin: 0px 0px 0px 0px;
- padding: 20px 21px 45px 0px;
- height: 235px;
- width: 30.5%;
- display: block;
- float: left;
-}
-
-#content .blog .page-1 .position-2 p,
-#content .blog .page-1 .position-3 p,
-#content .blog .page-1 .position-4 p {
- max-height: 45px;
-}
-
-#content .blog .page-1 .position-4 {
- margin: 0px;
- padding-right: 0px;
-}
-
-#content .blog .page-1 .position-2 .post-pic,
-#content .blog .page-1 .position-3 .post-pic,
-#content .blog .page-1 .position-4 .post-pic {
- margin-top: 12px;
- top: 10px;
- height: 120px;
- width: 100%;
-}
-
-#content .blog .page-1 .position-4 .post-pic {
- margin-right: 0px;
-}
-
-#content .blog .page-1 .position-2 .short-post,
-#content .blog .page-1 .position-3 .short-post,
-#content .blog .page-1 .position-4 .short-post {
- max-height: 50px;
- color: #172738;
- text-align: justify;
- text-overflow: ellipsis;
- overflow: hidden;
-}
-
-
-
-/** Lastest News' Block ***/
-
-/* This rule serves to maintain the element in position-5 clear the
- * configurations of float.
- */
-#content .blog .blog-post.position-5 {
- clear: both;
-}
-
-/** Pagination **/
-
-#content #article .pagination .next_page{
- position: relative;
-
-}
-
-
-/*** end of News Page's homepage ***/
diff --git a/css/overwriting-base-theme.css b/css/overwriting-base-theme.css
deleted file mode 100644
index 8b3903a..0000000
--- a/css/overwriting-base-theme.css
+++ /dev/null
@@ -1,204 +0,0 @@
-/************overwriting themes/base/style.css****************/
-#wrap-1, #theme-footer {
- margin: auto;
- width: 100%;
-}
-
-#wrap-2 {
- width: 960px;
- margin: 0 auto;
- border: none;
- padding: 0px;
-}
-
-#main {
- background: #fff;
- font-size: 1.3em;
- padding: 1em 0;
- max-width: 960px;
- margin: 0 auto;
-}
-
-#wrapper {
- margin: 0 auto;
- font-size: 1.2em;
- width: 100%;
-}
-
-.main-content {
- border-style: none;
- box-shadow: none;
- padding: 10px 20px;
-}
-
-.profile-image-block .admin-link {
- font-size: 100%;
-}
-
-/* ==> blocks.css <== */
-
-.block a {
- color: #555753;
-}
-.block a:visited {
- color: #888a85;
- font-weight: normal;
-}
-.block a:hover {
- color: #2e3436;
- text-decoration: none;
-}
-
-/* Title Header */
-#content .main-block h1,
-#content .main-block h2,
-#content .main-block h3,
-#content .main-block h4 {
- font-family: Arial, Helvetica, sans-serif;
-}
-
-#content .main-block h1,
-#not-found h1,
-#access-denied h1,
-#content .no-boxes h1 {
- margin: 20px 0 10px 0;
- padding: 0;
- color: #172738;
- border-bottom: none;
- font-family: Arial;
- font-size: 34px;
- font-weight: bold;
- font-variant: normal;
- line-height: 37px;
-}
-
-#content .title {
- font-weight: normal;
- padding-right: 70px;
-}
-
-#content .main-block h3 {
- font-size:18px;
- line-height: 21px;
-}
-
-/****************************************/
-
-/*recent documents - everywhere on site*/
-#content .recent-documents-block ul {
- margin-left: 0;
- padding: 0;
-}
-
-#content .recent-documents-block li {
- background: none repeat scroll 0 0 #eeeff2;
- border-bottom: 1px solid #c0c1c1;
- display: block;
- margin: 0;
- min-height: 1em;
- padding: 20px;
- text-align: left;
-}
-
-#content .recent-documents-block li a {
- color: #464A55;
- line-height: 1.2em;
-}
-#content .recent-documents-block li a:hover{
- color: #000;
-}
-
-#content .recent-documents-block .block-title {
- border-bottom: 1px solid #757575;
- margin-bottom: 0;
-}
-
-
-#site-title {
- position: absolute;
- left: 8px;
- top: -160px;
- height: 78px;
- width: 480px;
- display: none;
-}
-
-#content {
- left: -480px;
- margin-left: 50%;
- margin-top: 38px;
- position: relative;
- width: 960px;
-}
-
-
-input.button.with-text {
- background-position: 3px 50%;
- font-size: 12px;
- padding: 0 2px 2px 20px;
- max-height: 28px;
-}
-
-#content a.button.with-text,
-#content a.button.with-text {
- height: 28px;
- max-height: 28px;
-}
-#content input.button, #content a.button {
- background-color: #EEEEEE;
- background-repeat: no-repeat;
- border: 0px solid #CCCCCC;
- color: #555555;
- line-height: 16px;
- text-decoration: none;
-}
-
-#content #article-actions input.button,
-#content #article-actions a.button,
-#content a.button,
-#content input.button {
- background-color: transparent;
- border: 1px solid #CCCCCC;
- vertical-align: middle;
-}
-
-#content a.button.with-text {
- line-height: 28px;
- height: 30px;
- max-height: 30px;
-}
-
-#content form input.button.submit {
- height: 32px;
- max-height: 32px;
- margin-right: 5px;
-}
-#content #article-actions input.button:hover,
-#content #article-actions a.button:hover {
- background-color: #ccc;
- border: 1px solid #CCCCCC;
- color: white;
-}
-
-#content a.button:hover {
- border: 1px solid #CCCCCC;
-}
-
-/*label of search's radio buttons*/
-#content .search-field label {
- display: inline-block;
- font-size: 12px;
- vertical-align: middle;
- margin-left: 5px;
-}
-
-#public-profile-search .formfield, #public-profile-search .submit {
- margin-bottom: 5px;
-}
-
-#content .profile ul{
- margin-left: 1em;
-}
-
-/*********************end of overwritting themes/base/style.css*********************************/
-
diff --git a/css/popover.css b/css/popover.css
deleted file mode 100644
index 905383b..0000000
--- a/css/popover.css
+++ /dev/null
@@ -1,191 +0,0 @@
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1060;
- display: none;
- max-width: 276px;
- padding: 1px;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 14px;
- font-style: normal;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: left;
- text-align: start;
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- letter-spacing: normal;
- word-break: normal;
- word-spacing: normal;
- word-wrap: normal;
- white-space: normal;
- background-color: #fff;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, .2);
- border-radius: 6px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-
- line-break: auto;
-}
-.popover.top {
- margin-top: -12px;
-}
-.popover.right {
- margin-left: 10px;
-}
-.popover.bottom {
- margin-top: 10px;
-}
-.popover.left {
- margin-left: -10px;
-}
-.popover-title {
- padding: 8px 14px;
- margin: 0;
- font-size: 14px;
- background-color: #f7f7f7;
- border-bottom: 1px solid #ebebeb;
- border-radius: 5px 5px 0 0;
-}
-.popover-content {
- padding: 9px 14px;
-}
-.popover > .arrow,
-.popover > .arrow:after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-.popover > .arrow {
- border-width: 11px;
-}
-.popover > .arrow:after {
- content: "";
- border-width: 10px;
-}
-.popover.top > .arrow {
- bottom: -11px;
- left: 50%;
- margin-left: -11px;
- border-top-color: #999;
- border-top-color: rgba(0, 0, 0, .25);
- border-bottom-width: 0;
-}
-.popover.top > .arrow:after {
- bottom: 1px;
- margin-left: -10px;
- content: " ";
- border-top-color: #fff;
- border-bottom-width: 0;
-}
-.popover.right > .arrow {
- top: 50%;
- left: -11px;
- margin-top: -11px;
- border-right-color: #999;
- border-right-color: rgba(0, 0, 0, .25);
- border-left-width: 0;
-}
-.popover.right > .arrow:after {
- bottom: -10px;
- left: 1px;
- content: " ";
- border-right-color: #fff;
- border-left-width: 0;
-}
-.popover.bottom > .arrow {
- top: -11px;
- left: 50%;
- margin-left: -11px;
- border-top-width: 0;
- border-bottom-color: #999;
- border-bottom-color: rgba(0, 0, 0, .25);
-}
-.popover.bottom > .arrow:after {
- top: 1px;
- margin-left: -10px;
- content: " ";
- border-top-width: 0;
- border-bottom-color: #fff;
-}
-.popover.left > .arrow {
- top: 50%;
- right: -11px;
- margin-top: -11px;
- border-right-width: 0;
- border-left-color: #999;
- border-left-color: rgba(0, 0, 0, .25);
-}
-.popover.left > .arrow:after {
- right: 1px;
- bottom: -10px;
- content: " ";
- border-right-width: 0;
- border-left-color: #fff;
-}
-
-/*** popover in software highlights block ***/
-
-.highlights-popover {
- max-width: 280px;
- margin: 0 0 0 -75px;
- background: #172638;
- color: #FFFFFF;
-}
-
-.highlights-popover .popover-content {
- padding: 0;
-}
-
-.highlights-popover p {
- padding: 13px 13px 15px;
- margin: 0px;
- font-size: 14px;
- line-height: 20px;
-}
-
-.highlights-popover span {
- font-weight: bold;
- border-bottom: 1px dotted #FFFFFF;
-}
-
-#content .highlights-popover a,
-#content .highlights-popover a:visited,
-#content .highlights-popover a:hover,
-#content .highlights-popover a:link {
- font-weight: bold;
- color: #FFFFFF;
- display: block;
- padding: 8px 15px;
- border-top: 1px dotted rgba(255,255,255,0.1);
-}
-
-.highlights-popover a:before {
- font-family: "FontAwesome";
- content: "\f067";
- vertical-align: middle;
- color: #ff0066;
- padding: 0 5px 0 0;
-}
-
-.highlights-popover.top > .arrow,
-.highlights-popover.right > .arrow,
-.highlights-popover.bottom > .arrow,
-.highlights-popover.left > .arrow {
- margin-left: 64px;
-}
-
-.highlights-popover.top > .arrow:after,
-.highlights-popover.right > .arrow:after,
-.highlights-popover.bottom > .arrow:after,
-.highlights-popover.left > .arrow:after {
- border-top-color: #172638;
-}
diff --git a/css/search-pages.css b/css/search-pages.css
deleted file mode 100644
index fb05e26..0000000
--- a/css/search-pages.css
+++ /dev/null
@@ -1,115 +0,0 @@
-/*** Search Community ***/
-
-.action-search-index #content form #search-header,
-.action-search-people #content form #search-header,
-.action-search-communities #content form #search-header{
- margin-top: 5px;
- float: right;
- border: none;
-}
-
-.action-search-people #content form #search-header #search-filters .sod_select,
-.action-search-communities #content form #search-header #search-filters .sod_select{
- color: #3E67B1;
- border: 1px solid #3E67B1;
- border-radius: 4px;
- font-family: Arial;
- font-variant: normal;
- font-weight: 300;
- box-shadow: none;
-}
-
-.action-search-people #content form #search-header #search-filters .sod_select .sod_list,
-.action-search-communities #content form #search-header #search-filters .sod_select .sod_list{
- margin: -2px 0 0 -1px;
- color: #3E67B1;
- border: 1px solid #3E67B1;
- border-top: none;
- border-radius: 0px 0px 4px 4px;
- font-family: Arial;
- font-variant: normal;
- font-weight: 300;
-}
-
-.action-search-people #content form #search-header #search-filters .sod_select .sod_list .active,
-.action-search-communities #content form #search-header #search-filters .sod_select .sod_list .active{
- border-radius: 0px 0px 4px 4px;
-}
-
-.action-search-people #content form #search-header #search-filters .sod_select .sod_list .selected,
-.action-search-communities #content form #search-header #search-filters .sod_select .sod_list .selected{
- padding-right: 21px;
-}
-
-.action-search-people #content form #search-subheader .sod_select,
-.action-search-communities #content form #search-subheader .sod_select{
- line-height: 15px;
-}
-
-.action-search-index #content form .search-field,
-.action-search-people #content form .search-field,
-.action-search-communities #content form .search-field{
- margin-bottom: 30px;
-}
-
-.action-search-index #content form .search-field .formfield,
-.action-search-people #content form .search-field .formfield,
-.action-search-communities #content form .search-field .formfield{
- float: left;
- width: 99%;
-}
-.action-search-index #content form .search-field .formfield input,
-.action-search-people #content form .search-field .formfield input,
-.action-search-communities #content form .search-field .formfield input{
- margin-top: 0px;
- padding: 6px;
- height: 19px;
- max-height: 19px;
- max-width: 98%;
- background: none;
- border: 1px solid #ccc;
- border-radius: 4px;
-}
-
-.action-search-index #content form input.button.submit,
-.action-search-people #content form input.button.submit,
-.action-search-communities #content form input.button.submit{
- height: 32px;
- margin-top: 8px;
- padding: 5px 15px;
- background: #3E67B1 none;
- color: #FFF;
- border-radius: 4px;
- border: 1px solid #3E67B1;
- font-size: 14px;
- line-height: 14px;
- text-transform: uppercase;
-}
-
-.action-search-index #content form input.button.submit:hover,
-.action-search-people #content form input.button.submit:hover,
-.action-search-communities #content form input.button.submit:hover{
- background: #5E82C6;
-}
-
-.action-search-people #search-results .search-results-type-people,
-.action-search-communities #search-results .search-results-type-community{
- background: none;
- border: 1px solid #ccc;
- border-radius: 10px;
-}
-
-.action-search-index #search-results h3{
- margin: 20px 0 10px 0;
- color: #172738;
- font-size:18px;
- line-height: 21px;
- font-family: Arial;
- font-weight: 700;
- font-variant: normal;
-}
-
-.action-search-index #search-results .search-results-innerbox{
- background: none;
- border: 1px solid #ccc;
-}
diff --git a/css/software-catalog-page.css b/css/software-catalog-page.css
deleted file mode 100644
index 2b32cd0..0000000
--- a/css/software-catalog-page.css
+++ /dev/null
@@ -1,426 +0,0 @@
-/*** Title and subtitle ***/
-
-.action-search-software_infos #content {
- margin-top: 10px;
- padding: 0px;
-}
-
-.action-search-software_infos .main-content {
- border: none;
- box-shadow: none;
-}
-
-.action-search-software_infos #content .main-content h2{
- color: #FF0366;
- font-size: 16px;
- font-family: "open_sansregular",Arial, Helvetica,sans-serif;
- font-weight: 300;
- text-transform: uppercase;
-}
-
-.action-search-software_infos #content .main-content h1{
- padding: 5px 0 10px 0;
- border-bottom: 1px solid #D3D6DE;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 35px;
- font-variant: normal;
-}
-
-/*** end of title and subtitle ***/
-
-/*** Search Box ***/
-.action-search-software_infos .search-form {
- margin-top:28px;
- padding: 0;
- background: #ecedf1;
- border-radius: 4px;
- border: 1px solid #D3D6DE;
- background-image:url("catalogo.png");
-}
-
-.action-search-software_infos #software-search-container .search-form h3{
- margin: 0px 0px 3px 0px;
- padding: 16px 0 20px 14px;
- color: #2C4B6B;
- font-family:"open_sansregular", Arial, Helvetica, sans-serif;
- color: #2B51A8;
- font-weight: bold;
- font-size: 15px;
- text-transform: uppercase;
-}
-
-/*.action-search-software_infos #content .search-form .project-software {
- margin: 0 0 0 15px;
-}
-
- It's TEMPORARY
-.action-search-software_infos #content .search-form .doubts-catalog-software {
- display: none;
-}*/
-
-/**Radio Buttons***/
-.action-search-software_infos #public_software_radio_button,
-.action-search-software_infos #all_radio_button {
- margin:5px 4px 15px 15px;
- line-height: 20px;
- position:absolute;
-}
-.action-search-software_infos .search-form label,
-.action-search-software_infos .search-form label{
- margin:0px 3px 4px 32px;
- line-height: 22px;
- font-size: 15px;
- font-family: Arial;
-}
-
-.action-search-software_infos #software-search-container .search-form .doubts-catalog-software{
- border:1px solid #3E67B1;
- border-radius:50%;
- padding:0px 3px;
- font-size: 14px;
- font-weight: 900;
- background:#3E67B1;
- color:#fff;
- font-family: Arial;
- cursor: pointer;
-}
-/******/
-
-.action-search-software_infos #content .search-form .search-field .formfield {
- width: 100%;
- margin: 0;
- padding: 0;
-}
-
-.action-search-software_infos #content .search-form .search-field #search-input {
- width: 96%;
- margin: 13px 0px 4px 13px;
- padding: 7px;
- background: #FFF;
- border-radius: 4px;
- border: 1px solid #D3D6DE;
- font-size: 14px;
-}
-
-
-.action-search-software_infos #content .search-form .search-field input.button{
- padding: 0px;
- background-color: #3E67B1;
- color: #FFF;
- border: 1px solid #3E67B1;
- font-family: "open_sansbold",Arial,sans-serif;
- border-radius: 4px;
-}
-
-.action-search-software_infos #content .search-form .search-field input.button.submit {
- width: auto;
- height: 30px;
- max-height: 30px;
- margin: 14px;
- padding: 0 14px 0 14px;
- background: #3E67B1;
- line-height: 14px;
- border-radius: 4px;
- color: #ffffff;
- text-transform: uppercase;
- font-family: "open_sansbold",Arial,sans-serif;
- font-size: 14px;
-}
-
-/* Filter options */
-
-.action-search-software_infos #filter-catalog-software {
- background-color: #D3D6DE;
-}
-
-.action-search-software_infos #filter-option-catalog-software {
- cursor: pointer;
- padding: 14px;
- background-color: #D3D6DE;
- border: none;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- font-size: 11px;
- text-align: right;
- text-transform: uppercase;
-}
-
-.action-search-software_infos #filter-option-catalog-close {
- padding: 7px 7px 17px 10px;
- display: none;
-}
-.action-search-software_infos #filter-option-catalog-software:hover {
- background-color: #c7c7c7;
-}
-
-.action-search-software_infos #filter-option-catalog-software:after {
- content: "";
- margin-left: 5px;
- padding: 3px 10.5px;
- background: url("../images/bottom-arrow.png") no-repeat center;
- background-color: #3E67B1;
- border-radius: 4px;
-}
-
-.action-search-software_infos #filter-catalog-software #filter-categories-option {
- border: none;
- height: 0;
- max-height: 620px;
- position: relative;
- overflow: hidden;
- padding: 0 15px;
-}
-
-.action-search-software_infos #filter-catalog-software #filter-categories-catalog h4 {
- margin: 20px 0 10px 5px;
- background: transparent;
- color: black;
-}
-
-.action-search-software_infos #filter-catalog-software input[type="checkbox"]{
- vertical-align: middle;
- margin: 0 3px 2px 8px;
-}
-
-.action-search-software_infos #group-categories ul {
- font-family: Arial;
- font-size: 14px;
- line-height: 31px;
- columns: 2;
- -webkit-columns: 2;
- -moz-columns: 2;
-}
-
-.action-search-software_infos #group-categories li span {
- font-family: Arial;
- font-size: 14px;
-}
-
-.action-search-software_infos #filter-catalog-software .project-software{
- margin: 20px 0 30px;
- border-top: 1px dotted;
- border-bottom: 1px dotted;
- font-weight: bold;
- font-size: 15px;
- font-family: Arial;
- padding: 10px;
-}
-
-.action-search-software_infos #filter-catalog-software .project-software label {
- font-weight: normal;
-}
-
-.action-search-software_infos #filter-catalog-software .project-software span {
- padding: 2px 6px;
- background: #FFF;
- color: #3E67B1;
- border-radius: 50%;
- font-size: 16px;
-}
-
-.action-search-software_infos button#cleanup-filter-catalg {
- cursor: pointer;
- background-color: #3E67B1;
- font-size: 14px;
- font-family: Arial;
- color: #ffffff;
- border: 1px solid #2B65CD;
- border-radius: 4px;
- margin: 5px 0 0 5px;
- padding: 5px 10px;
-}
-
-.action-search-software_infos button#close-filter-catalog {
- cursor:pointer;
- float: right;
- border: none;
- background: none;
- font-size: 12px;
- margin-top: 5px;
- color: #000;
- text-transform: uppercase;
- padding: 5px;
-}
-
-.action-search-software_infos button#close-filter-catalog:after {
- content: "";
- margin-left: 5px;
- padding: 2.5px 10.5px;
- background: url("../images/top-arrow.png") no-repeat center;
- background-color: #3E67B1;
- border-radius: 4px;
-}
-
-/*** end of search box ***/
-
-/*** Catalog Options ***/
-
-.action-search-software_infos #catalog-display-options {
- font-size: 14px;
- font-family: Arial;
-}
-
-.action-search-software_infos #catalog-display-options #catalog-display-options-count{
- padding: 45px 0 4px 0;
- float: left;
- width: 50%;
-}
-
-.action-search-software_infos #catalog-display-options #catalog-display-options-show-and-sort{
- padding: 38px 0 5px 0;
- font-weight: bold;
- float: left;
- width: 50%;
-}
-.action-search-software_infos #catalog-display-options #catalog-display-options-sort,
-.action-search-software_infos #catalog-display-options #catalog-display-options-show{
- position: relative;
- float: left;
- width: 50%;
- text-align: right;
-}
-
-/*** Search Results ***/
-.action-search-software_infos #search-results {
- border-top: 1px solid #d7d7d7;
-}
-
-.action-search-software_infos #search-results.only-one-result-box .search-software-item {
- padding: 29px 0 31px 0;
- background: #ffffff;
- border-bottom: 1px solid #d7d7d7;
-}
-
-.action-search-software_infos #search-results #search-results-empty{
- padding: 15px 0px;
- color: #172738;
- font-size: 16px;
- text-align: left;
-}
-
-
-.action-search-software_infos #search-results .search-results-innerbox {
- background: #ffffff;
- border: none;
-}
-
-/* Column left */
-
-.action-search-software_infos #search-results .search-software-item-column-left{
- width: 130px;
- height: 130px;
- float: left;
- border-right: 1px dotted #ccc;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .vcard {
- display: table;
- margin: 0;
- border: none;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .vcard:hover {
- border: none;
- background: none;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .vcard a:hover{
- color: #3E67B1;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .vcard a.profile_link{
- float:left;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .vcard:hover .menu-submenu-trigger {
- display:none;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .profile-image{
- width: 130px;
- height: 130px;
- margin-left: 130px;
- margin-top: 35px;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .vcard img {
- max-width: 90px;
- max-height: 130px;
- height: auto;
- margin-left:170px;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .org {
- display: none;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .extra_info {
- width: 130px;
- padding-right: 20px;
- top: 0px;
- position: absolute;
- color: #2C4B6B;
- font-size: 13px;
- font-family: Arial;
- text-align: left;
- opacity: inherit;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-left .extra_info::before{
- content: url("../images/ic-calendar.png");
- margin-right: 10px;
- margin-top: 6px;
- float: left;
-}
-
-/* Column Right */
-
-.action-search-software_infos #search-results .search-software-item-column-right {
- width: 70%;
- float: left;
- margin-left: 130px;
- padding: 0 0 0 8px;
- font-size: 15px;
- font-family: Arial;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block h4{
- margin-top: 0;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block h4 a {
- color: #172738;
- font-size: 19px;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block:last-child {
- margin-top: 30px;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-right span{
- width: 100%;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-right span b{
- font-weight: normal;
- font-size: 13px;
-}
-
-.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block:last-child span{
- width: auto;
- float: left;
-}
-
-.action-search-software_infos #search-results .search-software-content-block #categories-list li{
- width: auto !important; /* force overwritting from base */
- margin-left: 7px !important; /* force overwritting from base */
- float: left;
- color: #3E67B1;
- font-size: 13px;
- line-height: 18px;
- text-decoration: underline;
-}
-
-.action-search-software_infos #search-results .search-software-content-block #categories-list li a{
- color: #3E67B1;
-}
diff --git a/css/software-pages.css b/css/software-pages.css
deleted file mode 100644
index dd914a7..0000000
--- a/css/software-pages.css
+++ /dev/null
@@ -1,623 +0,0 @@
-/*** Software Header ***/
-/*block title software button control painel*/
-.action-content_viewer-view_page #content .software-information-block .admin-link a{
- padding: 5px 10px;
- background: #3E67B1;
- border-radius: 4px;
- text-transform: none;
- font-size: 12px;
- margin-top:15px;
- color:#fff;
-}
-.action-content_viewer-view_page #content .software-information-block .profile-big-image img{
- margin-bottom:20px;
-}
-/**************************/
-
-#content .software-information-block {
- margin: 0px 0px 60px 0px;
-}
-
-#content #software-information-block-table {
- margin: 0px 15px;
- width: auto;
-}
-
-#content #software-information-block-table td {
- display: table-cell;
-}
-
-#content #software-information-block-table #col-software-name {
- vertical-align: top;
- font-style: normal;
-}
-
-#content #software-information-block-table #col-software-name h1 {
- font: 700 34px/37px arial, open_sansbold, helvetica, sans-serif;
- text-align: left;
-}
-
-#content #software-information-block-table #col-software-name b {
- font: normal normal normal 15px/21px arial, 'open_sansregular', helvetica, sans-serif;
-}
-
-/*** end of Software Header ***/
-
-/*** Software Homepage ***/
-
-/* Software Download Block*/
-
-#content .download-block {
- margin: 0px 15px;
- border: 1px solid #D3D6DE;
- border-radius: 10px;
-}
-
-#content .download-block .block-title {
- padding: 11px 10px 7px 20px;
- background-color: #D3D6DE;
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
- font-family: "open_sansbold", Arial, Helvetica, sans-serif;
- margin: 0;
- color: #172738;
- font-size: 18px;
-}
-
-#content .download-block .download-list li {
- padding: 30px 10px 25px 10px;
- border-top: 1px solid #D3D6DE;
- clear: both;
-}
-
-#content .download-block .download-list li:nth-child(even) {
- background: #ECEDF1;
-}
-
-#content .download-block .download-button {
- width: 80px;
- float: left;
- clear: both;
-}
-
-#content .download-block .download-button .download-image {
- padding: 50px 0px 8px 0px;
- border: 1px solid #2c66ce;
- border-radius: 8px;
- height: 18px;
- background: #2C66CE url("../images/download-icon.png") center no-repeat;
- display: block;
-}
-
-#content .download-block .download-button #download-size {
- border: 1px solid #1a397d;
- border-radius: 0px 0px 8px 8px;
- background-color: #1a397d;
- color: #ffffff;
- font-size: 12px;
- text-align: center;
- display: none;
-}
-
-#content .download-block .download-info {
- margin: 5px 0px 0px 100px;
- position: relative;
- font-size: 16px;
-}
-
-#content .download-block .download-info .download-name {
- display: block;
- font-weight: bold;
-}
-
-#content .download-block .download-info .download-platform {
- display: block;
- font-size: 14px;
-}
-
-#content .download-block .download-info .min-requirements {
- font-size: 12px;
-}
-
-#content .download-block .download-info .min-requirements a {
- line-height: 40px;
- color: #3E67B1;
- text-decoration: underline;
-}
-
-#content .download-block #licensed-software {
- padding:14px;
- border-top: 1px solid #D3D6DE;
- border-radius: 0px 0px 8px 8px;
- background-color: #D3D6DE;
- font-size: 12px;
- text-align: right;
-}
-
-#content .download-block #licensed-software a {
- color: #3e67b1;
- text-decoration: underline;
-}
-
-/* About Software - Article on homepage */
-
-.profile-homepage #article #article-toolbar #article-header h1 {
- margin: 0px 0px 10px 0px;
- padding: 0px;
- color: #172738;
- font: normal normal bold 22px/1.3em arial, 'open_sansbold', helvetica, sans-serif;
-}
-
-.profile-homepage #article #article-toolbar #article-header h1.title {
- border: none;
-}
-
-.profile-homepage #article #article-header .publishing-info {
- display: none;
-}
-
-.profile-homepage #article .article-body h1 {
- border-top: 1px solid #ECEDF1;
- border-bottom: none;
- padding-top: 25px;
-}
-
-.profile-homepage #article .article-body p {
- margin: 0px 0px 20px 0px;
- line-height: 21px;
- text-align: left;
- font-size: 15px;
-}
-
-.profile-homepage #article .article-body hr {
- display: none;
-}
-
-.profile-homepage #article .article-body ul {
- background-repeat: no-repeat;
- list-style-position: inside;
- list-style-type: disc;
-}
-
-.profile-homepage #article .article-body ul li {
- line-height: 21px;
- text-align: left;
- font-size: 15px;
- list-style: inherit;
-}
-
-/*** end of Software Homepage ***/
-
-/*** Categories and Tags block ***/
-
-#content .box-1 .categories-and-tags-block{
- border-top: 4px solid #2C4B6B;
-}
-
-#content .box-1 .categories-and-tags-block .block-title{
- display: inline-flex;
- margin: 13px 10px 10px 0;
- padding: 3px 0px;
- background: none;
- color: #5E82C6;
- font-family: Arial;
- font-size: 12px;
- font-weight: 300;
-}
-
-#content .box-1 .categories-and-tags-block .category_cloud{
- display: inline-flex;
- margin: 13px 0 10px 0;
- max-width: 87%;
-}
-
-#content .box-1 .categories-and-tags-block .category_cloud a{
- display: inline-block;
- padding: 3px 10px;
- margin: 5px;
- color: #3E67B1;
- background-color: #ECEDF1;
- border: 1px solid #D3D6DE;
- border-radius: 3px;
- font-size: 12px;
-}
-
-#content .box-1 .categories-and-tags-block .category_cloud a:hover{
- border-color: #3a70d1;
- background: #3a70d1;
- color: white;
-}
-
-#content .box-1 .categories-and-tags-block .category_cloud a:link{
- text-decoration: none;
-}
-
-/*** end of categories and tags block ***/
-
-/*** Right bar ***/
-
-/*** WARNING - WHITOUT BOX-4 ***/
-
-/* Link-list block */
-.template-default #content .box-3 .block-title{
- border-top: 4px solid #4562b1;
- line-height: 15px;
- background: #eee;
- color: #4562b1;
-}
-
-.template-default #content .box-3 .link-list-block li{
- margin: 0px;
- padding: 0px;
- border-bottom: 1px solid #ddd;
- border-top: none;
-}
-
-.template-default #content .box-3 .link-list-block li a{
- border-right: none;
- border-top: 0px solid #64946E;
- border-radius: 0px 0px 0px 0px;
- padding: 6px 5px 8px 18px;
- width: auto;
- line-height: 17px;
- background-color: #fff;
- background-position: 0px 50%;
- color: #2C66CE;
- font-weight: normal;
- font-size: 14px;
-}
-
-.template-default #content .box-3 .link-list-block h3.empty + ul{
- border-top: 1px solid #ddd;
-}
-
-.template-default #content .box-3 .link-list-block li a.link-this-page,
-.template-default #content .box-3 .link-list-block li a.link-this-page:hover{
- border-right: none;
-}
-
-.template-default #content .box-3 .link-list-block li a:hover{
- background-color: #FFFFFF;
- color: #000;
-}
-
-.template-default #content .box-3 .link-list-block li a.link-this-page{
- margin-left: 0px;
- width: auto;
- background-color: #ffffff;
- font-weight: bold;
-}
-
-/* Repository and Wiki blocks */
-
-.template-default #content .box-3 .wiki-block,
-.template-default #content .box-3 .repository-block{
- padding: 0 0 0 10px;
-}
-
-.template-default .box-3 #bt_wiki,
-.template-default .box-3 #bt_repositorio {
- border-radius: 4px;
- padding: 12px 10px;
- background: #EAEBEE;
- color: #2C66CE;
- font: normal normal bold 12px 'open_sansbold', arial, helvetica, sans-serif;
- text-transform: uppercase;
- display: block;
- position: relative;
-}
-
-.template-default .box-3 #bt_wiki:hover,
-.template-default .box-3 #bt_repositorio:hover {
- color:#172738;
-}
-
-.template-default .box-3 #bt_wiki:after,
-.template-default .box-3 #bt_repositorio:after{
- margin-top: -2px;
- padding: 4px 0px 4px 2px;
- border-radius: 4px;
- width: 18px;
- right: 10px;
- line-height: 20px;
- position: absolute;
- background: #2C66CE;
- color: #FFF;
- font-size: 16px;
- text-align: center;
- content: url('../images/right-arrow.png');
-}
-
-.template-default .box-3 #content #bt_wiki:hover,
-.template-default .box-3 #content #bt_repositorio:hover{
- color: #FFF;
- background: #2C66CE;
- text-decoration: none;
-}
-/*** END - WARNING - WHITOUT BOX-4 ***/
-
-/*** end of right bar ***/
-
-/************ DUPLICATE ************/
-
-/*
- This part of the code is duplicated because, if there is
- a change of layout from template-default to lefttopright
- the CSS fit without many complication.
- */
-
-/*** Right bar ***/
-
-/*** WARNING - WITH BOX-4 ***/
-
-/* Link-list block */
-.template-lefttopright #content .box-2 .block-title {
- border-top: 4px solid #4562b1;
- line-height: 15px;
- background: #eee;
- color: #4562b1;
-}
-
-.template-lefttopright #content .box-2 .link-list-block li {
- margin: 0px;
- padding: 0px;
- border-bottom: 1px solid #ddd;
- border-top: none;
-}
-
-.template-lefttopright #content .box-2 .link-list-block li a {
- border-right: none;
- border-top: 0px solid #64946E;
- border-radius: 0px 0px 0px 0px;
- padding: 6px 5px 8px 18px;
- width: auto;
- line-height: 17px;
- background-color: #fff;
- background-position: 0px 50%;
- color: #2C66CE;
- font-weight: normal;
- font-size: 14px;
-}
-
-.template-lefttopright #content .box-2 .link-list-block h3.empty + ul {
- border-top: 1px solid #ddd;
-}
-
-.template-lefttopright #content .box-2 .link-list-block li a.link-this-page,
-.template-lefttopright #content .box-2 .link-list-block li a.link-this-page:hover {
- border-right: none;
-}
-
-.template-lefttopright #content .box-2 .link-list-block li a:hover {
- background-color: #FFFFFF;
- color: #000;
-}
-
-.template-lefttopright #content .box-2 .link-list-block li a.link-this-page {
- margin-left: 0px;
- width: auto;
- background-color: #ffffff;
- font-weight: bold;
-}
-
-/* Repository block */
-
-.template-lefttopright #content .box-2 .wiki-block,
-.template-lefttopright #content .box-2 .repository-block{
- padding: 0 0 0 10px;
-}
-
-.template-lefttopright .box-2 #bt_wiki,
-.template-lefttopright .box-2 #bt_repositorio {
- border-radius: 4px;
- padding: 12px 10px;
- background: #EAEBEE;
- color: #2C66CE;
- font: normal normal bold 12px 'open_sansbold', arial, helvetica, sans-serif;
- text-transform: uppercase;
- display: block;
- position: relative;
-}
-
-.template-lefttopright .box-2 #bt_wiki:hover,
-.template-lefttopright .box-2 #bt_repositorio:hover {
- color:#172738;
-}
-
-.template-lefttopright .box-2 #bt_wiki::after,
-.template-lefttopright .box-2 #bt_repositorio::after{
- margin-top: -2px;
- padding: 4px 0px 4px 2px;
- border-radius: 4px;
- width: 18px;
- right: 10px;
- line-height: 20px;
- position: absolute;
- background: #2C66CE;
- color: #FFF;
- font-size: 16px;
- text-align: center;
- content: url('../images/right-arrow.png');
-}
-
-.template-lefttopright .box-2 #content #bt_wiki:hover,
-.template-lefttopright .box-2 #content #bt_repositorio:hover{
- color: #FFF;
- background: #2C66CE;
- text-decoration: none;
-}
-
-/*** WARNING - WITH BOX-4 ***/
-
-/* Metrics Block */
-.software-metrics-block {
- font-family: Arial;
- padding: 3px 0px 0px 10px;
-}
-
-.software-metrics-block .metrics-list {
- border-bottom: 1px dotted #D3D6DE;
-}
-
-.software-metrics-block .metrics-list li {
- display: table;
- margin-bottom: 10px;
-}
-
-.software-metrics-block .metrics-list li span,
-.software-metrics-block .metrics-list li a {
- display: table-cell;
- vertical-align: top;
-}
-
-#content .software-metrics-block .metrics-list li a:link {
- color: #2c66ce;
-}
-
-.software-metrics-block span.arrow-globe-icon {
- background: url('../images/arrow-globe-icon.png') no-repeat center center;
- width: 25px;
- height: 18px;
-}
-
-.software-metrics-block span.downloads-icon {
- background: url('../images/downloads-icon.png') no-repeat center center;
- width: 25px;
- height: 18px;
-}
-
-.software-metrics-block span.face-icon {
- background: url('../images/beneficiados-icon.png') no-repeat center center;
- width: 25px;
- height: 20px;
-}
-
-.software-metrics-block span.pig-safe-icon {
- background: url('../images/economizados-icon.png') no-repeat center center;
- width: 25px;
- height: 20px;
-}
-
-.software-metrics-block .metrics-list li a {
- letter-spacing: -0.1px;
- line-height: 20px;
- padding-left: 5px;
-}
-
-.software-metrics-block .admin-estimation {
- font-size: 11px;
- line-height: 15px;
- margin-top: 7px;
- margin-left: 4px;
-}
-
-.software-metrics-block .metrics-list .saved-money {
- font-size: 14px;
-}
-
-/*** end of right bar ***/
-
-/************ END DUPLICATE ************/
-
-
-/*** Software internal pages ***/
-
-/* FAQ page */
-
-#content .main-block .article-body ul.etapas-publicacao {
- margin-bottom: 20px;
-}
-
-#content .main-block .article-body ul.etapas-publicacao li {
- margin-bottom: 10px;
- list-style: none;
- list-style-position: inside;
-}
-
-#content .main-block .article-body ul.etapas-publicacao li strong {
- margin-right: 6px;
- border-radius: 50%;
- padding: 1px;
- background: #333;
- height: 24px;
- width: 24px;
- color: #fff;
- text-align: center;
- float: left;
-}
-
-#content .main-block .article-body .etapas-publicacao-2 {
- font-weight: bold;
-}
-
-/* Tutorial page */
-
-#content .main-block .article-body p strong {
- font-size: 16px;
-}
-
-#content .main-block .article-body .etapas-publicacao .etapas-publicacao-2 {
- display: table-cell;
-}
-
-#content .main-block .article-body .etapas-publicacao p {
- margin: 0px 0 0 31px;
-}
-
-/* Manual page */
-
-#content .main-block #article .folder-content .item-info {
- border-top: 1px solid #ccc;
- padding: 30px 20px 32px 0px;
-}
-
-#content .main-block #article .folder-content .folder-item:last-child .item-info {
- border-bottom: 1px solid #ccc;
-}
-
-#content .main-block #article .folder-content .item-icon {
- margin: 2px 0px auto auto;
- padding: 45px 40px 4px 10px;
- border: 1px solid #2C66CE;
- border-radius: 4px;
- background: #2C66CE url("../images/download-mini_icon.png") center center no-repeat;
- display: block;
- float: left;
-}
-
-#content .main-block #article .folder-content .item-icon a {
- display: none;
-}
-
-
-#content .main-block #article .folder-content .item-description {
- margin-left: 65px;
- padding-left: 0px;
-}
-
-#content .main-block #article .folder-content .item-description a {
- color: #172938;
- font-size: 18px;
- font-family: Arial;
- font-weight: 700;
- word-wrap: break-word;
-}
-
-/* It's a Specific rule to the Google Chrome. */
-@supports (-webkit-appearance:none) {
- #content .main-block #article .folder-content .item-description a {
- color: #172938;
- font-size: 18px;
- font-family: Arial;
- font-weight: 700;
- white-space: pre;
- word-wrap: break-word;
- }
-}
-
-#content .main-block #article .folder-content .item-date {
- margin-left: 65px;
- padding-left: 0px;
-}
-
-/*** end fo software internal pages ***/
diff --git a/css/tooltip.css b/css/tooltip.css
deleted file mode 100644
index cbd7534..0000000
--- a/css/tooltip.css
+++ /dev/null
@@ -1,62 +0,0 @@
-.tooltip {
- position: absolute;
- width: -moz-fit-content;
- width: -webkit-fit-content;
- width: fit-content;
- max-width:280px;
- padding: 15px 10px 15px 20px;
- background: #172638;
- color: white;
- font-family: Arial, sans-serif;
- font-size: 13px;
- border-radius: 5px;
- border: 0px !important;
- z-index: 1070;
- margin: -10px 0;
-}
-
-.tooltip-bottom:after {
- content: " ";
- height: 0;
- width: 0;
- margin-left: -6px;
- position: absolute;
- bottom: 100%;
- left: 50%;
- border: solid transparent;
- border-bottom-color: #172638;
- border-width: 6px;
-}
-
-.tooltip:after {
- content: " ";
- height: 0;
- width: 0;
- margin-left: -6px;
- position: absolute;
- top: 100%;
- left: 50%;
- border: solid transparent;
- border-top-color: #172638;
- border-width: 6px;
-}
-
-/*Fix temporary - class="tooltip" send e-mail administrator community*/
-
-.action-contact-new .tooltip{
- position:initial;
- background:none;
- color:#172537;
- font-family: Arial, sans-serif;
- max-width: 520px;
- padding: 15px 20px;
- margin: 20px 0 30px 0;
- border: 1px dotted #ccc !important;
- border-left: 5px solid #FF0366 !important;
- line-height: 20px;
-}
-
-.action-contact-new .tooltip:after{
- content:none;
-}
-/*************************************/
\ No newline at end of file
diff --git a/css/use-report.css b/css/use-report.css
deleted file mode 100644
index 9186e84..0000000
--- a/css/use-report.css
+++ /dev/null
@@ -1,534 +0,0 @@
-/*** Profile homepage ***/
-
-/* Ratings Header */
-.profile-homepage #content .organization-average-rating-container {
- margin-top: 21px;
- overflow: auto;
-}
-
-.profile-homepage #content .organization-average-rating-container .star-rate-text {
- font-size: 14px;
- letter-spacing: 0.2px;
- margin-right: 5px;
- padding: 4px 0px 0px 3px;
-}
-
-.profile-homepage #content .organization-average-rating-container .star-container {
- margin-top: 2px;
-}
-
-.profile-homepage #content .organization-average-rating-container .rate-this-organization {
- font-size: 14px;
- text-decoration: underline;
- margin: 4px 0px 0px 6px;
- padding: 0px 0px 0px 15px;
-}
-
-.profile-homepage #content .organization-average-rating-container .rate-this-organization a {
- color: #2c66ce;
-}
-
-.profile-homepage #content .organization-average-rating-container .star-container .medium-star-negative,
-.profile-homepage #content .organization-average-rating-container .star-container .medium-star-positive {
- margin-right: 3px;
-}
-
-.profile-homepage #content .communities-ratings-block .button-bar a.button.with-text {
- height: 32px;
- padding: 0px 5px;
- border: 1px solid #3E67B1;
- font-family: 'open_sansbold';
- font-size: 14px;
- line-height: 32px;
- text-transform: uppercase;
-}
-
-/* Use report list */
-
-.profile-homepage #content .communities-ratings-block .ratings-title .block-title {
- background: none;
- border-bottom: 1px solid #D3D6DE;
- border-top: none;
- color: #172738;
- font-size: 20px;
- font-weight: 700;
- letter-spacing: 1.8px;
- margin-bottom: 0px;
- padding: 0px 0px 12px 4px;
-}
-
-.profile-homepage #content .communities-ratings-block .ratings-list .make-report-block {
- margin-top: 0px;
- padding-top: 32px;
- background-repeat: no-repeat;
- border-bottom: 1px solid #D3D6DE;
- border-top: none;
- font-family: Arial;
-}
-
-#content #software-information-block-table {
- width: 100%;
-}
-
-#content #software-information-block-table h1 {
- font-size: 34px;
-}
-
-#content #software-information-block-table #col-profile-big-image {
- padding-right: 0px;
-}
-
-#content #software-information-block-table #col-software-name {
- padding-left: 0px;
-}
-
-
-#content .organization-average-rating-container {
- margin-top: 21px;
- overflow: auto;
-}
-
-#content .organization-average-rating-container .star-rate-text {
- font-size: 14px;
- letter-spacing: 0.2px;
- margin-right: 5px;
- padding: 4px 0px 0px 3px;
-}
-
-#content .organization-average-rating-container .star-container {
- margin-top: 2px;
-}
-
-#content .organization-average-rating-container .rate-this-organization {
- font-size: 14px;
- text-decoration: underline;
- margin: 4px 0px 0px 6px;
- padding: 0px 0px 0px 15px;
-}
-
-#content .organization-average-rating-container .star-container .medium-star-negative,
-#content .organization-average-rating-container .star-container .medium-star-positive {
- margin-right: 3px;
-}
-
-/*** Internal Page ***/
-
-#content .main-content .star-page-title,
-#content .main-content .star-rate-data {
- max-width: 560px;
-}
-
-#content .main-content .star-page-title .title {
- font-size: 34px;
-}
-
-#content .main-content .star-rate-data {
- border-bottom: 1px solid #D3D6DE;
- border-top: 1px solid #D3D6DE;
- color: #172738;
- margin-top: 16px;
- padding: 29px 0px 21px 0px;
- overflow: visible;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-rate-text,
-#content .main-content .star-rate-data .star-rate-form .star-container {
- display: inline;
- float: left;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-container {
- width: inherit;
- height: 30px;
- padding-left: 6px;
-}
-
-#content .main-content .star-rate-data .star-rate-form {
- padding: 0 37px;
- letter-spacing: 0.1px;
- width: 100%;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-rate-text {
- font-size: 14px;
- padding-top: 4px;
-}
-
-#content .main-content .star-rate-data .star-profile-information {
- padding-left: 15px;
- width: 79px;
-}
-
-#content .main-content .star-rate-data .star-profile-information .star-profile-image {
- padding-top: 1px;
-}
-
-#content .main-content .star-rate-data .star-profile-information .star-profile-image img {
- border-radius: 4px;
- height: 60px;
- width: 60px;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-container .star-positive {
- background-image: url('../images/star-positive-big.png');
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-container .star-negative {
- background-image: url('../images/star-negative-big.png');
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-container .star-positive,
-#content .main-content .star-rate-data .star-rate-form .star-container .star-negative {
- display: table-cell;
- margin-right: 0px;
- height: 30px;
- width: 28px;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-comment-container {
- padding-top: 23px;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-comment-container .formlabel {
- letter-spacing: -0.2px;
- margin-bottom: 2px;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-comment-container #comments_body {
- border-radius: 4px;
- height: 91px;
- background: none #FFFFFF;
- border: 1px solid #DDDDDD;
- color: #585858;
- font-size: 16px;
- width: 100%;
- word-wrap: break-word;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar input {
- background-color: #3E67B1;
- font-weight: 700;
- text-transform: uppercase;
- color: #FFF;
- padding: 5px;
- height: 31px;
- line-height: 20px;
- font-family: Arial;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar a {
- display: none;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar {
- padding-bottom: 50px;
-}
-
-#content .main-content .star-rate-data .star-rate-form .star-notice {
- display: none;
- float: left;
- margin-top: 10px;
- margin-left: 10px;
-}
-
-#content .star-rate-form .star-comment-container .comments-software-extra-fields {
- height: 0;
- overflow: hidden;
-}
-
-#content .star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments {
- margin-bottom: 19px;
- margin-top: 16px;
- height: 50px;
-}
-
-#content .star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments label {
- font-size: 12px;
-}
-
-#content .star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments input {
- display: block;
- height: 19px;
- width: 335px;
- padding: 6px;
- margin-top: 3px;
- color: rgb(88, 88, 88);
- border: 1px solid rgb(204, 204, 204);
- border-image-source: initial;
- border-image-slice: initial;
- border-image-width: initial;
- border-image-outset: initial;
- border-image-repeat: initial;
- border-radius: 4px;
- font-size: 15px;
- font-family: Arial, helvetica;
-}
-
-#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-people-benefited,
-#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-saved-values {
- font-size: 12px;
- float: left;
- padding-right: 10px;
- height: 50px;
-}
-
-#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-saved-values {
- padding-right: 0px;
- height: 70px;
-}
-
-#content .star-rate-form .star-comment-container form .formfieldline {
- margin-bottom: 17px;
-}
-
-#content .star-rate-form .star-comment-container .comments-display-fields {
- border-bottom: 1px dotted #D3D6DE;
- overflow: auto;
-}
-
-#content .star-rate-form .star-comment-container .comments-display-fields:hover span,
-#content .star-rate-form .star-comment-container .comments-display-fields:hover span:after {
- opacity: 0.6;
-}
-
-#content .star-rate-form .star-comment-container .comments-display-fields span#comments-additional-information {
- color: #172738;
- display: block;
- float: left;
- font-size: 14px;
- font-weight: 700;
- padding-bottom: 4px;
-}
-
-.action-organization_ratings_plugin_profile-new_rating #content .star-rate-form .star-comment-container .comments-display-fields .comments-arrow-up::after {
- content: url('../images/top-arrow-black.png');
- float: right;
- padding-top: 7px;
- padding-right: 6px;
-}
-
-.action-organization_ratings_plugin_profile-new_rating #content .star-rate-form .star-comment-container .comments-display-fields .comments-arrow-down::after {
- content: url('../images/bottom-arrow-black.png');
- float: right;
- padding-top: 7px;
- padding-right: 6px;
-}
-
-#content .star-rate-form .star-comment-container .comments-software-extra-fields #organization_rating_people_benefited,
-#content .star-rate-form .star-comment-container .comments-software-extra-fields #organization_rating_saved_value {
- display: block;
- height: 19px;
- width: 155px;
- margin-top: 4px;
- padding: 6px;
- border: 1px solid rgb(204, 204, 204);
- border-image-source: initial;
- border-image-slice: initial;
- border-image-width: initial;
- border-image-outset: initial;
- border-image-repeat: initial;
- border-radius: 4px;
- font-size: 15px;
- font-family: Arial, helvetica;
- color: rgb(88, 88, 88);
-}
-
-#content .star-rate-form .star-comment-container .star-tooltip {
- cursor: default;
- content: '?';
- border-radius: 90%;
- font-size: 12px;
- font-weight: 700;
- background: #3867b7;
- color: #fff;
- margin-left: 4px;
- padding: 0px 6px;
-}
-
-.ratings-list {
- color: #172738;
- font-family: Arial, Helvetica, "open_sansregular", sans-serif;
-}
-
-.ratings-list .user-rating-block {
- border-bottom: 1px solid #D3D6DE;
- border-top: none;
- padding-bottom: 40px;
- padding-top: 32px;
- margin-top: 0px;
-}
-
-.ratings-list .star-profile-information {
- padding: 1px 30px 0px 14px;
- width: 99px;
-}
-
-.ratings-list .user-rating-block .star-profile-information .star-profile-name {
- line-height: 16px;
- width: 70px;
-}
-
-.ratings-list .star-profile-information .star-profile-image img {
- border-radius: 4px;
- height: 60px;
-}
-
-.ratings-list .user-rating-block .user-testimony-container {
- width: 100%;
-}
-
-.ratings-list .user-rating-block .user-testimony-container .star-container div {
- display: inline;
-}
-
-.ratings-list .user-rating-block .user-testimony-container .user-testimony {
- font-size: 16px;
- line-height: 20px;
- margin-top: 31px;
- min-height: 60px;
-}
-
-.star-rate-data .star-rate-form .star-comment-container .formfield textarea {
- width: 100%;
-}
-
-.ratings-list .user-rating-block .user-testimony-container .testimony-rate-date {
- display: block;
- float: left;
- padding-right: 0px;
- width: 100px;
-}
-
-.ratings-list .star-container {
- display: block;
- float: right;
- width: auto;
-}
-
-.ratings-list .star-container .small-star-positive,
-.ratings-list .star-container .small-star-negative {
- margin-right: 3px;
-}
-
-.ratings-list .user-rating-block .user-testimony-container .testimony-rate-date {
- display: block;
- float: left;
- margin-top: 2px;
-}
-
-.ratings-list .user-rating-block .user-testimony-container .additional-informations {
- margin-top: 10px;
-}
-
-#content .ratings-title .block-title {
- background: none;
- border-bottom: 1px solid #D3D6DE;
- border-top: none;
- color: #172738;
- font-size: 20px;
- font-weight: 700;
- letter-spacing: 1.8px;
- margin-bottom: 0px;
- padding: 0px 0px 12px 4px;
-}
-
-.ratings-list .make-report-block {
- background-repeat: no-repeat;
- border-bottom: 1px solid #D3D6DE;
- border-top: none;
- margin-top: 0px;
- padding-top: 32px;
-}
-
-.make-report-block .star-profile-information {
- padding-right: 13px;
- padding-left: 0px;
-}
-
-.make-report-block .star-profile-information .star-profile-name {
- margin-top: 8px;
- width: 70px;
-}
-
-.ratings-list .make-report-block .make-report-container {
- padding-top: 2px;
-}
-
-.ratings-list .make-report-block .make-report-container .make-report-message {
- font-family: Arial;
- font-weight: 300;
- font-size: 18px;
-}
-
-.ratings-list .make-report-block .make-report-container .button-bar {
- padding-top: 6px;
-}
-
-.ratings-list .make-report-block .make-report-container .alert {
- margin-top: 37px;
- padding-left: 1px;
-}
-
-.ratings-list .make-report-block .make-report-container .button-bar a,
-.star-rate-data .rating-cooldown .button-bar a,
-.star-rate-data .rating-vote-once .button-bar a {
- background-color: #3E67B1;
- background-image: none;
- color: #fff;
- font-weight: 700;
- font-size: 14px;
- font-style: normal;
- height: 31px;
- padding: 0px 7px 0px 7px;
- text-transform: uppercase;
-}
-
-.star-rate-data .rating-cooldown,
-.star-rate-data .rating-vote-once {
- font-family: Arial;
- font-size: 18px;
- font-style: italic;
- word-break: break-word;
-}
-
-.star-rate-data .rating-cooldown .button-bar a.disabled-button,
-.star-rate-data .rating-vote-once .button-bar a.disabled-button {
- cursor: not-allowed;
- opacity: 0.4;
-}
-
-.ratings-list .see-more {
- border-top: none;
-}
-
-.ratings-list a.icon-arrow-right-p {
- background: none;
- color: #172738;
- font-family: 'open_sansregular';
- font-size: 11px;
- float: none;
- margin-top: 0px;
- padding-right: 0px;
- padding-top: 22px;
- padding-bottom: 20px;
- text-align: right;
- text-transform: uppercase;
-}
-
-.ratings-list a.icon-arrow-right-p::after {
- background-color: #3E67B1;
- border-radius: 4px;
- content: url('../images/right-arrow.png');
- font-size: 15px;
- line-height: 20px;
- margin-left: 9px;
- padding-left: 8px;
- padding-right: 5px;
- text-align: center;
-}
-
-/*** Tooltip ***/
-
-.comments-software-extra-fields .tooltip-inner {
- display: block;
-}
diff --git a/favicon.ico b/favicon.ico
deleted file mode 100644
index f8c4036..0000000
Binary files a/favicon.ico and /dev/null differ
diff --git a/font-awesome.min.css b/font-awesome.min.css
deleted file mode 100644
index ca0591c..0000000
--- a/font-awesome.min.css
+++ /dev/null
@@ -1,4 +0,0 @@
-/*!
- * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.3.0');src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}
\ No newline at end of file
diff --git a/fonts/FontAwesome.otf b/fonts/FontAwesome.otf
deleted file mode 100644
index f7936cc..0000000
Binary files a/fonts/FontAwesome.otf and /dev/null differ
diff --git a/fonts/fontawesome-webfont.eot b/fonts/fontawesome-webfont.eot
deleted file mode 100644
index 33b2bb8..0000000
Binary files a/fonts/fontawesome-webfont.eot and /dev/null differ
diff --git a/fonts/fontawesome-webfont.svg b/fonts/fontawesome-webfont.svg
deleted file mode 100644
index 1ee89d4..0000000
--- a/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,565 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/fonts/fontawesome-webfont.ttf b/fonts/fontawesome-webfont.ttf
deleted file mode 100644
index ed9372f..0000000
Binary files a/fonts/fontawesome-webfont.ttf and /dev/null differ
diff --git a/fonts/fontawesome-webfont.woff b/fonts/fontawesome-webfont.woff
deleted file mode 100644
index 8b280b9..0000000
Binary files a/fonts/fontawesome-webfont.woff and /dev/null differ
diff --git a/fonts/fontawesome-webfont.woff2 b/fonts/fontawesome-webfont.woff2
deleted file mode 100644
index 3311d58..0000000
Binary files a/fonts/fontawesome-webfont.woff2 and /dev/null differ
diff --git a/fonts/opensans-300-webfont.eot b/fonts/opensans-300-webfont.eot
deleted file mode 100755
index abfdfa3..0000000
Binary files a/fonts/opensans-300-webfont.eot and /dev/null differ
diff --git a/fonts/opensans-300-webfont.svg b/fonts/opensans-300-webfont.svg
deleted file mode 100755
index 1fb17a5..0000000
--- a/fonts/opensans-300-webfont.svg
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/fonts/opensans-300-webfont.ttf b/fonts/opensans-300-webfont.ttf
deleted file mode 100755
index c6d08b2..0000000
Binary files a/fonts/opensans-300-webfont.ttf and /dev/null differ
diff --git a/fonts/opensans-300-webfont.woff b/fonts/opensans-300-webfont.woff
deleted file mode 100755
index b1020fd..0000000
Binary files a/fonts/opensans-300-webfont.woff and /dev/null differ
diff --git a/fonts/opensans-400-webfont.eot b/fonts/opensans-400-webfont.eot
deleted file mode 100755
index 58b80a7..0000000
Binary files a/fonts/opensans-400-webfont.eot and /dev/null differ
diff --git a/fonts/opensans-400-webfont.svg b/fonts/opensans-400-webfont.svg
deleted file mode 100755
index b951665..0000000
--- a/fonts/opensans-400-webfont.svg
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/fonts/opensans-400-webfont.ttf b/fonts/opensans-400-webfont.ttf
deleted file mode 100755
index 78a9bf2..0000000
Binary files a/fonts/opensans-400-webfont.ttf and /dev/null differ
diff --git a/fonts/opensans-400-webfont.woff b/fonts/opensans-400-webfont.woff
deleted file mode 100755
index 4a54090..0000000
Binary files a/fonts/opensans-400-webfont.woff and /dev/null differ
diff --git a/fonts/opensans-600-webfont.eot b/fonts/opensans-600-webfont.eot
deleted file mode 100755
index e99d282..0000000
Binary files a/fonts/opensans-600-webfont.eot and /dev/null differ
diff --git a/fonts/opensans-600-webfont.svg b/fonts/opensans-600-webfont.svg
deleted file mode 100755
index 6306b56..0000000
--- a/fonts/opensans-600-webfont.svg
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/fonts/opensans-600-webfont.ttf b/fonts/opensans-600-webfont.ttf
deleted file mode 100755
index 174bed4..0000000
Binary files a/fonts/opensans-600-webfont.ttf and /dev/null differ
diff --git a/fonts/opensans-600-webfont.woff b/fonts/opensans-600-webfont.woff
deleted file mode 100755
index f24aeb4..0000000
Binary files a/fonts/opensans-600-webfont.woff and /dev/null differ
diff --git a/fonts/opensans-700-webfont.eot b/fonts/opensans-700-webfont.eot
deleted file mode 100755
index dfbcb12..0000000
Binary files a/fonts/opensans-700-webfont.eot and /dev/null differ
diff --git a/fonts/opensans-700-webfont.svg b/fonts/opensans-700-webfont.svg
deleted file mode 100755
index 24c6ba3..0000000
--- a/fonts/opensans-700-webfont.svg
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/fonts/opensans-700-webfont.ttf b/fonts/opensans-700-webfont.ttf
deleted file mode 100755
index 5427c4d..0000000
Binary files a/fonts/opensans-700-webfont.ttf and /dev/null differ
diff --git a/fonts/opensans-700-webfont.woff b/fonts/opensans-700-webfont.woff
deleted file mode 100755
index 1a731f0..0000000
Binary files a/fonts/opensans-700-webfont.woff and /dev/null differ
diff --git a/fonts/opensans-800-webfont.eot b/fonts/opensans-800-webfont.eot
deleted file mode 100755
index f687e2a..0000000
Binary files a/fonts/opensans-800-webfont.eot and /dev/null differ
diff --git a/fonts/opensans-800-webfont.svg b/fonts/opensans-800-webfont.svg
deleted file mode 100755
index daf84f0..0000000
--- a/fonts/opensans-800-webfont.svg
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/fonts/opensans-800-webfont.ttf b/fonts/opensans-800-webfont.ttf
deleted file mode 100755
index 079934c..0000000
Binary files a/fonts/opensans-800-webfont.ttf and /dev/null differ
diff --git a/fonts/opensans-800-webfont.woff b/fonts/opensans-800-webfont.woff
deleted file mode 100755
index 4a69fa6..0000000
Binary files a/fonts/opensans-800-webfont.woff and /dev/null differ
diff --git a/footer.html.erb b/footer.html.erb
deleted file mode 100644
index 8a7c49a..0000000
--- a/footer.html.erb
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/header.html.erb b/header.html.erb
deleted file mode 100644
index 5c5a3cf..0000000
--- a/header.html.erb
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
-
-
diff --git a/html-reference-resource/blog.html b/html-reference-resource/blog.html
deleted file mode 100644
index b9d2d24..0000000
--- a/html-reference-resource/blog.html
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/html-reference-resource/event.html b/html-reference-resource/event.html
deleted file mode 100644
index 3f633b4..0000000
--- a/html-reference-resource/event.html
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/html-reference-resource/list-item-initial-page.html b/html-reference-resource/list-item-initial-page.html
deleted file mode 100644
index e2b8c0c..0000000
--- a/html-reference-resource/list-item-initial-page.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
- Dezembro 11, 2014
-
-
\ No newline at end of file
diff --git a/images/503-logo.jpg b/images/503-logo.jpg
deleted file mode 100644
index 9abf016..0000000
Binary files a/images/503-logo.jpg and /dev/null differ
diff --git a/images/503-small.jpg b/images/503-small.jpg
deleted file mode 100644
index c2c0efa..0000000
Binary files a/images/503-small.jpg and /dev/null differ
diff --git a/images/503.jpg b/images/503.jpg
deleted file mode 100644
index 5048c71..0000000
Binary files a/images/503.jpg and /dev/null differ
diff --git a/images/acesso-a-informacao.png b/images/acesso-a-informacao.png
deleted file mode 100644
index fffec98..0000000
Binary files a/images/acesso-a-informacao.png and /dev/null differ
diff --git a/images/acesso-a-infornacao.png b/images/acesso-a-infornacao.png
deleted file mode 100644
index fffec98..0000000
Binary files a/images/acesso-a-infornacao.png and /dev/null differ
diff --git a/images/alerta-cadastro16.jpg b/images/alerta-cadastro16.jpg
deleted file mode 100644
index 2ba5a10..0000000
Binary files a/images/alerta-cadastro16.jpg and /dev/null differ
diff --git a/images/arrow-globe-icon.png b/images/arrow-globe-icon.png
deleted file mode 100644
index 4446447..0000000
Binary files a/images/arrow-globe-icon.png and /dev/null differ
diff --git a/images/arrow_down.jpg b/images/arrow_down.jpg
deleted file mode 100644
index ae93957..0000000
Binary files a/images/arrow_down.jpg and /dev/null differ
diff --git a/images/arrow_right.jpg b/images/arrow_right.jpg
deleted file mode 100644
index c91c8d0..0000000
Binary files a/images/arrow_right.jpg and /dev/null differ
diff --git a/images/background_footer.png b/images/background_footer.png
deleted file mode 100644
index 2082c3e..0000000
Binary files a/images/background_footer.png and /dev/null differ
diff --git a/images/balao-amarelo.png b/images/balao-amarelo.png
deleted file mode 100644
index a3adc03..0000000
Binary files a/images/balao-amarelo.png and /dev/null differ
diff --git a/images/balloon-icon.png b/images/balloon-icon.png
deleted file mode 100644
index 6974af1..0000000
Binary files a/images/balloon-icon.png and /dev/null differ
diff --git a/images/barra-menu-user-bg.png b/images/barra-menu-user-bg.png
deleted file mode 100644
index 08e7707..0000000
Binary files a/images/barra-menu-user-bg.png and /dev/null differ
diff --git a/images/barra-psocial-bg-contarste.png b/images/barra-psocial-bg-contarste.png
deleted file mode 100644
index d533843..0000000
Binary files a/images/barra-psocial-bg-contarste.png and /dev/null differ
diff --git a/images/barra-psocial-bg.png b/images/barra-psocial-bg.png
deleted file mode 100644
index c379867..0000000
Binary files a/images/barra-psocial-bg.png and /dev/null differ
diff --git a/images/barra-psocial.png b/images/barra-psocial.png
deleted file mode 100644
index f2946eb..0000000
Binary files a/images/barra-psocial.png and /dev/null differ
diff --git a/images/beneficiados-icon.png b/images/beneficiados-icon.png
deleted file mode 100644
index 180191d..0000000
Binary files a/images/beneficiados-icon.png and /dev/null differ
diff --git a/images/bg-bloco-de-trilhas.png b/images/bg-bloco-de-trilhas.png
deleted file mode 100644
index df72b20..0000000
Binary files a/images/bg-bloco-de-trilhas.png and /dev/null differ
diff --git a/images/bg-btn-ver-mais-1px.png b/images/bg-btn-ver-mais-1px.png
deleted file mode 100644
index 1ffab6a..0000000
Binary files a/images/bg-btn-ver-mais-1px.png and /dev/null differ
diff --git a/images/bg-fundo-verde-tags.png b/images/bg-fundo-verde-tags.png
deleted file mode 100644
index 82ca489..0000000
Binary files a/images/bg-fundo-verde-tags.png and /dev/null differ
diff --git a/images/bg-linhas-cinza.png b/images/bg-linhas-cinza.png
deleted file mode 100644
index 3dcb773..0000000
Binary files a/images/bg-linhas-cinza.png and /dev/null differ
diff --git a/images/bg-menu-mobile-panel.png b/images/bg-menu-mobile-panel.png
deleted file mode 100644
index 0a084bf..0000000
Binary files a/images/bg-menu-mobile-panel.png and /dev/null differ
diff --git a/images/bg-menu-mobile.png b/images/bg-menu-mobile.png
deleted file mode 100644
index 3b7954f..0000000
Binary files a/images/bg-menu-mobile.png and /dev/null differ
diff --git a/images/bg-paginacao-preto.png b/images/bg-paginacao-preto.png
deleted file mode 100644
index 5d8f15a..0000000
Binary files a/images/bg-paginacao-preto.png and /dev/null differ
diff --git a/images/bg-paginacao.png b/images/bg-paginacao.png
deleted file mode 100644
index 1362729..0000000
Binary files a/images/bg-paginacao.png and /dev/null differ
diff --git a/images/bg-palacio-do-planalto.jpg b/images/bg-palacio-do-planalto.jpg
deleted file mode 100644
index 7034432..0000000
Binary files a/images/bg-palacio-do-planalto.jpg and /dev/null differ
diff --git a/images/bg-titulo-interno.png b/images/bg-titulo-interno.png
deleted file mode 100644
index b186658..0000000
Binary files a/images/bg-titulo-interno.png and /dev/null differ
diff --git a/images/bg-titulo-login.png b/images/bg-titulo-login.png
deleted file mode 100644
index 3672fa0..0000000
Binary files a/images/bg-titulo-login.png and /dev/null differ
diff --git a/images/bg_h1.gif b/images/bg_h1.gif
deleted file mode 100644
index 2f5414f..0000000
Binary files a/images/bg_h1.gif and /dev/null differ
diff --git a/images/bg_h3_busca.gif b/images/bg_h3_busca.gif
deleted file mode 100644
index 73faf7f..0000000
Binary files a/images/bg_h3_busca.gif and /dev/null differ
diff --git a/images/bg_tags.png b/images/bg_tags.png
deleted file mode 100644
index 2e30379..0000000
Binary files a/images/bg_tags.png and /dev/null differ
diff --git a/images/border-hor.png b/images/border-hor.png
deleted file mode 100644
index 8c1f185..0000000
Binary files a/images/border-hor.png and /dev/null differ
diff --git a/images/border-ver.png b/images/border-ver.png
deleted file mode 100644
index 037ebdb..0000000
Binary files a/images/border-ver.png and /dev/null differ
diff --git a/images/botao-enviar-pairwise.png b/images/botao-enviar-pairwise.png
deleted file mode 100644
index 9f5025b..0000000
Binary files a/images/botao-enviar-pairwise.png and /dev/null differ
diff --git a/images/bottom-arrow-black.png b/images/bottom-arrow-black.png
deleted file mode 100644
index 61b3730..0000000
Binary files a/images/bottom-arrow-black.png and /dev/null differ
diff --git a/images/bottom-arrow.png b/images/bottom-arrow.png
deleted file mode 100644
index eb49326..0000000
Binary files a/images/bottom-arrow.png and /dev/null differ
diff --git a/images/brasil.png b/images/brasil.png
deleted file mode 100644
index 0ac6ed2..0000000
Binary files a/images/brasil.png and /dev/null differ
diff --git a/images/btn_busca.png b/images/btn_busca.png
deleted file mode 100644
index 5e3dd03..0000000
Binary files a/images/btn_busca.png and /dev/null differ
diff --git a/images/btn_cancelar_login.png b/images/btn_cancelar_login.png
deleted file mode 100644
index b081e5e..0000000
Binary files a/images/btn_cancelar_login.png and /dev/null differ
diff --git a/images/btn_commit.png b/images/btn_commit.png
deleted file mode 100644
index 5e3dd03..0000000
Binary files a/images/btn_commit.png and /dev/null differ
diff --git a/images/btn_continue.png b/images/btn_continue.png
deleted file mode 100644
index 74445f1..0000000
Binary files a/images/btn_continue.png and /dev/null differ
diff --git a/images/btn_duvida_pairwise.png b/images/btn_duvida_pairwise.png
deleted file mode 100644
index 49f06ac..0000000
Binary files a/images/btn_duvida_pairwise.png and /dev/null differ
diff --git a/images/btn_duvida_pairwise_hover.png b/images/btn_duvida_pairwise_hover.png
deleted file mode 100644
index 666f105..0000000
Binary files a/images/btn_duvida_pairwise_hover.png and /dev/null differ
diff --git a/images/btn_entrar_login.png b/images/btn_entrar_login.png
deleted file mode 100644
index 7900127..0000000
Binary files a/images/btn_entrar_login.png and /dev/null differ
diff --git a/images/btn_entrar_login_hover.png b/images/btn_entrar_login_hover.png
deleted file mode 100644
index e3bb0d7..0000000
Binary files a/images/btn_entrar_login_hover.png and /dev/null differ
diff --git a/images/bullet.png b/images/bullet.png
deleted file mode 100644
index e5fb945..0000000
Binary files a/images/bullet.png and /dev/null differ
diff --git a/images/button-read-more-vazio-contraste.png b/images/button-read-more-vazio-contraste.png
deleted file mode 100755
index 0be02f4..0000000
Binary files a/images/button-read-more-vazio-contraste.png and /dev/null differ
diff --git a/images/button-read-more-vazio.png b/images/button-read-more-vazio.png
deleted file mode 100644
index fe2488e..0000000
Binary files a/images/button-read-more-vazio.png and /dev/null differ
diff --git a/images/button-read-more2.png b/images/button-read-more2.png
deleted file mode 100644
index 6d0c0f0..0000000
Binary files a/images/button-read-more2.png and /dev/null differ
diff --git a/images/cabecalho_pairwise.png b/images/cabecalho_pairwise.png
deleted file mode 100755
index 6756212..0000000
Binary files a/images/cabecalho_pairwise.png and /dev/null differ
diff --git a/images/cadeado.png b/images/cadeado.png
deleted file mode 100644
index f2e1c87..0000000
Binary files a/images/cadeado.png and /dev/null differ
diff --git a/images/calendar-icon.png b/images/calendar-icon.png
deleted file mode 100644
index 6ea0a2b..0000000
Binary files a/images/calendar-icon.png and /dev/null differ
diff --git a/images/carta-comentarios.png b/images/carta-comentarios.png
deleted file mode 100644
index c72c4f2..0000000
Binary files a/images/carta-comentarios.png and /dev/null differ
diff --git a/images/chat-icon.png b/images/chat-icon.png
deleted file mode 100644
index a79c397..0000000
Binary files a/images/chat-icon.png and /dev/null differ
diff --git a/images/coala.jpeg b/images/coala.jpeg
deleted file mode 100644
index 6e8eaac..0000000
Binary files a/images/coala.jpeg and /dev/null differ
diff --git a/images/comentarios.png b/images/comentarios.png
deleted file mode 100644
index f1855a3..0000000
Binary files a/images/comentarios.png and /dev/null differ
diff --git a/images/comunidade-evento-imagem-evento.jpg b/images/comunidade-evento-imagem-evento.jpg
deleted file mode 100644
index db178f2..0000000
Binary files a/images/comunidade-evento-imagem-evento.jpg and /dev/null differ
diff --git a/images/comunidade-evento-imagem-evento.png b/images/comunidade-evento-imagem-evento.png
deleted file mode 100644
index 838d29d..0000000
Binary files a/images/comunidade-evento-imagem-evento.png and /dev/null differ
diff --git a/images/docs-board-icon.png b/images/docs-board-icon.png
deleted file mode 100644
index 8f66ef5..0000000
Binary files a/images/docs-board-icon.png and /dev/null differ
diff --git a/images/download-icon.png b/images/download-icon.png
deleted file mode 100644
index e47f2a3..0000000
Binary files a/images/download-icon.png and /dev/null differ
diff --git a/images/download-mini_icon.png b/images/download-mini_icon.png
deleted file mode 100644
index eb1f5e0..0000000
Binary files a/images/download-mini_icon.png and /dev/null differ
diff --git a/images/downloads-icon.png b/images/downloads-icon.png
deleted file mode 100644
index 1973db5..0000000
Binary files a/images/downloads-icon.png and /dev/null differ
diff --git a/images/economizados-icon.png b/images/economizados-icon.png
deleted file mode 100644
index 75fa752..0000000
Binary files a/images/economizados-icon.png and /dev/null differ
diff --git a/images/em-destaque.png b/images/em-destaque.png
deleted file mode 100644
index d729d35..0000000
Binary files a/images/em-destaque.png and /dev/null differ
diff --git a/images/enterprise-big.png b/images/enterprise-big.png
deleted file mode 100644
index 12746e8..0000000
Binary files a/images/enterprise-big.png and /dev/null differ
diff --git a/images/enterprise-icon.png b/images/enterprise-icon.png
deleted file mode 100644
index 8f31987..0000000
Binary files a/images/enterprise-icon.png and /dev/null differ
diff --git a/images/enterprise-minor.png b/images/enterprise-minor.png
deleted file mode 100644
index 4460368..0000000
Binary files a/images/enterprise-minor.png and /dev/null differ
diff --git a/images/enterprise-portrait.png b/images/enterprise-portrait.png
deleted file mode 100644
index 637515b..0000000
Binary files a/images/enterprise-portrait.png and /dev/null differ
diff --git a/images/enterprise-thumb.png b/images/enterprise-thumb.png
deleted file mode 100644
index 68f65e1..0000000
Binary files a/images/enterprise-thumb.png and /dev/null differ
diff --git a/images/facebook-widget.png b/images/facebook-widget.png
deleted file mode 100644
index 60fb8f8..0000000
Binary files a/images/facebook-widget.png and /dev/null differ
diff --git a/images/facebook.png b/images/facebook.png
deleted file mode 100644
index 5895cc6..0000000
Binary files a/images/facebook.png and /dev/null differ
diff --git a/images/favicon.ico b/images/favicon.ico
deleted file mode 100644
index f8c4036..0000000
Binary files a/images/favicon.ico and /dev/null differ
diff --git a/images/flag-en.gif b/images/flag-en.gif
deleted file mode 100644
index 350aa05..0000000
Binary files a/images/flag-en.gif and /dev/null differ
diff --git a/images/flag-en.png b/images/flag-en.png
deleted file mode 100644
index 0f4fb95..0000000
Binary files a/images/flag-en.png and /dev/null differ
diff --git a/images/flag-es.gif b/images/flag-es.gif
deleted file mode 100644
index b98c599..0000000
Binary files a/images/flag-es.gif and /dev/null differ
diff --git a/images/flag-pt_br.png b/images/flag-pt_br.png
deleted file mode 100644
index f0e0221..0000000
Binary files a/images/flag-pt_br.png and /dev/null differ
diff --git a/images/flickr.png b/images/flickr.png
deleted file mode 100644
index bc3aee7..0000000
Binary files a/images/flickr.png and /dev/null differ
diff --git a/images/fundo-de-tela-amarelo.png b/images/fundo-de-tela-amarelo.png
deleted file mode 100644
index 44ffb0d..0000000
Binary files a/images/fundo-de-tela-amarelo.png and /dev/null differ
diff --git a/images/globe-icon.png b/images/globe-icon.png
deleted file mode 100644
index a15bbab..0000000
Binary files a/images/globe-icon.png and /dev/null differ
diff --git a/images/google_follow.png b/images/google_follow.png
deleted file mode 100644
index 385410f..0000000
Binary files a/images/google_follow.png and /dev/null differ
diff --git a/images/google_follow.svg b/images/google_follow.svg
deleted file mode 100644
index bc1ee39..0000000
--- a/images/google_follow.svg
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/images/hdot2.gif b/images/hdot2.gif
deleted file mode 100644
index b99f4ba..0000000
Binary files a/images/hdot2.gif and /dev/null differ
diff --git a/images/header.gif b/images/header.gif
deleted file mode 100644
index 9e231ba..0000000
Binary files a/images/header.gif and /dev/null differ
diff --git a/images/hub-arrow-right.png b/images/hub-arrow-right.png
deleted file mode 100644
index 6c65f4c..0000000
Binary files a/images/hub-arrow-right.png and /dev/null differ
diff --git a/images/hub-not-pinned-icon.png b/images/hub-not-pinned-icon.png
deleted file mode 100644
index 9b510c8..0000000
Binary files a/images/hub-not-pinned-icon.png and /dev/null differ
diff --git a/images/hub-not-promote-icon.png b/images/hub-not-promote-icon.png
deleted file mode 100644
index 4f57c4e..0000000
Binary files a/images/hub-not-promote-icon.png and /dev/null differ
diff --git a/images/hub-pinned-icon.png b/images/hub-pinned-icon.png
deleted file mode 100644
index 9b510c8..0000000
Binary files a/images/hub-pinned-icon.png and /dev/null differ
diff --git a/images/hub-promote-icon.png b/images/hub-promote-icon.png
deleted file mode 100644
index 4f57c4e..0000000
Binary files a/images/hub-promote-icon.png and /dev/null differ
diff --git a/images/hub-remove-icon.png b/images/hub-remove-icon.png
deleted file mode 100644
index 1246778..0000000
Binary files a/images/hub-remove-icon.png and /dev/null differ
diff --git a/images/hub-samarelo-a.png b/images/hub-samarelo-a.png
deleted file mode 100644
index 453d2a4..0000000
Binary files a/images/hub-samarelo-a.png and /dev/null differ
diff --git a/images/hub-samarelo-b.png b/images/hub-samarelo-b.png
deleted file mode 100644
index 936bf46..0000000
Binary files a/images/hub-samarelo-b.png and /dev/null differ
diff --git a/images/hub-samarelo.gif b/images/hub-samarelo.gif
deleted file mode 100644
index 2da3de2..0000000
Binary files a/images/hub-samarelo.gif and /dev/null differ
diff --git a/images/hub-sverde-a.png b/images/hub-sverde-a.png
deleted file mode 100644
index 5bc1c40..0000000
Binary files a/images/hub-sverde-a.png and /dev/null differ
diff --git a/images/hub-sverde-b.png b/images/hub-sverde-b.png
deleted file mode 100644
index ee21942..0000000
Binary files a/images/hub-sverde-b.png and /dev/null differ
diff --git a/images/hub-svermelho-a.png b/images/hub-svermelho-a.png
deleted file mode 100644
index 36d4dfc..0000000
Binary files a/images/hub-svermelho-a.png and /dev/null differ
diff --git a/images/hub-svermelho-b.png b/images/hub-svermelho-b.png
deleted file mode 100644
index 6df643a..0000000
Binary files a/images/hub-svermelho-b.png and /dev/null differ
diff --git a/images/hub-time-bg.gif b/images/hub-time-bg.gif
deleted file mode 100644
index 43032c7..0000000
Binary files a/images/hub-time-bg.gif and /dev/null differ
diff --git a/images/ic-calendar.png b/images/ic-calendar.png
deleted file mode 100644
index 0f32291..0000000
Binary files a/images/ic-calendar.png and /dev/null differ
diff --git a/images/icone-branco-facebook.png b/images/icone-branco-facebook.png
deleted file mode 100644
index 5f4046c..0000000
Binary files a/images/icone-branco-facebook.png and /dev/null differ
diff --git a/images/icone-branco-flickr.png b/images/icone-branco-flickr.png
deleted file mode 100644
index bf9b974..0000000
Binary files a/images/icone-branco-flickr.png and /dev/null differ
diff --git a/images/icone-branco-twitter.png b/images/icone-branco-twitter.png
deleted file mode 100644
index b91d361..0000000
Binary files a/images/icone-branco-twitter.png and /dev/null differ
diff --git a/images/icone-branco-youtube.png b/images/icone-branco-youtube.png
deleted file mode 100644
index 345983e..0000000
Binary files a/images/icone-branco-youtube.png and /dev/null differ
diff --git a/images/icone-facebook.gif b/images/icone-facebook.gif
deleted file mode 100644
index 5cdbe68..0000000
Binary files a/images/icone-facebook.gif and /dev/null differ
diff --git a/images/icone-facebook.png b/images/icone-facebook.png
deleted file mode 100644
index 9e12698..0000000
Binary files a/images/icone-facebook.png and /dev/null differ
diff --git a/images/icone-flickr.png b/images/icone-flickr.png
deleted file mode 100644
index fa805c1..0000000
Binary files a/images/icone-flickr.png and /dev/null differ
diff --git a/images/icone-related-items.png b/images/icone-related-items.png
deleted file mode 100644
index 59bac09..0000000
Binary files a/images/icone-related-items.png and /dev/null differ
diff --git a/images/icone-twitter.png b/images/icone-twitter.png
deleted file mode 100644
index 2538edc..0000000
Binary files a/images/icone-twitter.png and /dev/null differ
diff --git a/images/icone-verde-facebook.png b/images/icone-verde-facebook.png
deleted file mode 100644
index 18b907a..0000000
Binary files a/images/icone-verde-facebook.png and /dev/null differ
diff --git a/images/icone-verde-flickr.png b/images/icone-verde-flickr.png
deleted file mode 100644
index 0d997cf..0000000
Binary files a/images/icone-verde-flickr.png and /dev/null differ
diff --git a/images/icone-verde-twitter.png b/images/icone-verde-twitter.png
deleted file mode 100644
index d0b3b5a..0000000
Binary files a/images/icone-verde-twitter.png and /dev/null differ
diff --git a/images/icone-verde-youtube.png b/images/icone-verde-youtube.png
deleted file mode 100644
index 4ed1206..0000000
Binary files a/images/icone-verde-youtube.png and /dev/null differ
diff --git a/images/icone-youtube.png b/images/icone-youtube.png
deleted file mode 100644
index 003c75b..0000000
Binary files a/images/icone-youtube.png and /dev/null differ
diff --git a/images/icone_pin.png b/images/icone_pin.png
deleted file mode 100644
index 3dcfed8..0000000
Binary files a/images/icone_pin.png and /dev/null differ
diff --git a/images/icones_home_branco.jpg b/images/icones_home_branco.jpg
deleted file mode 100644
index 15b9026..0000000
Binary files a/images/icones_home_branco.jpg and /dev/null differ
diff --git a/images/img_login_popUp.png b/images/img_login_popUp.png
deleted file mode 100644
index ce82e38..0000000
Binary files a/images/img_login_popUp.png and /dev/null differ
diff --git a/images/instagram-widget.png b/images/instagram-widget.png
deleted file mode 100644
index b51f7de..0000000
Binary files a/images/instagram-widget.png and /dev/null differ
diff --git a/images/left-arrow-black.png b/images/left-arrow-black.png
deleted file mode 100644
index 2697177..0000000
Binary files a/images/left-arrow-black.png and /dev/null differ
diff --git a/images/left-arrow.png b/images/left-arrow.png
deleted file mode 100644
index 89b144c..0000000
Binary files a/images/left-arrow.png and /dev/null differ
diff --git a/images/login16.png b/images/login16.png
deleted file mode 100644
index 1ffa50c..0000000
Binary files a/images/login16.png and /dev/null differ
diff --git a/images/logo-PS-barra-pb.png b/images/logo-PS-barra-pb.png
deleted file mode 100644
index f9f9d42..0000000
Binary files a/images/logo-PS-barra-pb.png and /dev/null differ
diff --git a/images/logo-PS-barra.png b/images/logo-PS-barra.png
deleted file mode 100644
index 77c694e..0000000
Binary files a/images/logo-PS-barra.png and /dev/null differ
diff --git a/images/logo-participa.png b/images/logo-participa.png
deleted file mode 100644
index 436bceb..0000000
Binary files a/images/logo-participa.png and /dev/null differ
diff --git a/images/logo_facebook_50x50.png b/images/logo_facebook_50x50.png
deleted file mode 100644
index 7e5fdb3..0000000
Binary files a/images/logo_facebook_50x50.png and /dev/null differ
diff --git a/images/logo_twitter_50x50.png b/images/logo_twitter_50x50.png
deleted file mode 100644
index 4ffd721..0000000
Binary files a/images/logo_twitter_50x50.png and /dev/null differ
diff --git a/images/logo_twitter_bird_blue_50x50.png b/images/logo_twitter_bird_blue_50x50.png
deleted file mode 100644
index a43574b..0000000
Binary files a/images/logo_twitter_bird_blue_50x50.png and /dev/null differ
diff --git a/images/logo_twitter_bird_white_50x50.png b/images/logo_twitter_bird_white_50x50.png
deleted file mode 100644
index 90fdebd..0000000
Binary files a/images/logo_twitter_bird_white_50x50.png and /dev/null differ
diff --git a/images/logotipo_spb.svg b/images/logotipo_spb.svg
deleted file mode 100644
index b3088ec..0000000
--- a/images/logotipo_spb.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/images/logotipo_spb_ac.svg b/images/logotipo_spb_ac.svg
deleted file mode 100644
index cc61c20..0000000
--- a/images/logotipo_spb_ac.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/images/logotipo_spb_beta.svg b/images/logotipo_spb_beta.svg
deleted file mode 100644
index cb38bf8..0000000
--- a/images/logotipo_spb_beta.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/images/logotipo_spb_beta3.svg b/images/logotipo_spb_beta3.svg
deleted file mode 100644
index fdf6df3..0000000
--- a/images/logotipo_spb_beta3.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/images/logotipo_spb_beta_ac.svg b/images/logotipo_spb_beta_ac.svg
deleted file mode 100644
index 2b7034b..0000000
--- a/images/logotipo_spb_beta_ac.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/images/logotipo_spb_beta_ac3.svg b/images/logotipo_spb_beta_ac3.svg
deleted file mode 100644
index 64e47e6..0000000
--- a/images/logotipo_spb_beta_ac3.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/images/mais_fotos.png b/images/mais_fotos.png
deleted file mode 100644
index 9aa88f0..0000000
Binary files a/images/mais_fotos.png and /dev/null differ
diff --git a/images/marca-participacao-social.png b/images/marca-participacao-social.png
deleted file mode 100644
index 4ad05e3..0000000
Binary files a/images/marca-participacao-social.png and /dev/null differ
diff --git a/images/mascote-bug.png b/images/mascote-bug.png
deleted file mode 100644
index e9f98ec..0000000
Binary files a/images/mascote-bug.png and /dev/null differ
diff --git a/images/menu-ativo.gif b/images/menu-ativo.gif
deleted file mode 100644
index 89415eb..0000000
Binary files a/images/menu-ativo.gif and /dev/null differ
diff --git a/images/menu-mobile-item.png b/images/menu-mobile-item.png
deleted file mode 100644
index d3fa756..0000000
Binary files a/images/menu-mobile-item.png and /dev/null differ
diff --git a/images/negative-hand.png b/images/negative-hand.png
deleted file mode 100644
index 59804b4..0000000
Binary files a/images/negative-hand.png and /dev/null differ
diff --git a/images/no-image.gif b/images/no-image.gif
deleted file mode 100644
index e565824..0000000
Binary files a/images/no-image.gif and /dev/null differ
diff --git a/images/no-image.png b/images/no-image.png
deleted file mode 100644
index 34340e5..0000000
Binary files a/images/no-image.png and /dev/null differ
diff --git a/images/oops.png b/images/oops.png
deleted file mode 100644
index ddeb2dd..0000000
Binary files a/images/oops.png and /dev/null differ
diff --git a/images/person-minor.png b/images/person-minor.png
deleted file mode 100644
index b410d88..0000000
Binary files a/images/person-minor.png and /dev/null differ
diff --git a/images/person-minor_50.png b/images/person-minor_50.png
deleted file mode 100644
index 7bf25a3..0000000
Binary files a/images/person-minor_50.png and /dev/null differ
diff --git a/images/portlet-footer-textmore.png b/images/portlet-footer-textmore.png
deleted file mode 100644
index 777d1af..0000000
Binary files a/images/portlet-footer-textmore.png and /dev/null differ
diff --git a/images/portlet-header-expanded.gif b/images/portlet-header-expanded.gif
deleted file mode 100644
index a46eb43..0000000
Binary files a/images/portlet-header-expanded.gif and /dev/null differ
diff --git a/images/portlet-header.gif b/images/portlet-header.gif
deleted file mode 100644
index 6aa5d3f..0000000
Binary files a/images/portlet-header.gif and /dev/null differ
diff --git a/images/positive-hand.png b/images/positive-hand.png
deleted file mode 100644
index 44c85ca..0000000
Binary files a/images/positive-hand.png and /dev/null differ
diff --git a/images/prompt_bg.png b/images/prompt_bg.png
deleted file mode 100644
index 5a8ce78..0000000
Binary files a/images/prompt_bg.png and /dev/null differ
diff --git a/images/prompt_bg_hover.png b/images/prompt_bg_hover.png
deleted file mode 100644
index 25eb01e..0000000
Binary files a/images/prompt_bg_hover.png and /dev/null differ
diff --git a/images/prompt_bg_normal.png b/images/prompt_bg_normal.png
deleted file mode 100644
index c8cc9c1..0000000
Binary files a/images/prompt_bg_normal.png and /dev/null differ
diff --git a/images/read-more-home.png b/images/read-more-home.png
deleted file mode 100644
index a39fcd0..0000000
Binary files a/images/read-more-home.png and /dev/null differ
diff --git a/images/readmoreblue.png b/images/readmoreblue.png
deleted file mode 100644
index 74408e3..0000000
Binary files a/images/readmoreblue.png and /dev/null differ
diff --git a/images/readmorebrown.png b/images/readmorebrown.png
deleted file mode 100644
index 291a6e8..0000000
Binary files a/images/readmorebrown.png and /dev/null differ
diff --git a/images/readmoredarkblue.png b/images/readmoredarkblue.png
deleted file mode 100644
index 18eacef..0000000
Binary files a/images/readmoredarkblue.png and /dev/null differ
diff --git a/images/readmoredarkgray.png b/images/readmoredarkgray.png
deleted file mode 100644
index 898ac8b..0000000
Binary files a/images/readmoredarkgray.png and /dev/null differ
diff --git a/images/readmoregray.png b/images/readmoregray.png
deleted file mode 100644
index 4ead1c0..0000000
Binary files a/images/readmoregray.png and /dev/null differ
diff --git a/images/readmoregreen.png b/images/readmoregreen.png
deleted file mode 100644
index 8c486b8..0000000
Binary files a/images/readmoregreen.png and /dev/null differ
diff --git a/images/readmoreorange.png b/images/readmoreorange.png
deleted file mode 100644
index d5f5a01..0000000
Binary files a/images/readmoreorange.png and /dev/null differ
diff --git a/images/readmorepurple.png b/images/readmorepurple.png
deleted file mode 100644
index ad9f569..0000000
Binary files a/images/readmorepurple.png and /dev/null differ
diff --git a/images/readmorewhiteblue.png b/images/readmorewhiteblue.png
deleted file mode 100644
index 98b89ba..0000000
Binary files a/images/readmorewhiteblue.png and /dev/null differ
diff --git a/images/reportar-erros.png b/images/reportar-erros.png
deleted file mode 100644
index b28c2a1..0000000
Binary files a/images/reportar-erros.png and /dev/null differ
diff --git a/images/right-arrow-black.png b/images/right-arrow-black.png
deleted file mode 100644
index a22badd..0000000
Binary files a/images/right-arrow-black.png and /dev/null differ
diff --git a/images/right-arrow.png b/images/right-arrow.png
deleted file mode 100644
index b8c6940..0000000
Binary files a/images/right-arrow.png and /dev/null differ
diff --git a/images/rss.png b/images/rss.png
deleted file mode 100644
index 7661d92..0000000
Binary files a/images/rss.png and /dev/null differ
diff --git a/images/rss.svg b/images/rss.svg
deleted file mode 100644
index 8256f3b..0000000
--- a/images/rss.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/images/search-buttom.gif b/images/search-buttom.gif
deleted file mode 100644
index 460a98e..0000000
Binary files a/images/search-buttom.gif and /dev/null differ
diff --git a/images/search-button-30px.gif b/images/search-button-30px.gif
deleted file mode 100644
index 3ea65f2..0000000
Binary files a/images/search-button-30px.gif and /dev/null differ
diff --git a/images/search-button.gif b/images/search-button.gif
deleted file mode 100644
index 460a98e..0000000
Binary files a/images/search-button.gif and /dev/null differ
diff --git a/images/search-button.png b/images/search-button.png
deleted file mode 100644
index eb2130d..0000000
Binary files a/images/search-button.png and /dev/null differ
diff --git a/images/search-button10.png b/images/search-button10.png
deleted file mode 100644
index cac2696..0000000
Binary files a/images/search-button10.png and /dev/null differ
diff --git a/images/search-button100.png b/images/search-button100.png
deleted file mode 100644
index 42b442b..0000000
Binary files a/images/search-button100.png and /dev/null differ
diff --git a/images/search-button2.gif b/images/search-button2.gif
deleted file mode 100644
index 460a98e..0000000
Binary files a/images/search-button2.gif and /dev/null differ
diff --git a/images/search-button2.png b/images/search-button2.png
deleted file mode 100644
index 42b442b..0000000
Binary files a/images/search-button2.png and /dev/null differ
diff --git a/images/search-button_oficial.png b/images/search-button_oficial.png
deleted file mode 100644
index 9ac6cb6..0000000
Binary files a/images/search-button_oficial.png and /dev/null differ
diff --git a/images/search-ico.png b/images/search-ico.png
deleted file mode 100644
index 6d102ce..0000000
Binary files a/images/search-ico.png and /dev/null differ
diff --git a/images/search.png b/images/search.png
deleted file mode 100644
index 757f6a5..0000000
Binary files a/images/search.png and /dev/null differ
diff --git a/images/sections-ico.png b/images/sections-ico.png
deleted file mode 100644
index 4ba2a1e..0000000
Binary files a/images/sections-ico.png and /dev/null differ
diff --git a/images/seta_cidadania_justica.png b/images/seta_cidadania_justica.png
deleted file mode 100644
index 242a3a2..0000000
Binary files a/images/seta_cidadania_justica.png and /dev/null differ
diff --git a/images/seta_ciencia_tecnologia.png b/images/seta_ciencia_tecnologia.png
deleted file mode 100644
index ae05455..0000000
Binary files a/images/seta_ciencia_tecnologia.png and /dev/null differ
diff --git a/images/seta_cultura.png b/images/seta_cultura.png
deleted file mode 100644
index d221d2c..0000000
Binary files a/images/seta_cultura.png and /dev/null differ
diff --git a/images/seta_defesa_seguranca.png b/images/seta_defesa_seguranca.png
deleted file mode 100644
index 2668bd1..0000000
Binary files a/images/seta_defesa_seguranca.png and /dev/null differ
diff --git a/images/seta_economia_emprego.png b/images/seta_economia_emprego.png
deleted file mode 100644
index ff79913..0000000
Binary files a/images/seta_economia_emprego.png and /dev/null differ
diff --git a/images/seta_educacao.png b/images/seta_educacao.png
deleted file mode 100644
index 7934c02..0000000
Binary files a/images/seta_educacao.png and /dev/null differ
diff --git a/images/seta_esporte.png b/images/seta_esporte.png
deleted file mode 100644
index dd484c6..0000000
Binary files a/images/seta_esporte.png and /dev/null differ
diff --git a/images/seta_governo.png b/images/seta_governo.png
deleted file mode 100644
index 7d6341d..0000000
Binary files a/images/seta_governo.png and /dev/null differ
diff --git a/images/seta_infraestrutura.png b/images/seta_infraestrutura.png
deleted file mode 100644
index 66cdff1..0000000
Binary files a/images/seta_infraestrutura.png and /dev/null differ
diff --git a/images/seta_meio_ambiente.png b/images/seta_meio_ambiente.png
deleted file mode 100644
index 2079b67..0000000
Binary files a/images/seta_meio_ambiente.png and /dev/null differ
diff --git a/images/seta_saude.png b/images/seta_saude.png
deleted file mode 100644
index 8cd6d10..0000000
Binary files a/images/seta_saude.png and /dev/null differ
diff --git a/images/seta_tursimo.png b/images/seta_tursimo.png
deleted file mode 100644
index ed796e4..0000000
Binary files a/images/seta_tursimo.png and /dev/null differ
diff --git a/images/sgpr.png b/images/sgpr.png
deleted file mode 100644
index 0c6187e..0000000
Binary files a/images/sgpr.png and /dev/null differ
diff --git a/images/shadow-bottom.gif b/images/shadow-bottom.gif
deleted file mode 100644
index f804faa..0000000
Binary files a/images/shadow-bottom.gif and /dev/null differ
diff --git a/images/site-footer.png b/images/site-footer.png
deleted file mode 100644
index ce5e61d..0000000
Binary files a/images/site-footer.png and /dev/null differ
diff --git a/images/spb.png b/images/spb.png
deleted file mode 100644
index addfc12..0000000
Binary files a/images/spb.png and /dev/null differ
diff --git a/images/sprite-icons.png b/images/sprite-icons.png
deleted file mode 100644
index 70781ca..0000000
Binary files a/images/sprite-icons.png and /dev/null differ
diff --git a/images/sprite-setas.png b/images/sprite-setas.png
deleted file mode 100644
index 4537a80..0000000
Binary files a/images/sprite-setas.png and /dev/null differ
diff --git a/images/sprite.png b/images/sprite.png
deleted file mode 100644
index a3e1333..0000000
Binary files a/images/sprite.png and /dev/null differ
diff --git a/images/sprite2.png b/images/sprite2.png
deleted file mode 100644
index 440acbb..0000000
Binary files a/images/sprite2.png and /dev/null differ
diff --git a/images/sprite_social-2.png b/images/sprite_social-2.png
deleted file mode 100644
index f9f90a6..0000000
Binary files a/images/sprite_social-2.png and /dev/null differ
diff --git a/images/sprite_social-verde.png b/images/sprite_social-verde.png
deleted file mode 100644
index 87eb3f5..0000000
Binary files a/images/sprite_social-verde.png and /dev/null differ
diff --git a/images/sprite_social.png b/images/sprite_social.png
deleted file mode 100644
index 300cb9d..0000000
Binary files a/images/sprite_social.png and /dev/null differ
diff --git a/images/star-negative-big.png b/images/star-negative-big.png
deleted file mode 100644
index 617dbe4..0000000
Binary files a/images/star-negative-big.png and /dev/null differ
diff --git a/images/star-negative-mini.png b/images/star-negative-mini.png
deleted file mode 100644
index eabea40..0000000
Binary files a/images/star-negative-mini.png and /dev/null differ
diff --git a/images/star-negative.png b/images/star-negative.png
deleted file mode 100644
index 41973e7..0000000
Binary files a/images/star-negative.png and /dev/null differ
diff --git a/images/star-positive-big.png b/images/star-positive-big.png
deleted file mode 100644
index d41a993..0000000
Binary files a/images/star-positive-big.png and /dev/null differ
diff --git a/images/star-positive-mini.png b/images/star-positive-mini.png
deleted file mode 100644
index febf0de..0000000
Binary files a/images/star-positive-mini.png and /dev/null differ
diff --git a/images/star-positive.png b/images/star-positive.png
deleted file mode 100644
index ca15335..0000000
Binary files a/images/star-positive.png and /dev/null differ
diff --git a/images/steps_bg.png b/images/steps_bg.png
deleted file mode 100644
index 430b99d..0000000
Binary files a/images/steps_bg.png and /dev/null differ
diff --git a/images/thin-logo.png b/images/thin-logo.png
deleted file mode 100644
index 1aeb9fc..0000000
Binary files a/images/thin-logo.png and /dev/null differ
diff --git a/images/top-arrow-black.png b/images/top-arrow-black.png
deleted file mode 100644
index 5744b53..0000000
Binary files a/images/top-arrow-black.png and /dev/null differ
diff --git a/images/top-arrow.png b/images/top-arrow.png
deleted file mode 100644
index d4e3f01..0000000
Binary files a/images/top-arrow.png and /dev/null differ
diff --git a/images/touch_icon.png b/images/touch_icon.png
deleted file mode 100644
index 98c3ad4..0000000
Binary files a/images/touch_icon.png and /dev/null differ
diff --git a/images/twitter-widget.png b/images/twitter-widget.png
deleted file mode 100644
index e0cd726..0000000
Binary files a/images/twitter-widget.png and /dev/null differ
diff --git a/images/twitter.png b/images/twitter.png
deleted file mode 100644
index aededc4..0000000
Binary files a/images/twitter.png and /dev/null differ
diff --git a/images/upload-icon.png b/images/upload-icon.png
deleted file mode 100644
index 00c39e1..0000000
Binary files a/images/upload-icon.png and /dev/null differ
diff --git a/images/usuario_participa.png b/images/usuario_participa.png
deleted file mode 100644
index a86a6a3..0000000
Binary files a/images/usuario_participa.png and /dev/null differ
diff --git a/images/visualizacoes.png b/images/visualizacoes.png
deleted file mode 100644
index 9a014d5..0000000
Binary files a/images/visualizacoes.png and /dev/null differ
diff --git a/images/voltar-topo.png b/images/voltar-topo.png
deleted file mode 100644
index 3303386..0000000
Binary files a/images/voltar-topo.png and /dev/null differ
diff --git a/images/youtube.png b/images/youtube.png
deleted file mode 100644
index 22b1fb7..0000000
Binary files a/images/youtube.png and /dev/null differ
diff --git a/preview.png b/preview.png
deleted file mode 100644
index 8c3627e..0000000
Binary files a/preview.png and /dev/null differ
diff --git a/site_title.html.erb b/site_title.html.erb
deleted file mode 100644
index e69de29..0000000
--- a/site_title.html.erb
+++ /dev/null
diff --git a/src/noosfero-spb-theme/.gitignore b/src/noosfero-spb-theme/.gitignore
new file mode 100644
index 0000000..9f4c784
--- /dev/null
+++ b/src/noosfero-spb-theme/.gitignore
@@ -0,0 +1,3 @@
+# backup files
+*~
+*.swp
diff --git a/src/noosfero-spb-theme/README.md b/src/noosfero-spb-theme/README.md
new file mode 100644
index 0000000..2ea6179
--- /dev/null
+++ b/src/noosfero-spb-theme/README.md
@@ -0,0 +1,6 @@
+PSB Theme for Noosfero
+================================
+
+Noosfero theme for the _Portal do Software Público_ project.
+
+Install on /public/designs/themes/noosfero-spb-theme
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/categories.html.erb b/src/noosfero-spb-theme/categories.html.erb
new file mode 100644
index 0000000..d6393c8
--- /dev/null
+++ b/src/noosfero-spb-theme/categories.html.erb
@@ -0,0 +1,7 @@
+
diff --git a/src/noosfero-spb-theme/css/administration-panel.css b/src/noosfero-spb-theme/css/administration-panel.css
new file mode 100644
index 0000000..558ffaf
--- /dev/null
+++ b/src/noosfero-spb-theme/css/administration-panel.css
@@ -0,0 +1,159 @@
+/*** Environment Admin Pages - General Rules ***/
+.action-admin_panel-index #content .main-block h2,
+.controller-features #content .main-block h2{
+ font-family: Arial;
+ font-size: 22px;
+ font-weight: 700;
+ line-height: 21px;
+}
+
+/* Environment Settings */
+
+/* Profile tab */
+
+.action-admin_panel-site_info .main-content .ui-tabs{
+ border: none;
+}
+
+.action-admin_panel-site_info .main-content .ui-tabs .ui-tabs-nav{
+ margin: 0 0 0 1em;
+ padding: 0;
+ background: none;
+ color: #172738;
+ border: 0px solid #aaaaaa;
+ border-radius: 4px;
+ font-weight: bold;
+}
+
+.action-admin_panel-site_info .main-content .ui-widget-content .ui-state-default,
+.action-admin_panel-site_info .main-content .ui-widget-header .ui-state-default{
+ background: #d5d5d5 none;
+ color: #555555;
+ font-weight: normal;
+}
+
+.action-admin_panel-site_info .main-content .ui-widget-content .ui-state-active,
+.action-admin_panel-site_info .main-content .ui-widget-header .ui-state-active{
+ background: #eeeff1;
+ color: #212121;
+ font-weight: normal;
+}
+
+.action-admin_panel-site_info .main-content .ui-tabs .ui-tabs-panel{
+ display: block;
+ padding: 1em 1.4em;
+ background-color: #eeeff1;
+ color: #777;
+ border-width: 1px;
+ font-size: 13px;
+ text-decoration: none;
+}
+
+/* Organizations Settings */
+
+.action-organizations-index .main-block form#manage-profiles,
+.action-organizations-index .main-block form#manage-profiles form{
+ background-color: transparent;
+}
+
+.action-organizations-index .main-block form#manage-profiles .search-field{
+ margin-bottom: 30px;
+}
+
+.action-organizations-index .main-block form#manage-profiles .search-field .formfield {
+ width: 100%;
+ margin-right: 0.5em;
+ float: left;
+}
+
+.action-organizations-index .main-block form#manage-profiles .search-field .formfield input {
+ margin-top: 0px;
+ margin-right: 0.5em;
+ padding: 6px;
+ min-width: 97%;
+ height: 19px;
+ max-height: 19px;
+ background: none;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+
+.action-organizations-index .main-block form#manage-profiles input.button.submit{
+ height: 32px;
+ margin-top: 8px;
+ padding: 5px 15px;
+ background: #3E67B1 none;
+ color: #FFF;
+ border-radius: 4px;
+ border: 1px solid #3E67B1;
+ line-height: 22px;
+ font-size: 14px;
+ text-transform: uppercase;
+}
+
+.action-organizations-index .main-block form#manage-profiles input.button.submit:hover{
+ background: #5E82C6;
+}
+
+.action-organizations-index .main-block #environment-profiles-filter-title,
+.action-organizations-index .main-block #environment-profiles-filter-filter{
+ line-height: 35px;
+ font-size: 12px;
+}
+
+.action-organizations-index .main-block table#organizations-list th{
+ text-align: left;
+ vertical-align: middle;
+ padding: 2px 8px;
+}
+
+/*** Features Settings ***/
+
+.controller-features #content form *{
+ font-size: 15px;
+}
+
+.controller-features #content th{
+ text-align: left;
+}
+
+.controller-features #content h3{
+ min-height: 0;
+ margin: 20px auto 10px auto;
+}
+
+.controller-features #content hr{
+ display: none;
+}
+
+.controller-features #content ul.token-input-list{
+ padding: 6px;
+ background: none;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-family: Arial, helvetica;
+ font-size: 15px;
+}
+
+/*** Community Admin pages ***/
+/* Homepage */
+.action-profile_editor-index #profile-editor-index h1.block-title{
+ color: #172738;
+ background-color: transparent;
+ border-bottom: none;
+ font-size: 2.3em;
+ font-weight: bold;
+ font-variant: normal;
+ font-family: Arial, open_sansbold, Helvetica, sans-serif;
+}
+
+/* Index */
+.action-cms-index .cms-articles th{
+ text-align: left;
+}
+
+/* Spam Index */
+.action-spam-index .ui-widget-header {
+ border: none;
+ background: none;
+}
diff --git a/src/noosfero-spb-theme/css/animate.css b/src/noosfero-spb-theme/css/animate.css
new file mode 100644
index 0000000..76810e6
--- /dev/null
+++ b/src/noosfero-spb-theme/css/animate.css
@@ -0,0 +1,68 @@
+.animated {
+ -webkit-animation-duration: .7s;
+ animation-duration: .7s;
+ -webkit-animation-fill-mode: both;
+ animation-fill-mode: both;
+}
+
+@-webkit-keyframes slideInDown {
+ from {
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ visibility: visible;
+ }
+
+ 100% {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes slideInDown {
+ from {
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ visibility: visible;
+ }
+
+ 100% {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.slideInDown {
+ -webkit-animation-name: slideInDown;
+ animation-name: slideInDown;
+}
+
+@-webkit-keyframes slideOutUp {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 100% {
+ visibility: hidden;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+}
+
+@keyframes slideOutUp {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 100% {
+ visibility: hidden;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+}
+
+.slideOutUp {
+ -webkit-animation-name: slideOutUp;
+ animation-name: slideOutUp;
+}
diff --git a/src/noosfero-spb-theme/css/article-page.css b/src/noosfero-spb-theme/css/article-page.css
new file mode 100644
index 0000000..ddace95
--- /dev/null
+++ b/src/noosfero-spb-theme/css/article-page.css
@@ -0,0 +1,256 @@
+/*** General Definitions ***/
+#content .main-block #article-header h1.title{
+ margin-bottom: 10px;
+ padding: 0px 0px 10px 0px;
+ color: #172738;
+ border-bottom: 1px solid #D3D6DE;
+ font-family: Arial, open_sansbold, Helvetica, sans-serif;
+ font-size: 34px;
+ font-variant: normal;
+ font-weight: bold;
+ line-height: 37px;
+}
+
+#content .main-block #article-header .publishing-info span{
+ font-size: 12px;
+ color: #172738;
+ font-family: Arial;
+}
+
+#content .main-block .publishing-info a{
+ color: #2C66CE;
+ font-family: Arial;
+}
+
+#content .main-block .article-body {
+ font-family: Arial ;
+ font-size: 15px;
+ line-height: 21px;
+}
+
+#content #article-parent{
+ margin: 0px 0px 10px 0;
+ font-style: normal;
+ text-align: left;
+}
+
+#content #article-parent a.button.with-text{
+ height: 18px;
+ padding: 5px;
+ background-color: #3E67B1;
+ color: #FFF;
+ border-radius: 4px;
+ border: 1px solid #3E67B1;
+ font-size: 12px;
+ line-height: 18px;
+ text-transform: none;
+}
+
+#content #article-parent a.button.with-text:hover{
+ background-color: #5E82C6;
+ border-color: #5E82C6;
+}
+
+#content #article-parent a.button.with-text::before{
+ content: "\f053";
+ font-family: FontAwesome;
+ padding-right: 4px;
+ padding-left: 2px;
+ color: #ffffff;
+ border-radius: 4px;
+ text-align: center;
+}
+
+/* Need a dev solution - blog internal pages*/
+
+#article-header .preview{
+ display: none;
+}
+
+#article-hits {
+ display: none;
+
+}
+
+/* For software internal pages */
+
+#content .main-block .article-body h2 {
+ margin-bottom: 20px;
+ font-family: Arial;
+ font-size: 16px;
+ font-weight: bold;
+ line-height: 21px;
+}
+
+#content .main-block .article-body h3 {
+ margin-bottom: 20px;
+ font-size: 15px;
+ line-height: 21px;
+ font-weight: bold;
+ font-family: Arial;
+}
+
+#content .main-block .article-body p{
+ margin-bottom: 22px;
+ font-family: Arial;
+}
+
+#content .main-block .article-body .zoomable-image,
+#content .main-block .article-body img {
+ display: block;
+}
+
+#content .main-block .article-body hr {
+ height: 0;
+ margin: 30px 0;
+ border: 0;
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
+ border-bottom: 1px solid rgba(255, 255, 255, 0.3);
+}
+
+#content .main-block .article-body #article-actions:last-child{
+ margin: 0;
+ padding: 10px 0;
+ border-top: 3px solid #172938;
+}
+
+#content .main-block .article-body #article-actions {
+ display: none;
+}
+
+/*** Categories ***/
+
+#content .main-block #article-cat{
+ border-top: 4px solid #2C4B6B;
+ border-bottom: 1px solid #D3D6DE;
+}
+
+#content .main-block #article-cat h4 {
+ float: left;
+ margin: 12px 10px 10px 0;
+ min-height: 0px;
+ color: #5E82C6;
+ font-family: Arial;
+ font-size: 12px;
+ font-weight: 300;
+ text-decoration: initial;
+}
+
+#content .main-block #article-cat a{
+ display: inline-block;
+ margin: 10px 10px 10px 0;
+ padding: 3px 10px;
+ color: #5E82C6;
+ background-color: #ECEDF1;
+ border: 1px solid #D3D6DE;
+ border-radius: 3px;
+ font-size: 12px;
+ text-decoration: initial;
+}
+
+/*** Tags ***/
+
+#content .main-block #article-tags{
+ display: none; /* wait to fix label */
+ width: 100%;
+ color: #5E82C6;
+ border-bottom: 1px solid #D3D6DE;
+ font-family: Arial;
+ font-size: 12px;
+ font-weight: 300;
+ text-align: left;
+}
+
+#content .main-block #article-tags a{
+ display: inline-block;
+ margin: 10px 10px 10px 0;
+ padding: 3px 10px;
+ color: #5E82C6;
+ background-color: #ECEDF1;
+ border: 1px solid #D3D6DE;
+ border-radius: 3px;
+ font-size: 12px;
+ text-decoration: initial;
+}
+
+/*** Site Map page ***/
+
+#content .main-block .article-body #sitemap{
+ overflow: auto;
+}
+
+#content .main-block .article-body #sitemap a{
+ text-decoration: initial;
+}
+
+#content .main-block .article-body #sitemap ul{
+ padding-top: 20px;
+ font-weight: 700;
+}
+
+#content .main-block .article-body #sitemap li{
+ padding-left: 10px;
+ font-weight: 500;
+}
+
+#content .main-block .article-body #sitemap #first-half{
+ float: left;
+ width: 40%;
+}
+
+#content .main-block .article-body #sitemap #second-half{
+ float: left;
+ padding-top: 50px;
+ width: 40%;
+}
+
+/*** end of sitemap page ***/
+
+/*** Help page ***/
+
+#content .main-block .article-body ul.help-list li {
+ list-style-type: none;
+ padding-bottom: 5px;
+}
+
+#content .main-block .article-body ul.help-list li a[href="#faq"]:before {
+ content: url('../images/arrow-globe-icon.png');
+ padding-right: 5px;
+ vertical-align: middle;
+}
+
+#content .main-block .article-body ul.help-list li a[href="#lista-discussao"]:before {
+ content: url('../images/balloon-icon.png');
+ padding-left: 3px;
+ padding-right: 6px;
+ vertical-align: middle;
+}
+
+#content .main-block .article-body ul.help-list li a {
+ color: #2c66ce;
+ font-size: 15px;
+}
+
+#content .main-block .article-body ul.help-list {
+ padding-top: 21px;
+ border-top: 1px solid #D3D6DE;
+}
+
+#content .main-block .article-header h1.help-page-title {
+ margin-top: 0px;
+ margin-bottom: 30px;
+ padding: 0px;
+ color: #172738;
+ line-height: 30px;
+ border: none;
+ letter-spacing: -0.1px;
+ font-family: Arial;
+ font-size: 26px;
+ font-variant: normal;
+}
+
+#content .main-block .article-body p a {
+ color: #2c66ce;
+}
+
+/*** end of help page ***/
diff --git a/src/noosfero-spb-theme/css/community-pages.css b/src/noosfero-spb-theme/css/community-pages.css
new file mode 100644
index 0000000..a866f4b
--- /dev/null
+++ b/src/noosfero-spb-theme/css/community-pages.css
@@ -0,0 +1,1130 @@
+/*** Home page - profile page ***/
+.action-profile-index .main-content{
+ padding:0px;
+}
+.action-profile-index .page-profile-header{
+ display: block;
+ border-bottom: 1px solid #D3D6DE;
+ padding-bottom:30px;
+ margin-bottom: 30px;
+}
+.action-profile-index .page-profile-header .join-leave-button.require-login-popup{
+ float:left;
+ width: 35%;
+}
+.action-profile-index #content .page-profile-header a.button.with-text {
+ padding: 5px 15px;
+ border: 1px solid #D3D6DE;
+ text-transform: none;
+ font-size: 12px;
+}
+.action-profile-index #content .page-profile-header .control-panel-button a{
+ background:#3E67B1;
+ color:#fff;
+}
+.action-profile-index #content .page-profile-header .control-panel-button a.button.with-text,
+.action-profile-index #content .page-profile-header .join-leave-button a:hover{
+ border:1px solid #3E67B1;
+}
+
+
+
+/* Profile header */
+.profile-type-is-community .action-profile-index #content .main-block h1 {
+ color: #172738;
+ border-bottom: none;
+ font-size: 2.3em;
+ font-weight: bold;
+ font-variant: normal;
+ font-family: Arial, open_sansbold, Helvetica, sans-serif;
+}
+
+/* Search form - need to develop solution - hidden on profile page*/
+.profile-type-is-community .action-profile-index #public-profile-search{
+ display: none;
+}
+
+.action-profile-index .main-block #public-profile-search,
+.action-profile-index .main-block #profile-search-results form,
+.action-profile-index .main-block .profile-search-block form {
+ background-color: transparent;
+}
+
+.action-profile-index .main-block #public-profile-search .search-field .formfield {
+ float: left;
+ margin-right: 0.5em;
+}
+
+.action-profile-index .main-block #public-profile-search .search-field .formfield input {
+ margin-top: 0px;
+ margin-right: 0.5em;
+ padding: 6px;
+ height: 19px;
+ max-height: 19px;
+ border: 1px solid #D3D6DE;
+ border-radius: 4px;
+}
+
+.action-profile-index .main-block #public-profile-search .formfield input,
+.action-profile-index .main-block #public-profile-search .formfield textarea{
+ width: 100%;
+ background: none #FFFFFF;
+ color: #585858;
+ border: 1px solid #DDDDDD;
+ font-size: 16px;
+ word-wrap: break-word;
+}
+
+.action-profile-index .main-block #public-profile-search form input.button.submit {
+ height: 32px;
+ margin-top: 8px;
+ padding: 5px 15px;
+ color: #ffffff;
+ background: #2B51A8;
+ border-radius: 4px;
+ border: 1px solid #2B51A8;
+ font-size: 14px;
+ line-height: 14px;
+ text-transform: uppercase;
+}
+
+/* Profile tab */
+.profile-type-is-community .action-profile-index .profile{
+ display: none;
+}
+
+#block-community-tabs{
+ font-family: Arial;
+}
+
+#block-community-tabs .ui-corner-all{
+ overflow: visible;
+}
+
+#content #block-community-tabs .iu-widget{
+ font-size: 0px ;
+}
+
+#block-community-tabs .ui-widget-header{
+ background:#ECEDF1;
+ border:none;
+ border-bottom: 3px solid #D3D6DE;
+}
+
+#block-community-tabs .ui-widget-content{
+ border:none;
+ background:none;
+}
+
+#block-community-tabs .ui-corner-all{
+ border-radius:0px;
+}
+
+#block-community-tabs .ui-state-default
+#block-community-tabs .ui-widget-content .ui-state-default,
+#block-community-tabs .ui-widget-header .ui-state-default{
+ border:none;
+ background:#ECEDF1;
+ font-weight: normal;
+ color:#172738;
+}
+
+#block-community-tabs .ui-tabs .ui-tabs-nav{
+ font-size: 15px;
+ padding:.2em .0em 0;
+}
+
+#block-community-tabs .ui-tabs .ui-tabs-nav .ui-tabs-anchor{
+ float:none;
+ display:table;
+}
+.profile-members-tabs-container .ui-tabs .ui-tabs-panel,
+#block-community-tabs .ui-tabs .ui-tabs-panel{
+ padding: 0px;
+}
+
+#block-community-tabs .ui-tabs .ui-tabs-nav li a:visited{
+ color:#172738;
+}
+
+#block-community-tabs .ui-tabs .ui-tabs-nav li{
+ padding-right: 3px;
+}
+
+#block-community-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-active{
+ margin-bottom: -3px !important;
+ padding-bottom: 1px;
+ border-bottom: 3px solid #FF0366;
+}
+
+#block-community-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-active.ui-state-active:before{
+ content:"\f0dd";
+ font-family: FontAwesome;
+ font-size: 16px;
+ position:absolute;
+ top:26px;
+ margin:0px 45%;
+ color:#FF0366;
+}
+#block-community-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-active a{
+ color: #FF0366;
+ font-weight: 300;
+}
+
+/* Community's area tabs */
+
+#content #discussions-content{
+ color:#172738;
+}
+
+#content #discussions-content .pull-left{
+ float:none;
+}
+
+#content #discussions-content{
+ font-family: Arial;
+ font-size: 14px;
+}
+
+#content #discussions-content .message-discussion{
+ border-bottom: 1px solid #ECEDF1;
+ margin:0px 0px 8px 0px;
+ padding:10px 0px 18px 0px;
+}
+
+#content #discussions-content .message-discussion .quiet:last-child{
+ font-size: 16px;
+ max-height: 50px;
+ overflow: hidden;
+}
+
+#content #discussions-content h4{
+ font-size: 22px;
+ border-bottom: 1px solid #ECEDF1;
+ padding: 8px 0px 6px 0px;
+}
+
+#discussions-content hr{
+ display: none;
+}
+
+#discussions-content .quiet{
+ line-height: 21px;
+}
+
+#discussions-content div.quiet:last-child{
+ border-top:none;
+}
+
+#discussions-content .text-right{
+ padding:6px 0px 25px 0px;
+}
+
+#discussions-content .text-right a{
+ text-align: right;
+ display: block;
+ text-transform: uppercase;
+ line-height: 21px;
+ font-size: 11px;
+}
+
+#discussions-content .text-right a:visited,
+#content #discussions-content .text-right a:visited,
+#discussions-content .text-right dl.portlet a:visited{
+ color: #172738;
+}
+
+#discussions-content .text-right a::after {
+ content: "\f105";
+ font-family: FontAwesome;
+ padding-left: 7px;
+ padding-right: 4px;
+ color: #ffffff;
+ background: #3E67B1;
+ border-radius: 4px;
+ font-size: 18px;
+ line-height: 20px;
+ text-align: center;
+ margin-left: 5px;
+ position: relative;
+ top: 2px;
+}
+
+#content #discussions-content .pull-left a{
+ color:#3E67B1;
+ font-weight: 600;
+}
+
+#content #discussions-content .subject{
+ font-weight: 800;
+ font-size: 16px
+}
+
+#repository-feed-tab .event-inline.event-item{
+ border-bottom: 1px solid #ECEDF1;
+ margin-top:30px;
+ padding: 0px 0px 80px 0px;
+}
+
+#repository-feed-tab .event-inline.event-item img{
+ display: none;
+}
+
+#repository-feed-tab .event-item-timestamp{
+ border-right: 1px dotted #D3D6DE;
+ float:left;
+ width: 112px;
+ height: 55px;
+ margin-right: 20px;
+}
+#repository-feed-tab .event-item-timestamp .time_ago{
+ color:#172738;
+}
+
+#repository-feed-tab .event-item-timestamp .time_ago:before{
+ content: url("../images/ic-calendar.png");
+ margin-right: 10px;
+ margin-top: 0px;
+ float: left;
+}
+
+#repository-feed-tab .event-title{
+ max-height: 55px;
+ overflow: hidden;
+ float:left;
+ width: 70%;
+ font-size: 16px;
+}
+
+#content #repository-feed-tab .author_name{
+ display: block;
+ padding-bottom: 5px;
+ font-size: 12px;
+}
+
+#content #repository-feed-tab .author_name a{
+ color:#3E67B1;
+}
+
+#repository-feed-tab .see-more-repository{
+ text-align: right;
+ display: block;
+ text-transform: uppercase;
+ line-height: 21px;
+ font-size: 11px;
+ margin-top: 15px;
+}
+
+#repository-feed-tab .see-more-repository:after{
+ content: "\f105";
+ font-family: FontAwesome;
+ padding-left: 7px;
+ padding-right: 4px;
+ color: #ffffff;
+ background: #3E67B1;
+ border-radius: 4px;
+ font-size: 18px;
+ line-height: 20px;
+ text-align: center;
+ margin-left: 5px;
+ position: relative;
+ top: 2px;
+}
+
+
+#repository-feed-tab .see-more-repository a:visited,
+#content #repository-feed-tab .see-more-repository a:visited,
+#repository-feed-tab .see-more-repository dl.portlet a:visited{
+ color:#172738;
+}
+
+/* Blog tab*/
+
+#content #blog-tab .blog-posts{
+ margin-top:15px;
+}
+
+#content #blog-tab .blog .blog-post{
+ background:none;
+ border-bottom: 1px solid #ECEDF1;
+ padding:25px 0px 12px 0px;
+}
+
+#content #blog-tab .blog .blog-post h1{
+ margin: 0px 0px 10px 0px;
+ padding: 0px 0px 0px 0px;
+ max-width: 555px;
+ max-height: 40px;
+ border: none;
+ font: normal normal bold 16px/20px Arial;
+ overflow: hidden;
+ display: inline-block;
+}
+
+#content #blog-tab .blog .blog-post .post-pic{
+ margin:0 20px 5px 0px;
+ border-radius: 4px;
+ height: 62px;
+ width: 19%;
+ background: center/cover no-repeat;
+ float: left;
+}
+#content #blog-tab .blog .blog-post .publishing-info {
+ border-top: none;
+ color: #172838;
+ font: 13px/21px Arial;
+}
+
+#content #blog-tab .blog .publishing-info{
+ display:inline;
+ text-align: left;
+}
+#content #blog-tab .blog .blog-post .publishing-info .date {
+ margin: 0px 0px 5px 0px;
+ display: table-cell;
+ font-size: 11px;
+}
+#content #blog-tab .blog .blog-post .author {
+ display: none;
+}
+
+#content #blog-tab .blog .blog-post .comments{
+ display: none;
+}
+
+#content #blog-tab .blog .blog-post .short-post {
+ max-height: 35px;
+ text-align: justify;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+#content #blog-tab .blog .article-body p {
+ margin: 0px 0px 5px 0px;
+ max-height: 25px;
+ color: #172738;
+ text-align: left;
+ text-overflow: ellipsis;
+ font: 15px/21px Arial;
+ overflow: hidden;
+}
+
+/*Post Position-1*/
+#content #blog-tab .blog .blog-post.position-1 h1{
+ line-height: 37px;
+ font-size: 22px;
+ color: #172738;
+ padding-left:0px;
+ text-align: left;
+}
+#content #blog-tab .blog .blog-post.position-1 .date{
+ padding-left:0px;
+}
+
+#content #blog-tab .blog .blog-post.position-1 .post-pic {
+margin: 0 20px 5px 0px;
+border-radius: 4px;
+height: 210px;
+width: 100%;
+background: center/cover no-repeat;
+float: left;
+}
+
+/* Read more button*/
+#content #blog-tab .blog .read-more{
+ text-align: right;
+ display: block;
+ text-transform: uppercase;
+ line-height: 21px;
+ font-size: 11px;
+ margin:15px 0px 20px 0px;
+}
+
+#content #blog-tab .blog .read-more:after{
+ content: "\f105";
+ font-family: FontAwesome;
+ padding-left: 7px;
+ padding-right: 4px;
+ color: #ffffff;
+ background: #172738;
+ border-radius: 2px;
+ font-size: 19px;
+ line-height: 20px;
+ text-align: center;
+ margin-left: 5px;
+ position: relative;
+ top: 2px;
+}
+
+#content #blog-tab .blog .read-more a{
+ text-decoration: none;
+ color:#172735;
+}
+
+/* Software Tab Data - Need to develop solution - Only display on profile page */
+
+.profile-type-is-community #content .software-tab-data-block{
+ display: none;
+}
+
+.profile-type-is-community .action-profile_design-index #content .software-tab-data-block,
+.profile-type-is-community .action-profile-index #content .software-tab-data-block{
+ display: block;
+}
+
+/*** Right bar ***/
+
+.template-default.profile-type-is-community .action-profile-index #content .box-3 .link-list-block,
+.template-lefttopright.profile-type-is-community .action-profile-index #content .box-2 .link-list-block
+ display: none;
+}
+
+/*Block with Community information - Need to develop solution - Only display on profile page */
+
+.profile-type-is-community .community-block{
+ display: none;
+}
+
+.profile-type-is-community .action-profile_design-index #content .community-block,
+.profile-type-is-community .action-profile-index #content .community-block{
+ display: block;
+ border: 1px solid #ECEDF1;
+ border-radius: 4px;
+}
+
+.profile-type-is-community #content .community-block-logo{
+ border-bottom: 3px solid #3E67B1;
+}
+
+.profile-type-is-community #content .community-block-title{
+ padding: 10px;
+ background-color: #ECEDF1;
+ border-bottom-right-radius: 4px;
+ border-bottom-left-radius: 4px;
+}
+
+.profile-type-is-community #content .community-block-title h1{
+ margin: 5px auto;
+ font-size: 14px;
+ line-height: 20px;
+}
+
+.profile-type-is-community #content .community-block-logo{
+ padding: 10px;
+}
+
+.profile-type-is-community #content .community-block-logo img.logo{
+ height: auto;
+ width: 100px;
+ min-width: 100px;
+ max-width: 170px;
+}
+
+.profile-type-is-community #content .community-block-logo a{
+ display: block;
+ height: 100px;
+ overflow: hidden;
+ text-align: center;
+}
+
+/* Wiki block - Need to develop solution - Only display on profile page */
+.template-default #content .box-3 .wiki-block,
+.template-lefttopright #content .box-2 .wiki-block{
+ display: none;
+}
+
+.template-default .action-profile-index #content .box-3 .wiki-block,
+.template-lefttopright .action-profile-index #content .box-2 .wiki-block,
+.template-default .action-profile_design-index #content .box-3 .wiki-block,
+.template-lefttopright .action-profile_design-index #content .box-2 .wiki-block{
+ display: block;
+}
+
+/* Repository block and wiki block need to look a unique block */
+.action-profile-index #content .box-2 .block-outer .repository-block,
+.action-profile-index #content .box-3 .block-outer .repository-block{
+ margin-bottom: 20px;
+}
+
+/*Block with Members information - Need to develop solution - Only display on profile page */
+
+.profile-type-is-community #content .members-block{
+ display: none;
+ border: 1px solid #D3D6DE;
+ border-radius: 4px;
+}
+
+.profile-type-is-community .action-profile_design-index #content .members-block,
+.profile-type-is-community .action-profile-index #content .members-block{
+ display: block;
+}
+
+.profile-type-is-community #content .members-block .block-title{
+ padding: 12px;
+ margin-bottom: 12px;
+ background-color: #ECEDF1;
+ color: #172738;
+ border-bottom: 1px solid #D3D6DE;
+ border-top: none;
+ font-size: 14px;
+}
+
+.profile-type-is-community #content .members-block .block-footer-content{
+ padding: 8px 10px 15px 0px;
+ margin-right: 0px;
+ background-color: #ECEDF1;
+ border-top: 1px solid #D3D6DE;
+ text-align: right;
+}
+
+.profile-type-is-community #content .members-block .block-footer-content a{
+ padding-right: 0px !important;
+}
+
+.profile-type-is-community #content .members-block .block-footer-content a.view-all{
+ background-image: none;
+ border: none;
+ text-transform: uppercase;
+ line-height: 21px;
+}
+
+.profile-type-is-community #content .members-block .block-footer-content a.view-all::after{
+ content: "\f105";
+ position: relative;
+ top: 2px;
+ margin-left: 5px;
+ padding-left: 7px;
+ padding-right: 4px;
+ color: #ffffff;
+ background: #3E67B1;
+ border-radius: 4px;
+ font-family: FontAwesome;
+ font-size: 18px;
+ line-height: 20px;
+ text-align: center;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block .vcard{
+ border: none;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block .vcard:hover{
+ background: none;
+ border: none;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block .vcard li a{
+ color: #172738;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block .vcard a.profile_link{
+ /*height: 70px;*/
+ height: 100px;
+ max-height: 100px;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu{
+ background: #172738;
+ border-radius: 4px;
+ /***side block position***/
+ top: -39px;
+ right: 100%;
+ width: 131px;
+ height: 176px;
+ box-shadow: 2px 2px 2px #ECEDF1;
+ -webkit-box-shadow: 2px 2px 2px #ECEDF1;
+ -moz-box-shadow: 2px 2px 2px #ECEDF1;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu.down::before{
+ content:"\f0da";
+ float: right;
+ position: relative;
+ margin: -7px;
+ margin-top: 30%;
+ color: #172738;
+ font-family: FontAwesome;
+ font-size: 25px;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-header,
+.profile-type-is-community #content .members-block .menu-submenu-content,
+.profile-type-is-community #content .members-block .menu-submenu-footer{
+ background: none;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-header,
+.profile-type-is-community #content .members-block .menu-submenu-footer{
+ display: none;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-content{
+ height: 100%;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block li{
+ margin: 0px !important;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block .vcard .menu-submenu-trigger{
+ display: block;
+ height: 13px;
+ top: 2px;
+ left: 3px;
+ padding-bottom: 0px;
+ background: #172738;
+ border: 1px solid #fff;
+ opacity: 0.7;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block .vcard .menu-submenu-trigger::before{
+ content: "\f053";
+ color: #fff;
+ font-family: FontAwesome;
+ font-size: 8px;
+ line-height: 11px;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block .fn {
+ margin-top: 2px;
+ color: #172738;
+ max-height: 34px;
+ overflow: hidden;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-content h4{
+ max-height: 16px;
+ padding: 8px 7px 10px 6px;
+ margin: 0px 0px 2px 0px;
+ background: #243F59;
+ color: #fff;
+ border-bottom: 2px solid #FF0366;
+ border-radius: 4px 4px 0px 0px;
+ font-family: Arial;
+ font-size: 13px;
+ text-transform: uppercase;
+ text-align: center;
+ overflow: hidden;
+}
+
+.profile-type-is-community #content .friends-block ul, #content .members-block ul {
+ min-width: 196px;
+ width: 192px;
+ margin: 0px 0px 0px 0px;
+ padding: 0px;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a{
+ padding: 2px;
+ color: #fff;
+ border-bottom: 1px dotted #2C4B6B;
+ text-align: center;
+ line-height: 30px;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a.add-friend{
+ border: none;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a.add-friend::before{
+ content: "\f067";
+ padding-right: 6px;
+ color: #FF0366;
+ font-family: FontAwesome;
+ font-size: 11px;
+}
+
+.profile-type-is-community #content .members-block .menu-submenu-content h4:hover,
+.profile-type-is-community #content .members-block .menu-submenu-content .menu-submenu-list li a:hover{
+ color: #ECEDF1;
+}
+
+.profile-type-is-community #content .members-block .common-profile-list-block img{
+ width: 50px;
+ height: 50px;
+ max-height: 50px;
+ max-width: 50px;
+ border-radius: 4px;
+}
+
+.profile-type-is-community #content .members-block .block-footer-content a.view-all{
+ position:relative;
+}
+
+/* Profile info block */
+
+#content .profile-image-block .admin-link a{
+ color: #2c66ce;
+}
+
+#content .profile-image-block .profile-info-options{
+ padding-right: 0;
+ text-align: center;
+}
+
+#content .profile-image-block .profile-info-options a.button.with-text{
+ border-color: #D3D6DE;
+ font-size: 12px;
+ text-transform: none;
+}
+
+#content .profile-image-block .profile-info-options a.button.with-text:hover{
+ border-color: #3E67B1;
+}
+
+/*** Members Page ***/
+
+/* Title of the area members */
+.action-profile-members .box-1{
+ width: 560px;
+}
+
+.action-profile-members #content .page-members-header{
+ margin-bottom: 45px;
+ border-bottom: 1px solid #D3D6DE;
+ font-family: Arial;
+ height: 150px;
+}
+
+.action-profile-members #content .page-members-header h1{
+ margin:20px 0px 8px 0px;
+}
+
+.action-profile-members #content .page-members-header h3.community-name{
+ margin: 0px 0px 5px 0px;
+ font-size: 14px;
+ font-weight: 300;
+}
+
+.action-profile-members #content .page-members-header ul li{
+ float:left;
+ margin:8px 0px 0px 0px;
+ width: 36%;
+
+}
+
+.action-profile-members #content .page-members-header a.button.with-text{
+ padding: 5px 15px;
+ border: 1px solid #D3D6DE;
+ text-transform: none;
+ font-size: 12px;
+ margin-right: 5px;
+}
+
+.action-profile-members #content .page-members-header a.button.with-text:hover{
+ border-color: #3E67B1;
+}
+
+
+/* Tabs */
+
+.action-profile-members #content .profile-members-tabs-container{
+ font-family: Arial;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-corner-all{
+ overflow: visible;
+ padding: 0;
+}
+
+.action-profile-members #content .profile-members-tabs-container .iu-widget{
+ font-size: 0px ;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-widget-header{
+ background: #ECEDF1;
+ border: none;
+ border-bottom: 3px solid #D3D6DE;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-widget-content{
+ background: none;
+ border: none;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-corner-all,
+.action-profile-members #content .profile-members-tabs-container .ui-corner-bl,
+.action-profile-members #content .profile-members-tabs-container .ui-corner-top,
+.action-profile-members #content .profile-members-tabs-container .ui-corner-right,
+.action-profile-members #content .profile-members-tabs-container .ui-corner-bottom,
+.action-profile-members #content .profile-members-tabs-container .ui-corner-left,
+.action-profile-members #content .profile-members-tabs-container .ui-corner-tr,
+.action-profile-members #content .profile-members-tabs-container .ui-corner-tl{
+ border-radius: 0px;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-state-default,
+.action-profile-members #content .profile-members-tabs-container .ui-widget-content .ui-state-default,
+.action-profile-members #content .profile-members-tabs-container .ui-widget-header .ui-state-default{
+ border: none;
+ background: #ECEDF1;
+ font-weight: normal;
+ color: #172738;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav {
+ font-size: 15px;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav .ui-tabs-anchor{
+ float: none;
+ display: table;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li{
+ padding-right: 3px;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li a:visited{
+ color: #172738;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li.ui-tabs-active {
+ margin-bottom: -3px;
+ padding-bottom: 1px;
+ border-bottom: 3px solid #FF0366;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li.ui-tabs-active.ui-state-active:before{
+ content:"\f0dd";
+ font-family: FontAwesome;
+ font-size: 16px;
+ position:absolute;
+ top:26px;
+ margin:0px 45%;
+ color:#FF0366;
+}
+
+.action-profile-members #content .profile-members-tabs-container .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
+ color: #FF0366;
+ font-weight: 300;
+}
+
+/* Sort selection */
+.action-profile-members #profile-members-sort-options{
+ font-size: 14px;
+ text-align: right;
+ margin:16px 15px 17px 6px;
+ border-bottom: 1px solid #ECEDF1;
+ padding-bottom:8px;
+}
+
+.action-profile-members #profile-members-sort-options label{
+ font-weight: 700;
+ color:#172738;
+}
+
+.action-profile-members #profile-members-sort-options select{
+ background: none;
+ border: 1px solid #D3D6DE;
+ border-radius: 4px;
+ padding: 4px 15px 4px 4px;
+ margin: 0px 0px 0px 10px;
+ font-size: 14px;
+}
+
+/* Members Tab */
+.action-profile-members .profile-members-tabs-container .profile-members{
+ padding-left: 5px;
+}
+
+/* Admins Tab */
+.action-profile-members .profile-members-tabs-container .profile-admins{
+ padding-left: 5px;
+}
+
+/* Profiles list*/
+.action-profile-members .common-profile-list-block .vcard{
+ border: none;
+}
+
+.action-profile-members .common-profile-list-block .vcard:hover{
+ border: none;
+ background: none;
+}
+
+.action-profile-members .common-profile-list-block .vcard a{
+ padding-bottom: 30px;
+}
+
+.action-profile-members .box-1 .common-profile-list-block span{
+ margin-right: 9px;
+ width: 90px;
+ height: 86px;
+}
+
+.action-profile-members .common-profile-list-block img{
+ border-radius: 4px;
+ width: 82px;
+ height: 82px;
+ max-width: 150px;
+ max-height: 150px;
+}
+
+.action-profile-members .menu-submenu{
+ background:#172738;
+ border-radius: 4px;
+ /***side block position***/
+ bottom:0px;
+ right: 105%;
+ width: 131px;
+ height: 178px;
+ box-shadow: 2px 2px 2px #ECEDF1;
+ -webkit-box-shadow: 2px 2px 2px #ECEDF1;
+ -moz-box-shadow: 2px 2px 2px #ECEDF1;
+}
+
+.action-profile-members .menu-submenu.down::before {
+ content:"\f0da";
+ color:#172738;
+ font-family: FontAwesome;
+ font-size: 25px;
+ float: right;
+ position: relative;
+ margin:-7px;
+ margin-top: 30%;
+}
+
+.action-profile-members .menu-submenu-header,
+.action-profile-members .menu-submenu-content,
+.action-profile-members .menu-submenu-footer{
+ background:none;
+}
+
+.action-profile-members .menu-submenu-header,
+.action-profile-members .menu-submenu-footer{
+ display: none;
+}
+
+.action-profile-members .menu-submenu-content{
+ height: 100%;
+}
+
+.action-profile-members #content .menu-submenu-content h4{
+ color:#fff;
+ font-size: 13px;
+ background:#243F59;
+ border-top-right-radius: 4px;
+ border-top-left-radius: 4px;
+ border-bottom: 2px solid #FF0366;
+ text-transform: uppercase;
+ padding:8px 7px 10px 6px;
+ margin:0px 0px 2px 0px;
+ text-align: center;
+ max-height: 16px;
+ overflow: hidden;
+}
+
+.action-profile-members #content .menu-submenu-content ul a{
+ padding-left: 0px;
+}
+
+.action-profile-members #content .menu-submenu-content .menu-submenu-list .add-friend::before{
+ content:"\f067";
+ font-family: FontAwesome;
+ color:#FF0366;
+ font-size: 11px;
+ padding-right: 6px;
+}
+
+.action-profile-members #content .menu-submenu-content .menu-submenu-list .add-friend:last-child{
+ border-bottom:none;
+}
+
+.action-profile-members #content .menu-submenu-content .menu-submenu-list li a {
+ color:#fff;
+ font-family: Arial;
+ font-size: 14px;
+ border-bottom:1px dotted #2C4B6B;
+ text-align: center;
+ padding-top:8px;
+ padding-bottom:10px;
+ margin-right: 1px;
+}
+
+.action-profile-members .common-profile-list-block .vcard .menu-submenu-trigger{
+ display: block;
+ background:#172738;
+ top:5px;
+ left:4px;
+ border:1px solid #172738;
+ padding-bottom: 0px;
+ border-radius: 5px;
+ -moz-border-radius:5px;
+ -webkit-border-radius:5px;
+ height: 15px;
+}
+
+.action-profile-members .common-profile-list-block .vcard .menu-submenu-trigger::before{
+ content:"\f053";
+ color:#fff;
+ font-family: FontAwesome;
+ font-size: 10px;
+ line-height: 11px;
+}
+
+.action-profile-members .box-1 .common-profile-list-block .fn{
+ font-size: 14px;
+ color:#172738;
+ margin-bottom: 27px;
+ margin-top:2px;
+ height: 35px;
+ max-height: 35px;
+ overflow: hidden;
+}
+
+/*** Events ***/
+
+#content .article-body-event .event-card{
+ border-top: 1px dotted #D3D6D3;
+ background-repeat: no-repeat;
+ width: 494px;
+ height: 116px;
+ margin-bottom: 30px;
+}
+
+#content .article-body-event .event-image{
+ border-right: 1px dotted #D3D6DE;
+}
+
+#content .article-body-event .about-event > span{
+ font-family: Arial;
+ line-height: 13px;
+}
+
+#content .article-body-event .about-event .event-date{
+ font-weight: bold;
+ letter-spacing: 0.49px;
+}
+
+#content .article-body-event .about-event .event-address{
+ margin-top: 19px;
+}
+
+#content .article-body-event .about-event .event-address span{
+ margin-top: 4.4px;
+ line-height: 14px;
+ letter-spacing: 0.5px;
+}
+
+#content .article-body-event .event-link{
+ letter-spacing: 0.48px;
+}
+
+#content .article-body-event .event-link a{
+ text-decoration: underline;
+}
+
+#content .article-body-event .event-body .event-lead p{
+ font-size: 16px;
+ font-family: Arial;
+ font-weight: bold;
+ letter-spacing: -0.4px;
+ line-height: 21px;
+}
+
+#content .article-body-event .event-body .event-content p{
+ font-size: 15px;
+ font-family: Arial;
+ line-height: 22px;
+}
diff --git a/src/noosfero-spb-theme/css/edition-pages.css b/src/noosfero-spb-theme/css/edition-pages.css
new file mode 100644
index 0000000..c5e2dae
--- /dev/null
+++ b/src/noosfero-spb-theme/css/edition-pages.css
@@ -0,0 +1,477 @@
+/*** General Form Fields ***/
+
+/*** Edit Blog and Articles ***/
+
+.controller-cms #content .main-content h1{
+ margin: 0 0 10px 0;
+ padding: 0;
+ color: #172738;
+ border-bottom: none;
+ font-family: Arial;
+ font-size: 32px;
+ font-weight: bold;
+ font-variant: normal;
+}
+
+.controller-cms #content .main-content form{
+ font-size: 14px;
+ font-family: Arial;
+}
+
+.controller-cms #content .main-content form .required-field .pseudoformlabel,
+.controller-cms #content .main-content form .required-field label.formlabel:after {
+ color: #FF0366;
+ font-size: 14px;
+ font-weight: 500;
+}
+
+.controller-cms #content .main-content .formlabel{
+ display: inline-block;
+ max-width: 100%;
+ margin-bottom: 5px;
+ padding: 10px 0 5px 0;
+ color: #231f20;
+ font-size: 14px;
+}
+
+.controller-cms #content .main-content .formfieldline .formfield code{
+ display: block;
+ width: auto;
+ height: 30px;
+ padding: 2px 0px 2px 0px;
+ border: none;
+ border-radius: 4px;
+ font-size: 15px;
+ font-family: Arial, helvetica;
+}
+
+.controller-cms #content .main-content .formfieldline .formfield code *{
+ display: inline;
+}
+
+.controller-cms #content .main-content .formfieldline .formfield input[type="text"]{
+ padding: 6px;
+ color: #585858;
+ background: #FFF;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-size: 15px;
+ font-family: Arial, helvetica;
+}
+
+.controller-cms #content .main-content .formfieldline textarea{
+ padding: 6px;
+ color: #585858;
+ background: none;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-family: Arial, helvetica;
+ font-size: 15px;
+}
+
+.controller-cms #content .main-content .formfieldline .formfield code input[type="text"]:hover,
+.controller-cms #content .main-content .formfieldline .formfield code input[type="text"]:focus,
+.controller-cms #content .main-content .formfieldline textarea:hover,
+.controller-cms #content .main-content .formfieldline textarea:focus{
+ border: 1px solid #172738;
+}
+
+.controller-cms #content .main-content .formfieldline .type-file .type-file .formlabel{
+ display: none;
+}
+
+.controller-cms #content .main-content .formfieldline .type-file .type-file .type-text .formlabel{
+ display: block;
+}
+
+.controller-cms #content .formfield #article_image_builder_uploaded_data,
+.controller-cms #content .formfield #article_image_builder_label{
+ height: 19px;
+ padding: 6px;
+ background: none;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-size: 12px;
+ text-indent: 0px;
+}
+
+.controller-cms #content .formfield #article_image_builder_uploaded_data:hover,
+.controller-cms #content .formfield #article_image_builder_label:hover,
+.controller-cms #content .formfield #article_image_builder_uploaded_data:focus,
+.controller-cms #content .formfield #article_image_builder_label:focus{
+ border: 1px solid #172738;
+}
+
+.controller-cms #content .formfield #fetch-external-feed{
+ padding-left: 20px;
+ border-radius: 4px;
+}
+
+.controller-cms #content .formfield #fetch-external-feed > input{
+ height: 13px;
+ margin: 8px 8px 8px 0px;
+ vertical-align: middle;
+ width: 13px;
+}
+
+.controller-cms #content .formfield #fetch-external-feed #external-feed-options #external-feed-options-only-once input{
+ margin-right: 3px;
+ width: 13px;
+ vertical-align: middle;
+}
+
+.controller-cms #content .formfield #fetch-external-feed #external-feed-options #external-feed-options-only-once label{
+ margin-right: 250px;
+}
+
+.controller-cms #content .main-content form label.formlabel,
+.controller-cms #content .main-content form .article-translation-field {
+ font-size: 14px;
+ margin-bottom: 5px;
+ color: #231f20;
+}
+
+.controller-cms #content .main-content form .article-translation-field {
+ margin-top: 25px;
+ margin-bottom: 15px;
+}
+
+.controller-cms #content .main-content form .button-bar input{
+ height: 30px;
+ padding: 2px 15px;
+ margin-right: 10px;
+ color: #FFF;
+ background: #3E67B1;
+ font-size: 15px;
+}
+
+.controller-cms #content .main-content form .button-bar input:hover{
+ background: #5E82C6;
+ border: none;
+}
+
+.controller-cms #content .main-content form .button-bar input.button.with-text{
+ height: 36px;
+}
+
+.controller-cms #content .main-content form .button-bar a.button{
+ height: 30px;
+ padding: 2px 15px;
+ color: #3E67B1;
+ background: #FFF;
+ border: 1px solid #3E67B1;
+ font-size: 14px;
+ text-align: center;
+}
+
+.controller-cms #content .main-content form .button-bar a.button:hover{
+ background: none;
+ color: #3E67B1;
+ border-color: #3E67B1;
+}
+
+.controller-cms #content .main-content form .box-title{
+ font-size: 15px;
+ font-family: Arial, helvetica;
+}
+
+.controller-cms #content .main-content #category-ajax-selector{
+ border-style: dotted;
+}
+
+.controller-cms #content .main-content #category-ajax-selector label{
+ font-size: 14px;
+}
+
+.controller-cms #content .main-content #category-ajax-selector .select-subcategory-link{
+ background: #FFF;
+ border: 1px solid #2C66CE;
+ color: #2C66CE;
+ padding: 3px;
+}
+
+.controller-cms #content .main-content #category-ajax-selector .select-subcategory-link:hover{
+ background: #2C66CE;
+ color: #FFF;
+}
+
+.controller-cms #content .main-content .inputosaurus-required{
+ background: none;
+ border: 1px solid #ccc;
+}
+
+.controller-cms #content .main-content .inputosaurus-required:hover,
+.controller-cms #content .main-content .inputosaurus-required:focus{
+ border: 1px solid #172738;
+}
+
+.controller-cms #content .main-content .inputosaurus-required input:hover{
+ background: none;
+}
+
+#content #edit-article-options h4 {
+ font-family: "open_sansbold", Arial, Helvetica, sans-serif;
+ font-size: 14px;
+}
+
+#content #edit-article-options div div {
+ margin-top: 13px;
+ margin-bottom: 13px;
+}
+
+/*** Article's edition page ***/
+
+#content .text-editor-sidebar .header{
+ padding: 13px 10px;
+ color: #172738;
+ background: #D3D6DE;
+ border-radius: 4px;
+ font-size: 14px;
+ font-weight: 300;
+ font-family: Arial;
+}
+
+#content .text-editor-sidebar .header a.button.icon-vertical-toggle{
+ padding: 0 15px;
+ background: #3E67B1;
+ color: #FFF;
+ font-size: 14px;
+ font-weight: 300;
+ font-family: Arial;
+}
+
+#content .text-editor-sidebar .header a.button.icon-vertical-toggle:hover{
+ background: #5E82C6;
+}
+
+#content .text-editor-sidebar-box{
+ background: #ECEDF1;
+ border-radius: 4px;
+ border: 1px solid #D3D6DE;
+}
+
+/*New Software form*/
+
+.action-software_communities_plugin_myprofile-new_software #content.current-step h3 {
+ color: #F50054;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content .main-block form input[type="text"] {
+ display: block;
+ height: 19px;
+ padding: 6px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ width: 384px;
+ font-size: 15px;
+ font-family: arial, helvetica;
+ color: #585858;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content .formfield input{
+ background: none #FFFFFF;
+ border: 1px solid #DDDDDD;
+ color: #585858;
+ font-size: 16px;
+ width: 76%;
+ word-wrap: break-word;
+ border-radius: 4px;
+}
+.action-software_communities_plugin_myprofile-new_software #content .main-content form label.formlabel.mandatory{
+ font-size: 14px;
+ margin-bottom: 5px;
+ color: #231f20;
+ font-weight: 300;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content .main-content form .required-field .formlabel.mandatory:after{
+ color: #FF0366;
+ font-weight: 500;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content .formfield textarea{
+ background: none #FFFFFF;
+ border: 1px solid #DDDDDD;
+ color: #585858;
+ font-size: 16px;
+ width: 100%;
+ word-wrap: break-word;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content #finality textarea {
+ resize: none;
+ height: 100px;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content #software-hostname {
+ float: left;
+ display: inline-block;
+ vertical-align: middle;
+ background: #EEE;
+ border: 1px solid #CFCFCF;
+ line-height: 22px;
+ padding: 0px 7px;
+ color: #4A4A4A;
+ font-size: 20px;
+ text-transform: lowercase;
+ min-width: 190px;
+ border-spacing: 20px;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content .main-block form #profile_change_picture {
+ padding: 0 15px 15px 15px;
+ border: 1px dotted #ddd;
+ margin-top: 10px;
+}
+
+.action-software_communities_plugin_myprofile-new_software #content .main-content form p .required-field {
+ max-width: 500px;
+ padding: 15px 20px;
+ margin: 20px 0 30px 0;
+ border: 1px dotted #ccc;
+ border-left: 5px solid #FF0366;
+ border-radius: 3px;
+ display: block;
+ background: #fff;
+ line-height: 20px;
+ font-size: 13px;
+}
+
+.action-software_communities_plugin_myprofile-new_software .explanation {
+font-style: italic;
+font-size: 10px;
+}
+
+/* new community form*/
+
+.action-memberships-new_community #content .main-block form input[type="text"] {
+ display: block;
+ height: 19px;
+ padding: 6px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ width: 384px;
+ font-size: 15px;
+ font-family: arial, helvetica;
+ color: #585858;
+}
+
+.action-memberships-new_community .formfield input{
+ background: none #FFFFFF;
+ border: 1px solid #DDDDDD;
+ color: #585858;
+ font-size: 16px;
+ width: 76%;
+ word-wrap: break-word;
+ border-radius: 4px;
+}
+
+.action-memberships-new_community #content .main-content form label.formlabel{
+ font-size: 14px;
+ margin-bottom: 5px;
+ color:#231f20;
+ font-weight: 300;
+}
+
+.action-memberships-new_community #content .main-content form .required-field .formlabel:after {
+ color: #FF0366;
+ font-weight: 500;
+}
+
+.action-memberships-new_community .formfield textarea{
+ background: none #FFFFFF;
+ border: 1px solid #DDDDDD;
+ color: #585858;
+ font-size: 16px;
+ width: 100%;
+ word-wrap: break-word;
+}
+
+.action-memberships-new_community #content .main-block form #profile_change_picture {
+ padding: 0 15px 15px 15px;
+ border: 1px dotted #ddd;
+ margin-top: 10px;
+}
+
+.action-memberships-new_community #content .main-content form p .required-field {
+ max-width: 500px;
+ padding: 15px 20px;
+ margin: 20px 0 30px 0;
+ border: 1px dotted #ccc;
+ border-left: 5px solid #FF0366;
+ border-radius: 3px;
+ display: block;
+ background: #fff;
+ line-height: 20px;
+ font-size: 13px;
+}
+
+/*Contact new form*/
+
+.action-contact-new #content .main-block form input[type="text"] {
+ display: block;
+ height: 19px;
+ padding: 6px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ width: 384px;
+ font-size: 15px;
+ font-family: arial, helvetica;
+ color: #585858;
+}
+
+.action-contact-new .formfield input{
+ background: none #FFFFFF;
+ border: 1px solid #DDDDDD;
+ color: #585858;
+ font-size: 16px;
+ width: 76%;
+ word-wrap: break-word;
+ border-radius: 4px;
+}
+
+.action-contact-new #content .main-content form label.formlabel{
+ font-size: 14px;
+ margin-bottom: 5px;
+ color:#231f20;
+ font-weight: 300;
+}
+
+.action-contact-new #content .main-content form .required-field .formlabel:after {
+ color: #FF0366;
+ font-weight: 500;
+}
+.action-contact-new #content .main-content form label.formlabel{
+ font-size: 14px;
+ margin-bottom: 5px;
+ color:#231f20;
+ font-weight: 300;
+}
+
+.action-contact-new #content .main-content form .required-field .formlabel:after {
+ color: #FF0366;
+ font-weight: 500;
+}
+
+
+.action-contact-new .formfield textarea{
+ background: none #FFFFFF;
+ border: 1px solid #DDDDDD;
+ color: #585858;
+ font-size: 16px;
+ width: 100%;
+ word-wrap: break-word;
+}
+
+.action-contact-new #content .main-content form p .required-field {
+ max-width: 500px;
+ padding: 15px 20px;
+ margin: 20px 0 30px 0;
+ border: 1px dotted #ccc;
+ border-left: 5px solid #FF0366;
+ border-radius: 3px;
+ display: block;
+ background: #fff;
+ line-height: 20px;
+ font-size: 13px;
+}
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/css/footer.css b/src/noosfero-spb-theme/css/footer.css
new file mode 100644
index 0000000..c65eb10
--- /dev/null
+++ b/src/noosfero-spb-theme/css/footer.css
@@ -0,0 +1,208 @@
+/******************Footer-Rodapé**********************************/
+#theme-footer {
+ width: 100%;
+ min-width: 960px;
+}
+
+#theme-footer a{
+ color: #2c66ce;
+}
+
+#theme-footer a:hover{
+ color: #2c66ce;
+}
+
+#theme-footer #footer-content {
+ background: #fff;
+}
+
+#theme-footer #footer-logos {
+ background: #0042b2;
+ max-width: 100%;
+ padding: 2em 0;
+ height: 49px;
+}
+
+#theme-footer #footer-logos > div {
+ max-width: 960px;
+ margin: 0 auto;
+}
+
+#theme-footer #footer-logos a {
+ display: block;
+ height: 49px;
+ float: left;
+}
+
+#theme-footer #footer-logos span {
+ display: none;
+}
+
+#theme-footer #footer-logos .logo-acesso {
+ background: transparent url(images/acesso-a-informacao.png) center center no-repeat;
+ width: 107px;
+}
+
+#theme-footer #footer-logos .logo-brasil {
+ background: transparent url(images/brasil.png) center center no-repeat;
+ width: 153px;
+}
+
+#footer-logos .logo-sgpr {
+ background: transparent url(images/sgpr.png) center center no-repeat;
+ width: 187px;
+ margin-right: 30px;
+}
+
+#theme-footer #footer-logos .institucionais {
+ float: right;
+}
+
+#theme-footer #footer-license {
+ max-width: 960px;
+ margin: 0 auto;
+ text-align: left;
+ padding: 5px;
+}
+
+#theme-footer #footer-license p {
+ color: #0d4094;
+ text-align: left;
+}
+
+/***********Rodape Colab *********************/
+
+#theme-footer footer{
+ display:block
+}
+
+#theme-footer footer {
+ background:#d5d5d5;
+}
+
+#theme-footer footer .footer-atalhos {
+ background:#fff;
+ border-bottom: 2px;
+}
+
+#theme-footer footer .container2{
+ width: 100%;
+ margin-right:auto;
+ margin-left:auto;
+ *zoom:1;
+ max-width: 960px;
+}
+
+#theme-footer .container2:before,
+#theme-footer .container2:after {
+ display:table;
+ content:"";
+ line-height:0;
+}
+
+#theme-footer .container2:after {
+ clear:both;
+}
+
+#theme-footer .voltar-ao-topo {
+ margin-top: 1.915em;
+ text-align: right;
+}
+
+#theme-footer footer .footer-atalhos a {
+ margin-right:12px
+}
+
+#theme-footer footer .footer-atalhos .voltar-ao-topo a {
+ color:#717782;
+ padding-left: 20px;
+ background: url(images/voltar-topo.png) no-repeat left center;
+ color: #777;
+ font-size: 15px;
+}
+
+#theme-footer footer .footer-atalhos .voltar-ao-topo a:hover {
+ text-decoration:underline;
+}
+
+#theme-footer footer .row {
+ margin-bottom: 20px;
+ margin-left: auto;
+ *zoom: 1;
+ margin-right: auto;
+}
+
+#theme-footer .row:before,
+#theme-footer .row:after {
+ display: table;
+ content: "";
+ line-height: 0;
+}
+
+#theme-footer .row:after {
+ clear:both;
+}
+
+#theme-footer footer nav {
+ border-left: 1px dotted #2c66ce;
+ padding: 0 5px 0 10px
+}
+
+#theme-footer footer nav h2 {
+ font-size: 18px;
+ font-weight: bold;
+ color: #2c66ce;
+ line-height: 1.3em;
+ padding: 0px;
+ margin: 0 0 8px 0;
+}
+
+#theme-footer footer nav ul {
+ margin-left: 0px;
+}
+
+#theme-footer footer nav li {
+ display: block;
+ padding-bottom: 3px;
+}
+
+#theme-footer footer nav a {
+ font-size: 13px;
+ color: #2c66ce;
+ line-height: 1.7em;
+ font-family: "open_sansregular", Arial, Helvetica, sans-serif;
+}
+
+#theme-footer footer nav a:hover {
+ color: #2c66ce;
+ text-decoration: underline;
+}
+
+#theme-footer footer .footer-menus {
+ padding-bottom: 10px;
+}
+
+#theme-footer .span2 {
+ width: 104px;
+}
+
+#theme-footer [class*="span"] {
+ float:left;
+ min-height: 1px;
+ margin-left: 30px;
+ margin-top: 30px;
+}
+
+#theme-footer .span3 {
+ width:210px;
+}
+
+#theme-footer .hide {
+ display:none;
+}
+
+#theme-footer .visible-phone {
+ display:none !important;
+}
+
+/*****fim footer Colab*****/
diff --git a/src/noosfero-spb-theme/css/header.css b/src/noosfero-spb-theme/css/header.css
new file mode 100644
index 0000000..40a20d4
--- /dev/null
+++ b/src/noosfero-spb-theme/css/header.css
@@ -0,0 +1,301 @@
+#theme-header {
+ height: auto;
+}
+
+.header-content * {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ vertical-align: baseline;
+}
+
+.header-content li { display: inline; }
+
+.header-content #header {
+ padding: 15px 0 0 0;
+ color: #000;
+ background-color:#f0f2f1;
+ background-color:#ecedf1;
+ background-image: -webkit-radial-gradient(center, ellipse cover, #f0f2f1 1%, #ecedf1 100%)
+}
+
+.header-content #header > div {
+ max-width: 960px;
+ min-width: 960px;
+ margin: 0 auto;
+}
+
+.header-content #accessibility {
+ display: block;
+ float: left;
+ font-family: arial;
+ font-size: 10px;
+ width: 50%;
+}
+
+.header-content #accessibility a {
+ margin-right: 8px;
+ color: #2c66ce;
+}
+
+.header-content #accessibility span {
+ background: none repeat scroll 0 0 #2c66ce;
+ color: #FFFFFF;
+ padding: 0 3px;
+}
+
+/* logo */
+.header-content #logo {
+ padding: 0;
+ float: left;
+ width: 50%;
+}
+
+.header-content #logo span {
+ display: block;
+}
+
+.header-content #logo a {
+ display: block;
+ width: 100%;
+ color: #03316f;
+ margin: 1em 0px;
+}
+
+.header-content #logo a,
+.header-content #logo #portal-title {
+ color: #03316f;
+}
+
+.header-content #logo #portal-title {
+ background-image: url("../images/logotipo_spb_beta.svg");
+ background-repeat: no-repeat;
+ background-size: 370px;
+ height: 78px;
+ width: 374px;
+ margin: 10px 0px 10px 0px;
+}
+
+.header-content #logo #portal-description {
+ font-size: 1.2em;
+ text-transform: uppercase;
+}
+
+/* Site Actions */
+.header-content #portal-siteactions {
+ display: block;
+ float: right;
+ clear: left;
+ padding-bottom: 2px;
+ margin-top: -15px;
+ font-size: 10px;
+ text-align: center;
+}
+
+.header-content #portal-siteactions a {
+ color:#2c66ce;
+ text-decoration: none;
+ padding: 4px 0 4px 10px;
+ text-transform: uppercase;
+ font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
+}
+
+.header-content #portal-siteactions a:hover {
+ color: #03316f;
+}
+
+.header-content #portal-siteactions li {
+ display: inline;
+ margin: 0 5px 0 0;
+ border-bottom: 1px dotted #2c66ce;
+}
+
+.header-content #portal-siteactions li a {
+ padding: 4px 0px;
+}
+
+.header-content #siteaction-accessibility,
+.header-content #siteaction-contraste,
+.header-content li#siteaction-mapadosite {
+ margin: 0px 48px 0px 0px;
+}
+
+/* Top links */
+.header-content #header #sobre {
+ line-height: 30px;
+ font-size: 12px;
+ height: 30px;
+ clear: both;
+ background-color:#CFD0D2;
+ max-width: 100%;
+ margin: 0px auto;
+ text-align: right;
+ padding: 0 0 0 10px;
+ border-right: none;
+}
+
+.header-content #sobre a {
+ color: #2c66ce;
+ font-family: 'Open Sans', Arial, Helvetica, sans-serif;
+}
+
+.header-content #links-rapidos{
+ width: 960px;
+ margin: 0 auto;
+ font-color:#fff;
+}
+
+.header-content #link-faq a {
+ border-right: 1px solid #2c66ce;
+ padding: 0 10px;
+}
+
+.header-content #link-contact a {
+ padding-left: 10px;
+}
+
+/* Searchbox */
+.header-content .LSBox {
+ margin: 0;
+ padding: 0;
+ border: none;
+}
+
+.header-content input.searchField {
+ -moz-appearance: none;
+}
+
+.header-content #portal-searchbox {
+ clear: right;
+ float: right;
+ font-size: 80%;
+ margin: 30px 0 15px;
+ text-align: right;
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ border: 1px solid #CCCCCC;
+ background: #fff;
+ padding: 2px;
+}
+
+.header-content #portal-searchbox .searchField {
+ padding: 0.45em;
+ border-right: none;
+ border: none;
+ width: 171px;
+}
+
+.header-content #portal-searchbox form {
+ white-space: nowrap;
+}
+
+.header-content #portal-searchbox label {
+ font-weight: normal;
+}
+
+.header-content #searchGadget {
+ width: 13em;
+}
+
+.header-content #header input.searchButton {
+ padding: 0.3em;
+ background: transparent;
+ text-indent: -2000px;
+ padding: 4px 15px;
+ border: none;
+}
+
+.header-content #content input.searchField {
+ margin-bottom: 1em;
+}
+
+.header-content #header input.searchButton {
+ background-image: url("../images/search-button.png");
+ background-position: 8px 2px;
+ background-repeat: no-repeat;
+ background-color: #ffffff;
+}
+
+.header-content #LSResult {
+ z-index: 1;
+ margin-top: 0.5%;
+}
+
+/* Social Icons */
+
+.header-content #social-icons {
+ float: right;
+ clear: right;
+ margin: 0px 0px 17px;
+}
+
+.header-content #social-icons ul {
+ display: table-row;
+}
+
+.header-content #social-icons li {
+ float: right;
+ width: 20px;
+ margin-left: 4px;
+ display: table-cell;
+}
+
+.header-content #social-icons li a {
+ width: 20px;
+ height: 20px;
+ padding: 0px;
+ display: inline-block;
+ opacity: .85;
+ border: none;
+ background-repeat: no-repeat;
+}
+
+.header-content #social-icons span {
+ display: none;
+}
+
+.header-content #sb_face,
+.header-content #sb_tweet,
+.header-content #sb_youtb,
+.header-content #sb_flickr {
+ background: url(images/icones_home_branco.jpg) 0px;
+}
+
+.header-content #sb_flickr {
+ background-position: -100px;
+}
+
+.header-content #sb_face {
+ background-position: -12px;
+}
+
+.header-content #sb_tweet {
+ background-position: -42px;
+}
+
+.header-content #sb_youtb {
+ background-position: -71px;
+}
+
+.header-content #social-icons a:focus,
+.header-content #social-icons a:hover {
+ opacity: 1;
+ filter: alpha(opacity=100);
+}
+
+/* end of Social Icons */
+
+/**** disable html****/
+#barra-psocial {
+ position: relative;
+ height: 40px;
+ margin: -3px 0px 0px 0px;
+ border: none;
+ background-color:rgb(236,237,241);
+}
+
+#barra-psocial li {
+ float: left;
+}
+/********** end disable html *************/
diff --git a/src/noosfero-spb-theme/css/home-page.css b/src/noosfero-spb-theme/css/home-page.css
new file mode 100644
index 0000000..c6829e7
--- /dev/null
+++ b/src/noosfero-spb-theme/css/home-page.css
@@ -0,0 +1,526 @@
+/*** boxes sizes definition **/
+.action-home-index .box-1 {
+ margin: 0px 0px 0px 210px;
+ width: 490px;
+}
+
+.action-home-index .box-3 {
+ width: 230px;
+}
+
+/*** end of boxes sizes definition **/
+
+/*** Box's patterns ***/
+
+.action-home-index .block-outer{
+ margin-bottom: 45px;
+}
+
+/* Read More pattern */
+
+.action-home-index #content .box .block-outer .read-more{
+ border-bottom: none;
+ background: #eee;
+ font: normal normal normal 10px 'open_sansregular', arial, helvetica, sans-serif;
+ text-transform: uppercase;
+ text-align: right;
+}
+
+.action-home-index #content .box .block-outer .read-more a{
+ padding: 8px;
+ line-height: 20px;
+ color: #000000;
+ display: block;
+}
+
+.action-home-index #content .box .block-outer .read-more a:hover{
+ background: #dedede;
+}
+
+.action-home-index #content .box .block-outer .read-more a::after{
+ margin-left: 7px;
+ border-radius: 4px;
+ padding: 0px 5px 0px 8px;
+ line-height: 20px;
+ color: #FFFFFF;
+ font: 14px 'open_sansbold', arial, helvetica, sans-serif;
+ text-align: center;
+ content: url('../images/right-arrow.png');
+}
+
+
+/*** end of box patterns ***/
+
+/******************** Box-1 ********************/
+
+/*** Software catalog search block **/
+
+.action-home-index #content #catalogo-software-search{
+ width: 100%;
+ background-color: #1A397D;
+ border-radius: 4px;
+}
+
+.action-home-index #content #catalogo-software-search h1{
+ margin: 0px 15px 10px 15px;
+ border-bottom: none;
+ padding: 10px 0px 0px 0px;
+ line-height: 1.3em;
+ color: #FFFFFF;
+ font: normal normal normal 22px 'open_sansregular', arial;
+ text-align: left;
+}
+
+.action-home-index #content #catalogo-software-search #search-Gadget{
+ margin: 0px 15px 9px 15px;
+ border: none;
+ border-radius: 4px;
+ padding: 7px;
+ width: 90%;
+}
+
+.action-home-index #content #catalogo-software-search .searchButton-catalog{
+ cursor: pointer;
+ margin: 0px 0px 15px 15px;
+ padding: 6px 25px;
+ border: 1px solid #FFFFFF;
+ border-radius: 4px;
+ background-color: #1A397D;
+ color: #FFFFFF;
+ font-weight: bold;
+ font-size: 14px;
+ text-transform: uppercase;
+}
+
+.action-home-index #content #catalogo-software-search #search-catalog-footer{
+ border-top: 1px solid;
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px;
+ background-color: #192758;
+ color: #FFFFFF;
+}
+
+.action-home-index #content #catalogo-software-search #search-catalog-footer p{
+ margin: 0px;
+ font-size: 11px;
+ text-align: right;
+ text-transform: uppercase;
+}
+
+.action-home-index #content #catalogo-software-search #search-catalog-footer a{
+ padding: 7px 0px 12px 0px;
+ color: #FFF;
+ display: block;
+}
+
+.action-home-index #content #catalogo-software-search #search-catalog-footer a:hover{
+ background-color: #101A38;
+}
+
+.action-home-index #content #catalogo-software-search #bt_catalog-search::after{
+ margin: 0px 15px 0 5px;
+ border-radius: 4px;
+ padding: 0px 4px 0 7px;
+ top: 2px;
+ line-height: 20px;
+ background: #eee;
+ color: #172857;
+ font-size: 15px;
+ text-align: center;
+ position: relative;
+ content: url('../images/right-arrow-black.png');
+}
+
+/*** Softwares block **/
+.action-home-index #content .softwares-block{
+ margin: 0px;
+ overflow: auto;
+}
+
+.action-home-index #content .softwares-block .block-title{
+ margin: 0px 0px 25px 0px;
+ border-top: 4px solid #2c66ce;
+ background: #eee;
+ color: #2c66ce;
+ font-weight: 300;
+}
+
+.action-home-index #content .softwares-block .block-footer-content a{
+ display:none;
+}
+
+.action-home-index #content .software-block{
+ width: 145px;
+ height: 218px;
+ margin: 0px 18px 14px 0px;
+}
+
+.action-home-index #content .software-block .software-block-logo{
+ border: 1px solid #ccc;
+ border-radius: 8px;
+ width: 140px;
+ height: 150px;
+ text-align: center;
+ overflow: hidden;
+ vertical-align: middle;
+ display: table-cell;
+}
+
+.action-home-index #content .software-block .software-block-logo img{
+ height: auto;
+ max-width: 90px;
+}
+
+.action-home-index #content .software-block .software-block-info{
+ height: 85px;
+ overflow: hidden;
+}
+
+.action-home-index #content .software-block .software-block-title{
+ height: 50px;
+ font-weight: 300;
+ font-size: 14px;
+ text-align: center;
+ overflow: hidden;
+}
+
+.action-home-index #content .software-block .software-block-title h3{
+ margin: 10px 0px 10px 0px;
+ color: #2C66CE;
+ font: normal normal 300 14px 'open_sansregular', arial, helvetica, sans-serif;
+}
+
+.action-home-index #content .software-block-description{
+ display: none;
+}
+
+.action-home-index #content .software-block .software-block-finality,
+.action-home-index #content .software-block .software-block-content{
+ text-align: right;
+}
+
+.action-home-index #content .software-block .software-block-finality{
+ border: solid 1px #D7D7D7;
+ border-radius: 8px;
+ width:142px;
+ height: 216px;
+ left: 0px;
+ background-color: #f4f4f4;
+ text-transform: uppercase;
+}
+
+.action-home-index #content .software-block .software-block-finality::after{
+ margin: 0px 7px 0px 3px;
+ border-radius: 4px;
+ padding: 0 4px 0 7px;
+ line-height: 20px;
+ background: #2c65cd;
+ color: #FFF;
+ font-size: 15px;
+ text-align: center;
+ position: relative;
+ content: url('../images/right-arrow.png');
+}
+
+.action-home-index #content .software-block .software-block-finality p{
+ margin: 0px 0px 7px 0px;
+ border-bottom: solid 1px #D7D7D7;
+ padding: 12px 12px 0px 12px;
+ height: 170px;
+ color: #172738;
+ font-size: 12px;
+ text-align: left;
+ text-transform: none;
+ overflow: hidden;
+}
+
+/*** News block - display content block **/
+
+.action-home-index #content .display-content-block .block-title{
+ margin: 0px;
+ border-top: 4px solid #643C67;
+ background: #eee;
+ color: #643C67;
+ font-weight: 300;
+}
+
+.action-home-index #content .display-content-block li{
+ border-top: 1px solid #eee;
+ padding: 15px 0px 0px 0px;
+ min-height: 150px;
+}
+
+.action-home-index #content .display-content-block li:first-child{
+ border-top: 0px solid #eee;
+}
+
+.action-home-index #content .display-content-block .published-at{
+ padding: 0px 0px 15px 0px;
+ color: #643C67;
+}
+
+.action-home-index #content .display-content-block .image{
+ padding-right: 25px;
+ padding: 0px 25px 0px 0px;
+ border: 0px solid #c0c1c1;
+ width: 150px;
+ display: table-cell;
+}
+
+.action-home-index #content .display-content-block .image a{
+ border-radius: 8px;
+ height: 90px;
+ overflow: hidden;
+ display: block;
+}
+
+.action-home-index #content .display-content-block .image img{
+ border: 0px solid #c0c1c1;
+ max-width: 150px;
+}
+
+.action-home-index #content .display-content-block .title{
+ margin: 2px 0px 4px 0px;
+ padding-right: 0px;
+ max-height: 40px;
+ text-align: justify;
+ overflow: hidden;
+}
+
+.action-home-index #content .display-content-block .title a{
+ padding: 0px;
+ color: #172738;
+ font: normal normal bold 16px/1.3em arial, helvetica, sans-serif;
+}
+
+.action-home-index #content .display-content-block .lead{
+ max-height: 47px;
+ overflow: hidden;
+}
+
+.action-home-index #content .display-content-block .lead a{
+ color: #000000;
+ font: 15px/1.3em arial;
+}
+
+.action-home-index #content .display-content-block .lead a:visited,
+.action-home-index #content .lead a:visited,
+.action-home-index #content .lead dl.portlet a:visited{
+ color: #172738;
+}
+
+.action-home-index #content .display-content-block .notice-info{
+ display: table-cell;
+ vertical-align: top;
+}
+
+.action-home-index #content .display-content-block .read_more{
+ display: none;
+}
+
+.action-home-index #content .display-content-block .read-more{
+ border-top: 1px solid #643C67;
+}
+
+.action-home-index #content .display-content-block .read-more a::after{
+ background: #643C67;
+}
+
+/******************** End Box-1 ********************/
+
+/******************** Box-3 ********************/
+
+/*** What Is block - Article block **/
+
+.template-default .action-home-index #content .box-3 .article-block .block-title{
+ border-top: 4px solid #08A649;
+ border-bottom: none;
+ padding: 6px 8px 22px 10px;
+ background: #eee;
+ color: #08A649;
+ font: normal normal 300 18px/1.3em 'open_sansregular', arial, helvetica, sans-serif;
+ text-align: left;
+ text-transform: none;
+}
+
+.template-default .action-home-index #content .box-3 .article-block .read-more{
+ margin-top: 30px;
+ border-top: 1px solid #08A649;
+}
+
+.template-default .action-home-index #content .box-3 .article-block .read-more a::after{
+ background: #08A649;
+}
+
+.template-default .action-home-index #content .box-3 .article-block .short-post{
+ padding-top: 23px;
+}
+
+.template-default .action-home-index #content .box-3 .article-block p{
+ margin: 0px 0px 14px 0px;
+ padding: 0px;
+ font: 15px/18px arial, helvetica, sans-serif;
+ text-align: left;
+ text-transform: none;
+}
+
+/******* See As Well Block - Highlights block *******/
+
+.action-home-index #content .highlights-block .block-title{
+ display: none;
+}
+
+.action-home-index #content .highlights-border{
+ border: 1px solid #c0c1c1;
+ border-radius: 8px;
+ width: auto;
+ height: 248px;
+ max-height: 250px;
+ background-color: #e8e9ec;
+ background-image: linear-gradient(
+ 0deg,
+ transparent 45%,
+ #fff 55%);
+ background-size: 100% 100%;
+}
+
+.action-home-index #content .highlights-container{
+ border-radius: 8px;
+ border-width: 0px 0px 1px 0px;
+ border-bottom: none;
+ padding: 0;
+ width: 100% !important;
+ max-height: 230px;
+ background: transparent;
+ position: relative;
+ top: 0;
+}
+
+.action-home-index #content .highlights-image-link{
+ padding: 18px 0px 0px 0px;
+ border-radius: 0px 0px 8px 8px;
+ width: 220px;
+ max-height: 217px;
+ background-color: #fff;
+}
+
+.action-home-index #content .highlights-image-link img{
+ height: 100px;
+ max-width: 200px;
+}
+
+.action-home-index #content .highlights-label{
+ border-top: 4px solid #3b61a7;
+ padding: 23px 20px 46px 20px;
+ max-height: 60px;
+ width: 190px;
+ position: relative;
+ bottom: -18px;
+ background: #e8e9ec;
+ color: #172638;
+ text-align: center;
+ font: normal normal normal 16px/1.5em 'open_sansbold', arial, helvetica, sans-serif;
+ vertical-align: middle;
+}
+
+.action-home-index #content .highlights-block-pager{
+ float: none;
+ display: block;
+ text-align: center;
+}
+
+.action-home-index #content .highlights-block-pager a{
+ margin: 0 4px;
+ border-color: transparent;
+ border-radius: 50%;
+ height: 6px;
+ width: 6px;
+ background: #c0c1c1 center center no-repeat;
+ color: transparent;
+ text-indent: -5000px;
+ z-index: 1000;
+ overflow: hidden;
+ display: inline-block;
+}
+
+.action-home-index #content .highlights-block-pager a.activeSlide{
+ border-color: transparent;
+ background: #3e67b1;
+ color: transparent;
+}
+
+/*** software highlights block ***/
+
+.action-home-index #content a.toggle-popover,
+.action-home-index #content a.toggle-popover:hover{
+ margin: 0 0 0 55px;
+ color: #3867b7;
+ cursor: pointer;
+}
+
+.action-home-index #content span.popover-span{
+ padding: 1px 6px;
+ border-radius: 50%;
+ background-color: #3867b7;
+ color: #ffffff;
+ font-weight: bold;
+ cursor: pointer;
+}
+
+/*** mais software block **/
+.action-home-index #content #mais-software-block{
+ margin: 11px 0px;
+ border: 1px solid #c0c1c1;
+ border-radius: 8px;
+ padding: 5px 0px;
+ width: auto;
+ background-color: #eeeff1;
+ font: 14px arial;
+}
+
+.action-home-index #content #mais-software-block #sbp-information-softwares h2{
+ margin: 10px 0px 0px 0px;
+ padding: 0px 0px 17px 15px;
+ border-bottom: 1px solid #c0c1c1;
+ color: #454545;
+ font: normal normal normal 16px/21px 'open_sansbold', arial, helvetica, sans-serif;
+ text-align: left;
+ text-transform: uppercase;
+}
+
+.action-home-index #content #mais-software-block #list-categories{
+ margin: 14px 14px 14px 14px;
+}
+
+.action-home-index #content #mais-software-block #list-categories p{
+ margin: 0 0 16px 0;
+ color: #464A55;
+}
+
+.action-home-index #content #mais-software-block #list-categories ul li{
+ margin: 18px 5px 5px 5px;
+}
+
+.action-home-index #content #mais-software-block #list-categories li a{
+ color: #335277;
+ font-weight: bold;
+}
+
+.action-home-index #content #mais-software-block #list-categories a:hover{
+ text-decoration: none;
+}
+
+.action-home-index #content #mais-software-block #footer-mais-software{
+ margin: 0px;
+ border-top: 1px solid #c0c1c1;
+ padding: 10px 10px 0px 3px;
+ font-size: 11px;
+ text-align: right;
+ text-transform: uppercase;
+}
+
+.action-home-index #content #mais-software-block #footer-mais-software a{
+ color: #464A55;
+}
+
+/******************** End Box-3 ********************/
diff --git a/src/noosfero-spb-theme/css/left-bar.css b/src/noosfero-spb-theme/css/left-bar.css
new file mode 100644
index 0000000..873694e
--- /dev/null
+++ b/src/noosfero-spb-theme/css/left-bar.css
@@ -0,0 +1,184 @@
+/******************** Box-2 ********************/
+
+/*** WARNING - WITHOUT BOX-4 ***/
+
+.template-leftbar .box-2,
+.template-default .box-2 {
+ width:150px;
+}
+
+.template-leftbar #content .box-2 .block-outer .block-title,
+.template-default #content .box-2 .block-outer .block-title {
+ background: #eee;
+ color: #4562b1;
+ border-top: 4px solid #4562b1;
+ line-height: 15px;
+}
+
+/*** Menus - Link list block ***/
+
+.template-leftbar #content .box-2 .link-list-block li,
+.template-default #content .box-2 .link-list-block li {
+ margin: 0;
+ padding: 0;
+ border-bottom: 1px solid #ddd;
+ border-top: none;
+}
+
+.template-leftbar #content .box-2 .link-list-block li a,
+.template-default #content .box-2 .link-list-block li a {
+ width: auto;
+ padding: 6px 5px 8px 18px;
+ background-color: #fff;
+ background-position: 0px 50%;
+ color: #2C66CE;
+ border-right: none;
+ border-top: 0px solid #64946E;
+ border-radius: 0 0 0 0;
+ font-weight: normal;
+ font-size: 14px;
+ line-height: 17px;
+}
+
+.template-leftbar #content .box-2 .link-list-block h3.empty + ul,
+.template-default #content .box-2 .link-list-block h3.empty + ul {
+ border-top: 1px solid #ddd;
+}
+
+.template-leftbar #content .box-2 .link-list-block h3.empty + ul li a,
+.template-default #content .box-2 .link-list-block h3.empty + ul li a {
+ padding-left: 0px;
+ padding-right: 0px;
+ background-image: none;
+}
+
+.template-leftbar #content .box-2 .link-list-block li a.link-this-page,
+.template-leftbar #content .box-2 .link-list-block li a.link-this-page:hover ,
+.template-default #content .box-2 .link-list-block li a.link-this-page,
+.template-default #content .box-2 .link-list-block li a.link-this-page:hover {
+ border-right: none;
+}
+
+.template-leftbar #content .box-2 .link-list-block li a:hover,
+.template-default #content .box-2 .link-list-block li a:hover {
+ background-color: #FFFFFF;
+ color: #000;
+}
+
+.template-leftbar #content .box-2 .link-list-block li a.link-this-page,
+.template-default #content .box-2 .link-list-block li a.link-this-page {
+ width: auto;
+ margin-left: 0px;
+ background-color: #ffffff;
+ font-weight: bold;
+}
+
+/*** END OF WARNING - WITHOUT BOX-4 ***/
+
+/*** WARNING - WITH BOX-4 ***/
+
+/************ DUPLICATE ************
+
+ This part of the code is duplicated because, if there is
+ a change of layout from template-default to lefttopright
+ the CSS fit without many complication.
+
+ */
+
+.template-lefttopright .box-3 {
+ width:150px;
+}
+
+.template-lefttopright #content .box-3 .block-outer .block-title {
+ background: #eee;
+ color: #4562b1;
+ border-top: 4px solid #4562b1;
+ line-height: 15px;
+}
+
+/*** Menus - Link list block ***/
+
+.template-lefttopright #content .box-3 .link-list-block li {
+ margin: 0;
+ padding: 0;
+ border-bottom: 1px solid #ddd;
+ border-top: none;
+}
+
+.template-lefttopright #content .box-3 .link-list-block li a {
+ width: auto;
+ padding: 6px 5px 8px 18px;
+ background-color: #fff;
+ background-position: 0px 50%;
+ color: #2C66CE;
+ border-right: none;
+ border-top: 0px solid #64946E;
+ border-radius: 0 0 0 0;
+ font-weight: normal;
+ font-size: 14px;
+ line-height: 17px;
+}
+
+.template-lefttopright #content .box-3 .link-list-block h3.empty + ul {
+ border-top: 1px solid #ddd;
+}
+
+.template-lefttopright #content .box-3 .link-list-block h3.empty + ul li a {
+ padding-left: 0px;
+ padding-right: 0px;
+ background-image: none;
+}
+
+.template-lefttopright #content .box-3 .link-list-block li a.link-this-page,
+.template-lefttopright #content .box-3 .link-list-block li a.link-this-page:hover {
+ border-right: none;
+}
+
+.template-lefttopright #content .box-3 .link-list-block li a:hover {
+ background-color: #FFFFFF;
+ color: #000;
+}
+.template-lefttopright #content .box-3 .link-list-block li a.link-this-page {
+ width: auto;
+ margin-left: 0px;
+ background-color: #ffffff;
+ font-weight: bold;
+}
+
+/************ END OF DUPLICATE ************
+
+/*** END OF WARNING - WITH BOX-4 ***/
+
+/*** Statistics block **/
+.template-default #content .box-2 .statistics-block {
+ padding: 10px 0px 10px 10px
+}
+
+.statistics-block-data ul {
+ margin-top: 10px;
+}
+
+.statistics-block-data ul li {
+ margin-left: 18px;
+ margin-top: 6px;
+ line-height: 17px;
+}
+
+.statistics-block-data ul li.users span {
+ font-size: 14px;
+}
+
+span.amount {
+ font-size: 14px;
+ font-weight: 700;
+}
+
+span.label {
+ font-size: 14px;
+}
+
+/*** end of statistics block **/
+
+/*** WARNING - WITH BOX-4 ***/
+
+/******************** end Box-2 ********************/
diff --git a/src/noosfero-spb-theme/css/main-content.css b/src/noosfero-spb-theme/css/main-content.css
new file mode 100644
index 0000000..56307fb
--- /dev/null
+++ b/src/noosfero-spb-theme/css/main-content.css
@@ -0,0 +1,174 @@
+/*** Box ***/
+
+.no-boxes .block {
+ margin-top: 50px;
+}
+
+#content .box-2 .block-outer .block,
+#content .box-3 .block-outer .block{
+ margin-bottom: 45px;
+ clear: both;
+}
+
+/*** Block Title ***/
+#content .block-outer .block-title {
+ padding: 5px 8px 18px 7px;
+ margin: 0px 0px 2px 0px;
+ background: #eee;
+ border-bottom: none;
+ font-size: 12px;
+ font-family: "open_sansbold", Arial, Helvetica, sans-serif;
+ font-variant: normal;
+ text-transform: uppercase;
+ text-align: left;
+ font-weight: 300;
+}
+
+#content .box-1 .block-title {
+ padding: 5px 8px 20px 10px;
+ font-size: 18px;
+ font-family: "open_sansregular", Arial, Helvetica, sans-serif;
+ text-transform: none;
+}
+
+/*** Pagination ***/
+
+#content .pagination {
+ margin: 48px auto 30px auto;
+ border-top: 0 none;
+ font-family: "open_sansregular", Arial, Helvetica, sans-serif;
+}
+
+#content .pagination a,
+#content .pagination em,
+#content .pagination span{
+ padding: 5px 9px;
+ margin-right: 4px;
+ color: #172738;
+ border: 1px solid #D3D6DE;
+ border-radius: 4px;
+ letter-spacing: 0.6px;
+ font-size: 12px;
+ font-weight: 700;
+ text-decoration: none;
+ display: inline-table;
+}
+
+#content .pagination .current {
+ background-color: #ECEDF1;
+ font-style: normal;
+}
+
+#content .pagination .previous_page{
+ float: left;
+}
+
+#content .pagination .next_page{
+ float: right;
+}
+
+#content .pagination .previous_page,
+#content .pagination .next_page{
+ width: auto;
+ position: relative;
+ background-image: none;
+ font-weight: 500;
+}
+
+#content .pagination .disabled{
+ opacity: 0.5;
+}
+
+/*** Button ***/
+
+#content .button-bar a.button,
+#content .button-bar input {
+ margin: 0 10px 10px 0;
+}
+
+#content a.button.with-text{
+ height: 32px;
+ padding: 5px 15px;
+ background: #FFF none;
+ color: #3E67B1;
+ border-radius: 4px;
+ border: 1px solid #3E67B1;
+ font-size: 14px;
+ line-height: 32px;
+ text-transform: uppercase;
+}
+
+#content #article-actions a.button.with-text{
+ display: inline-block;
+ height: 18px;
+ padding: 5px 10px;
+ margin-bottom: 5px;
+ background: #FFF none;
+ color: #3E67B1;
+ border-radius: 4px;
+ border: 1px solid #3E67B1;
+ font-size: 12px;
+ line-height: 18px;
+ text-transform: none;
+}
+
+#content #article-actions a.button.with-text span{
+ padding: 0;
+}
+
+.action-profile-members #content .button-bar a.button.with-text{
+ height: auto;
+ border: 1px solid #D3D6DE;
+ font-size: 12px;
+ line-height: normal;
+ text-transform: none;
+}
+.action-profile-members #content .page-profile-header a.button.with-text{
+ border:none;
+}
+.action-profile-members #content .button-bar a.button.with-text:hover{
+ border-color: #3E67B1;
+}
+
+#content form input.button.with-text{
+ height: 42px;
+ max-height: 42px;
+ padding: 5px 15px;
+ background: #FFF none;
+ color: #3E67B1;
+ border-radius: 4px;
+ border: 1px solid #3E67B1;
+ font-size: 14px;
+ line-height: 32px;
+ text-transform: uppercase;
+}
+
+#content a.button:hover,
+#content #article-actions a.button.with-text:hover,
+#content input.button.with-text:hover{
+ background-color: #3E67B1;
+ color: #FFF;
+}
+
+/* This is a temporary solution until noosfero deals with logged-out comments in a better manner. */
+.comment-replies .comment-logged-out .comment-text,
+.comment-logged-out .comment-picture,
+.comment-logged-out h4 {
+ opacity: 1.0;
+}
+
+.comment-logged-out .comment-text,
+.comment-info {
+ color: black;
+}
+/**/
+
+/* Temporary solution to code block in tutorial page. */
+.article-body td {
+ background-color: white;
+}
+
+.article-body td:hover {
+ background-color: white;
+}
+/* End of temporary solution to code block in tutorial page. */
diff --git a/src/noosfero-spb-theme/css/news-page.css b/src/noosfero-spb-theme/css/news-page.css
new file mode 100644
index 0000000..26d9720
--- /dev/null
+++ b/src/noosfero-spb-theme/css/news-page.css
@@ -0,0 +1,215 @@
+/*** News Page's homepage ***/
+
+/** Header's Block **/
+.profile-name-is-spb #article #article-toolbar #article-header h1.title,
+#content .blog #article-header h1.title{
+ margin: 20px 0px 10px 0px;
+ padding: 0px 0px 10px 0px;
+ border-bottom: 1px solid #D3D6DE;
+ font: normal normal bold 35px/37px arial;
+}
+
+/* WARNING:
+ * This solution is TEMPORARY. This informations shouldn't exist
+ * in this area.
+ *
+ * TODO: Remove this informations of the html and, then, from here.
+ */
+
+#article-toolbar a.button.icon-feed.blog-feed-link {
+ display: none;
+}
+
+/* WARNING:
+ * This solution is TEMPORARY. This informations shouldn't exist
+ * in this area.
+ *
+ * TODO: Remove this informations of the html and, then, from here.
+ */
+#content .blog #article-header .publishing-info .date,
+#content .blog #article-header .publishing-info .author,
+#content .blog #article-header .publishing-info .comments {
+ display: none;
+}
+
+
+/** General Properties of News **/
+#content .blog .article-body p {
+ margin: 0px 0px 5px 0px;
+ max-height: 25px;
+ color: #172738;
+ text-align: left;
+ text-overflow: ellipsis;
+ font: 14px/21px arial;
+ overflow: hidden;
+}
+
+#content .blog .publishing-info {
+ display: inline;
+}
+
+#content .blog .blog-post {
+ margin: 0 auto;
+ border-bottom: 1px solid #ccc;
+ padding: 25px 0px 0px 0px;
+ background: none;
+}
+
+#content .blog .blog-post h1.title {
+ margin: 0px 0px 10px 0px;
+ padding: 0px 0px 0px 0px;
+ max-width: 555px;
+ max-height: 40px;
+ border: none;
+ font: normal normal bold 16px/20px arial;
+ overflow: hidden;
+ display: inline-block;
+}
+
+#content .blog .blog-post h1.title a {
+ color: black;
+}
+
+/* WARNING:
+ * This solution is TEMPORARY. This informations shouldn't exist
+ * in this area.
+ *
+ * TODO: Remove this informations of the html and, then, from here.
+ */
+#content .blog .blog-post .author {
+ display: none;
+}
+
+#content .blog .blog-post .publishing-info {
+ border-top: none;
+ color: #172838;
+ font: 13px/21px arial;
+}
+
+#content .blog .blog-post .publishing-info .date {
+ margin: 0px 0px 5px 0px;
+ display: block;
+}
+
+#content .blog .blog-post .post-pic {
+ margin: 0px 20px 5px 0px;
+ border-radius: 4px;
+ height: 80px;
+ width: 20%;
+ background: center/cover no-repeat;
+ float: left;
+}
+
+#content .blog .blog-post .short-post {
+ max-height: 35px;
+ text-align: justify;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+/* WARNING:
+ * This solution is TEMPORARY. This informations shouldn't exist
+ * in this area.
+ *
+ * TODO: Remove this informations of the html and, then, from here.
+ * The correct is the text is sensitive to lead to the complete text.
+ */
+#content .blog .blog-post .read-more {
+ display: none;
+}
+
+#content .blog #article-actions:last-child {
+ border-top: none;
+}
+/** end of General Properties of News **/
+
+
+/** Main News' Block **/
+#content .blog .page-1 .position-1 {
+ padding: 0px 0px 0px 0px;
+}
+
+#content .blog .page-1 .position-1 .title a {
+ line-height: 37px;
+ color: #172738 !important;
+ font-size: 34px;
+}
+
+#content .blog .page-1 .position-1 .post-pic {
+ margin: 0px 0px 13px 0px;
+ max-height: 320px;
+ height: 320px;
+ width: 100%;
+}
+
+#content .blog .page-1 .position-1 .short-post {
+ max-height: 50px;
+}
+
+
+/** Secondary News' Block **/
+#content .blog .page-1 .position-2,
+#content .blog .page-1 .position-3,
+#content .blog .page-1 .position-4 {
+ margin: 0px 0px 0px 0px;
+ padding: 20px 21px 45px 0px;
+ height: 235px;
+ width: 30.5%;
+ display: block;
+ float: left;
+}
+
+#content .blog .page-1 .position-2 p,
+#content .blog .page-1 .position-3 p,
+#content .blog .page-1 .position-4 p {
+ max-height: 45px;
+}
+
+#content .blog .page-1 .position-4 {
+ margin: 0px;
+ padding-right: 0px;
+}
+
+#content .blog .page-1 .position-2 .post-pic,
+#content .blog .page-1 .position-3 .post-pic,
+#content .blog .page-1 .position-4 .post-pic {
+ margin-top: 12px;
+ top: 10px;
+ height: 120px;
+ width: 100%;
+}
+
+#content .blog .page-1 .position-4 .post-pic {
+ margin-right: 0px;
+}
+
+#content .blog .page-1 .position-2 .short-post,
+#content .blog .page-1 .position-3 .short-post,
+#content .blog .page-1 .position-4 .short-post {
+ max-height: 50px;
+ color: #172738;
+ text-align: justify;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+
+
+/** Lastest News' Block ***/
+
+/* This rule serves to maintain the element in position-5 clear the
+ * configurations of float.
+ */
+#content .blog .blog-post.position-5 {
+ clear: both;
+}
+
+/** Pagination **/
+
+#content #article .pagination .next_page{
+ position: relative;
+
+}
+
+
+/*** end of News Page's homepage ***/
diff --git a/src/noosfero-spb-theme/css/overwriting-base-theme.css b/src/noosfero-spb-theme/css/overwriting-base-theme.css
new file mode 100644
index 0000000..8b3903a
--- /dev/null
+++ b/src/noosfero-spb-theme/css/overwriting-base-theme.css
@@ -0,0 +1,204 @@
+/************overwriting themes/base/style.css****************/
+#wrap-1, #theme-footer {
+ margin: auto;
+ width: 100%;
+}
+
+#wrap-2 {
+ width: 960px;
+ margin: 0 auto;
+ border: none;
+ padding: 0px;
+}
+
+#main {
+ background: #fff;
+ font-size: 1.3em;
+ padding: 1em 0;
+ max-width: 960px;
+ margin: 0 auto;
+}
+
+#wrapper {
+ margin: 0 auto;
+ font-size: 1.2em;
+ width: 100%;
+}
+
+.main-content {
+ border-style: none;
+ box-shadow: none;
+ padding: 10px 20px;
+}
+
+.profile-image-block .admin-link {
+ font-size: 100%;
+}
+
+/* ==> blocks.css <== */
+
+.block a {
+ color: #555753;
+}
+.block a:visited {
+ color: #888a85;
+ font-weight: normal;
+}
+.block a:hover {
+ color: #2e3436;
+ text-decoration: none;
+}
+
+/* Title Header */
+#content .main-block h1,
+#content .main-block h2,
+#content .main-block h3,
+#content .main-block h4 {
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+#content .main-block h1,
+#not-found h1,
+#access-denied h1,
+#content .no-boxes h1 {
+ margin: 20px 0 10px 0;
+ padding: 0;
+ color: #172738;
+ border-bottom: none;
+ font-family: Arial;
+ font-size: 34px;
+ font-weight: bold;
+ font-variant: normal;
+ line-height: 37px;
+}
+
+#content .title {
+ font-weight: normal;
+ padding-right: 70px;
+}
+
+#content .main-block h3 {
+ font-size:18px;
+ line-height: 21px;
+}
+
+/****************************************/
+
+/*recent documents - everywhere on site*/
+#content .recent-documents-block ul {
+ margin-left: 0;
+ padding: 0;
+}
+
+#content .recent-documents-block li {
+ background: none repeat scroll 0 0 #eeeff2;
+ border-bottom: 1px solid #c0c1c1;
+ display: block;
+ margin: 0;
+ min-height: 1em;
+ padding: 20px;
+ text-align: left;
+}
+
+#content .recent-documents-block li a {
+ color: #464A55;
+ line-height: 1.2em;
+}
+#content .recent-documents-block li a:hover{
+ color: #000;
+}
+
+#content .recent-documents-block .block-title {
+ border-bottom: 1px solid #757575;
+ margin-bottom: 0;
+}
+
+
+#site-title {
+ position: absolute;
+ left: 8px;
+ top: -160px;
+ height: 78px;
+ width: 480px;
+ display: none;
+}
+
+#content {
+ left: -480px;
+ margin-left: 50%;
+ margin-top: 38px;
+ position: relative;
+ width: 960px;
+}
+
+
+input.button.with-text {
+ background-position: 3px 50%;
+ font-size: 12px;
+ padding: 0 2px 2px 20px;
+ max-height: 28px;
+}
+
+#content a.button.with-text,
+#content a.button.with-text {
+ height: 28px;
+ max-height: 28px;
+}
+#content input.button, #content a.button {
+ background-color: #EEEEEE;
+ background-repeat: no-repeat;
+ border: 0px solid #CCCCCC;
+ color: #555555;
+ line-height: 16px;
+ text-decoration: none;
+}
+
+#content #article-actions input.button,
+#content #article-actions a.button,
+#content a.button,
+#content input.button {
+ background-color: transparent;
+ border: 1px solid #CCCCCC;
+ vertical-align: middle;
+}
+
+#content a.button.with-text {
+ line-height: 28px;
+ height: 30px;
+ max-height: 30px;
+}
+
+#content form input.button.submit {
+ height: 32px;
+ max-height: 32px;
+ margin-right: 5px;
+}
+#content #article-actions input.button:hover,
+#content #article-actions a.button:hover {
+ background-color: #ccc;
+ border: 1px solid #CCCCCC;
+ color: white;
+}
+
+#content a.button:hover {
+ border: 1px solid #CCCCCC;
+}
+
+/*label of search's radio buttons*/
+#content .search-field label {
+ display: inline-block;
+ font-size: 12px;
+ vertical-align: middle;
+ margin-left: 5px;
+}
+
+#public-profile-search .formfield, #public-profile-search .submit {
+ margin-bottom: 5px;
+}
+
+#content .profile ul{
+ margin-left: 1em;
+}
+
+/*********************end of overwritting themes/base/style.css*********************************/
+
diff --git a/src/noosfero-spb-theme/css/popover.css b/src/noosfero-spb-theme/css/popover.css
new file mode 100644
index 0000000..905383b
--- /dev/null
+++ b/src/noosfero-spb-theme/css/popover.css
@@ -0,0 +1,191 @@
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1060;
+ display: none;
+ max-width: 276px;
+ padding: 1px;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 14px;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1.42857143;
+ text-align: left;
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ word-wrap: normal;
+ white-space: normal;
+ background-color: #fff;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ border: 1px solid #ccc;
+ border: 1px solid rgba(0, 0, 0, .2);
+ border-radius: 6px;
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
+ box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
+
+ line-break: auto;
+}
+.popover.top {
+ margin-top: -12px;
+}
+.popover.right {
+ margin-left: 10px;
+}
+.popover.bottom {
+ margin-top: 10px;
+}
+.popover.left {
+ margin-left: -10px;
+}
+.popover-title {
+ padding: 8px 14px;
+ margin: 0;
+ font-size: 14px;
+ background-color: #f7f7f7;
+ border-bottom: 1px solid #ebebeb;
+ border-radius: 5px 5px 0 0;
+}
+.popover-content {
+ padding: 9px 14px;
+}
+.popover > .arrow,
+.popover > .arrow:after {
+ position: absolute;
+ display: block;
+ width: 0;
+ height: 0;
+ border-color: transparent;
+ border-style: solid;
+}
+.popover > .arrow {
+ border-width: 11px;
+}
+.popover > .arrow:after {
+ content: "";
+ border-width: 10px;
+}
+.popover.top > .arrow {
+ bottom: -11px;
+ left: 50%;
+ margin-left: -11px;
+ border-top-color: #999;
+ border-top-color: rgba(0, 0, 0, .25);
+ border-bottom-width: 0;
+}
+.popover.top > .arrow:after {
+ bottom: 1px;
+ margin-left: -10px;
+ content: " ";
+ border-top-color: #fff;
+ border-bottom-width: 0;
+}
+.popover.right > .arrow {
+ top: 50%;
+ left: -11px;
+ margin-top: -11px;
+ border-right-color: #999;
+ border-right-color: rgba(0, 0, 0, .25);
+ border-left-width: 0;
+}
+.popover.right > .arrow:after {
+ bottom: -10px;
+ left: 1px;
+ content: " ";
+ border-right-color: #fff;
+ border-left-width: 0;
+}
+.popover.bottom > .arrow {
+ top: -11px;
+ left: 50%;
+ margin-left: -11px;
+ border-top-width: 0;
+ border-bottom-color: #999;
+ border-bottom-color: rgba(0, 0, 0, .25);
+}
+.popover.bottom > .arrow:after {
+ top: 1px;
+ margin-left: -10px;
+ content: " ";
+ border-top-width: 0;
+ border-bottom-color: #fff;
+}
+.popover.left > .arrow {
+ top: 50%;
+ right: -11px;
+ margin-top: -11px;
+ border-right-width: 0;
+ border-left-color: #999;
+ border-left-color: rgba(0, 0, 0, .25);
+}
+.popover.left > .arrow:after {
+ right: 1px;
+ bottom: -10px;
+ content: " ";
+ border-right-width: 0;
+ border-left-color: #fff;
+}
+
+/*** popover in software highlights block ***/
+
+.highlights-popover {
+ max-width: 280px;
+ margin: 0 0 0 -75px;
+ background: #172638;
+ color: #FFFFFF;
+}
+
+.highlights-popover .popover-content {
+ padding: 0;
+}
+
+.highlights-popover p {
+ padding: 13px 13px 15px;
+ margin: 0px;
+ font-size: 14px;
+ line-height: 20px;
+}
+
+.highlights-popover span {
+ font-weight: bold;
+ border-bottom: 1px dotted #FFFFFF;
+}
+
+#content .highlights-popover a,
+#content .highlights-popover a:visited,
+#content .highlights-popover a:hover,
+#content .highlights-popover a:link {
+ font-weight: bold;
+ color: #FFFFFF;
+ display: block;
+ padding: 8px 15px;
+ border-top: 1px dotted rgba(255,255,255,0.1);
+}
+
+.highlights-popover a:before {
+ font-family: "FontAwesome";
+ content: "\f067";
+ vertical-align: middle;
+ color: #ff0066;
+ padding: 0 5px 0 0;
+}
+
+.highlights-popover.top > .arrow,
+.highlights-popover.right > .arrow,
+.highlights-popover.bottom > .arrow,
+.highlights-popover.left > .arrow {
+ margin-left: 64px;
+}
+
+.highlights-popover.top > .arrow:after,
+.highlights-popover.right > .arrow:after,
+.highlights-popover.bottom > .arrow:after,
+.highlights-popover.left > .arrow:after {
+ border-top-color: #172638;
+}
diff --git a/src/noosfero-spb-theme/css/search-pages.css b/src/noosfero-spb-theme/css/search-pages.css
new file mode 100644
index 0000000..fb05e26
--- /dev/null
+++ b/src/noosfero-spb-theme/css/search-pages.css
@@ -0,0 +1,115 @@
+/*** Search Community ***/
+
+.action-search-index #content form #search-header,
+.action-search-people #content form #search-header,
+.action-search-communities #content form #search-header{
+ margin-top: 5px;
+ float: right;
+ border: none;
+}
+
+.action-search-people #content form #search-header #search-filters .sod_select,
+.action-search-communities #content form #search-header #search-filters .sod_select{
+ color: #3E67B1;
+ border: 1px solid #3E67B1;
+ border-radius: 4px;
+ font-family: Arial;
+ font-variant: normal;
+ font-weight: 300;
+ box-shadow: none;
+}
+
+.action-search-people #content form #search-header #search-filters .sod_select .sod_list,
+.action-search-communities #content form #search-header #search-filters .sod_select .sod_list{
+ margin: -2px 0 0 -1px;
+ color: #3E67B1;
+ border: 1px solid #3E67B1;
+ border-top: none;
+ border-radius: 0px 0px 4px 4px;
+ font-family: Arial;
+ font-variant: normal;
+ font-weight: 300;
+}
+
+.action-search-people #content form #search-header #search-filters .sod_select .sod_list .active,
+.action-search-communities #content form #search-header #search-filters .sod_select .sod_list .active{
+ border-radius: 0px 0px 4px 4px;
+}
+
+.action-search-people #content form #search-header #search-filters .sod_select .sod_list .selected,
+.action-search-communities #content form #search-header #search-filters .sod_select .sod_list .selected{
+ padding-right: 21px;
+}
+
+.action-search-people #content form #search-subheader .sod_select,
+.action-search-communities #content form #search-subheader .sod_select{
+ line-height: 15px;
+}
+
+.action-search-index #content form .search-field,
+.action-search-people #content form .search-field,
+.action-search-communities #content form .search-field{
+ margin-bottom: 30px;
+}
+
+.action-search-index #content form .search-field .formfield,
+.action-search-people #content form .search-field .formfield,
+.action-search-communities #content form .search-field .formfield{
+ float: left;
+ width: 99%;
+}
+.action-search-index #content form .search-field .formfield input,
+.action-search-people #content form .search-field .formfield input,
+.action-search-communities #content form .search-field .formfield input{
+ margin-top: 0px;
+ padding: 6px;
+ height: 19px;
+ max-height: 19px;
+ max-width: 98%;
+ background: none;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+
+.action-search-index #content form input.button.submit,
+.action-search-people #content form input.button.submit,
+.action-search-communities #content form input.button.submit{
+ height: 32px;
+ margin-top: 8px;
+ padding: 5px 15px;
+ background: #3E67B1 none;
+ color: #FFF;
+ border-radius: 4px;
+ border: 1px solid #3E67B1;
+ font-size: 14px;
+ line-height: 14px;
+ text-transform: uppercase;
+}
+
+.action-search-index #content form input.button.submit:hover,
+.action-search-people #content form input.button.submit:hover,
+.action-search-communities #content form input.button.submit:hover{
+ background: #5E82C6;
+}
+
+.action-search-people #search-results .search-results-type-people,
+.action-search-communities #search-results .search-results-type-community{
+ background: none;
+ border: 1px solid #ccc;
+ border-radius: 10px;
+}
+
+.action-search-index #search-results h3{
+ margin: 20px 0 10px 0;
+ color: #172738;
+ font-size:18px;
+ line-height: 21px;
+ font-family: Arial;
+ font-weight: 700;
+ font-variant: normal;
+}
+
+.action-search-index #search-results .search-results-innerbox{
+ background: none;
+ border: 1px solid #ccc;
+}
diff --git a/src/noosfero-spb-theme/css/software-catalog-page.css b/src/noosfero-spb-theme/css/software-catalog-page.css
new file mode 100644
index 0000000..2b32cd0
--- /dev/null
+++ b/src/noosfero-spb-theme/css/software-catalog-page.css
@@ -0,0 +1,426 @@
+/*** Title and subtitle ***/
+
+.action-search-software_infos #content {
+ margin-top: 10px;
+ padding: 0px;
+}
+
+.action-search-software_infos .main-content {
+ border: none;
+ box-shadow: none;
+}
+
+.action-search-software_infos #content .main-content h2{
+ color: #FF0366;
+ font-size: 16px;
+ font-family: "open_sansregular",Arial, Helvetica,sans-serif;
+ font-weight: 300;
+ text-transform: uppercase;
+}
+
+.action-search-software_infos #content .main-content h1{
+ padding: 5px 0 10px 0;
+ border-bottom: 1px solid #D3D6DE;
+ font-family: Arial, Helvetica, sans-serif;
+ font-size: 35px;
+ font-variant: normal;
+}
+
+/*** end of title and subtitle ***/
+
+/*** Search Box ***/
+.action-search-software_infos .search-form {
+ margin-top:28px;
+ padding: 0;
+ background: #ecedf1;
+ border-radius: 4px;
+ border: 1px solid #D3D6DE;
+ background-image:url("catalogo.png");
+}
+
+.action-search-software_infos #software-search-container .search-form h3{
+ margin: 0px 0px 3px 0px;
+ padding: 16px 0 20px 14px;
+ color: #2C4B6B;
+ font-family:"open_sansregular", Arial, Helvetica, sans-serif;
+ color: #2B51A8;
+ font-weight: bold;
+ font-size: 15px;
+ text-transform: uppercase;
+}
+
+/*.action-search-software_infos #content .search-form .project-software {
+ margin: 0 0 0 15px;
+}
+
+ It's TEMPORARY
+.action-search-software_infos #content .search-form .doubts-catalog-software {
+ display: none;
+}*/
+
+/**Radio Buttons***/
+.action-search-software_infos #public_software_radio_button,
+.action-search-software_infos #all_radio_button {
+ margin:5px 4px 15px 15px;
+ line-height: 20px;
+ position:absolute;
+}
+.action-search-software_infos .search-form label,
+.action-search-software_infos .search-form label{
+ margin:0px 3px 4px 32px;
+ line-height: 22px;
+ font-size: 15px;
+ font-family: Arial;
+}
+
+.action-search-software_infos #software-search-container .search-form .doubts-catalog-software{
+ border:1px solid #3E67B1;
+ border-radius:50%;
+ padding:0px 3px;
+ font-size: 14px;
+ font-weight: 900;
+ background:#3E67B1;
+ color:#fff;
+ font-family: Arial;
+ cursor: pointer;
+}
+/******/
+
+.action-search-software_infos #content .search-form .search-field .formfield {
+ width: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+.action-search-software_infos #content .search-form .search-field #search-input {
+ width: 96%;
+ margin: 13px 0px 4px 13px;
+ padding: 7px;
+ background: #FFF;
+ border-radius: 4px;
+ border: 1px solid #D3D6DE;
+ font-size: 14px;
+}
+
+
+.action-search-software_infos #content .search-form .search-field input.button{
+ padding: 0px;
+ background-color: #3E67B1;
+ color: #FFF;
+ border: 1px solid #3E67B1;
+ font-family: "open_sansbold",Arial,sans-serif;
+ border-radius: 4px;
+}
+
+.action-search-software_infos #content .search-form .search-field input.button.submit {
+ width: auto;
+ height: 30px;
+ max-height: 30px;
+ margin: 14px;
+ padding: 0 14px 0 14px;
+ background: #3E67B1;
+ line-height: 14px;
+ border-radius: 4px;
+ color: #ffffff;
+ text-transform: uppercase;
+ font-family: "open_sansbold",Arial,sans-serif;
+ font-size: 14px;
+}
+
+/* Filter options */
+
+.action-search-software_infos #filter-catalog-software {
+ background-color: #D3D6DE;
+}
+
+.action-search-software_infos #filter-option-catalog-software {
+ cursor: pointer;
+ padding: 14px;
+ background-color: #D3D6DE;
+ border: none;
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px;
+ font-size: 11px;
+ text-align: right;
+ text-transform: uppercase;
+}
+
+.action-search-software_infos #filter-option-catalog-close {
+ padding: 7px 7px 17px 10px;
+ display: none;
+}
+.action-search-software_infos #filter-option-catalog-software:hover {
+ background-color: #c7c7c7;
+}
+
+.action-search-software_infos #filter-option-catalog-software:after {
+ content: "";
+ margin-left: 5px;
+ padding: 3px 10.5px;
+ background: url("../images/bottom-arrow.png") no-repeat center;
+ background-color: #3E67B1;
+ border-radius: 4px;
+}
+
+.action-search-software_infos #filter-catalog-software #filter-categories-option {
+ border: none;
+ height: 0;
+ max-height: 620px;
+ position: relative;
+ overflow: hidden;
+ padding: 0 15px;
+}
+
+.action-search-software_infos #filter-catalog-software #filter-categories-catalog h4 {
+ margin: 20px 0 10px 5px;
+ background: transparent;
+ color: black;
+}
+
+.action-search-software_infos #filter-catalog-software input[type="checkbox"]{
+ vertical-align: middle;
+ margin: 0 3px 2px 8px;
+}
+
+.action-search-software_infos #group-categories ul {
+ font-family: Arial;
+ font-size: 14px;
+ line-height: 31px;
+ columns: 2;
+ -webkit-columns: 2;
+ -moz-columns: 2;
+}
+
+.action-search-software_infos #group-categories li span {
+ font-family: Arial;
+ font-size: 14px;
+}
+
+.action-search-software_infos #filter-catalog-software .project-software{
+ margin: 20px 0 30px;
+ border-top: 1px dotted;
+ border-bottom: 1px dotted;
+ font-weight: bold;
+ font-size: 15px;
+ font-family: Arial;
+ padding: 10px;
+}
+
+.action-search-software_infos #filter-catalog-software .project-software label {
+ font-weight: normal;
+}
+
+.action-search-software_infos #filter-catalog-software .project-software span {
+ padding: 2px 6px;
+ background: #FFF;
+ color: #3E67B1;
+ border-radius: 50%;
+ font-size: 16px;
+}
+
+.action-search-software_infos button#cleanup-filter-catalg {
+ cursor: pointer;
+ background-color: #3E67B1;
+ font-size: 14px;
+ font-family: Arial;
+ color: #ffffff;
+ border: 1px solid #2B65CD;
+ border-radius: 4px;
+ margin: 5px 0 0 5px;
+ padding: 5px 10px;
+}
+
+.action-search-software_infos button#close-filter-catalog {
+ cursor:pointer;
+ float: right;
+ border: none;
+ background: none;
+ font-size: 12px;
+ margin-top: 5px;
+ color: #000;
+ text-transform: uppercase;
+ padding: 5px;
+}
+
+.action-search-software_infos button#close-filter-catalog:after {
+ content: "";
+ margin-left: 5px;
+ padding: 2.5px 10.5px;
+ background: url("../images/top-arrow.png") no-repeat center;
+ background-color: #3E67B1;
+ border-radius: 4px;
+}
+
+/*** end of search box ***/
+
+/*** Catalog Options ***/
+
+.action-search-software_infos #catalog-display-options {
+ font-size: 14px;
+ font-family: Arial;
+}
+
+.action-search-software_infos #catalog-display-options #catalog-display-options-count{
+ padding: 45px 0 4px 0;
+ float: left;
+ width: 50%;
+}
+
+.action-search-software_infos #catalog-display-options #catalog-display-options-show-and-sort{
+ padding: 38px 0 5px 0;
+ font-weight: bold;
+ float: left;
+ width: 50%;
+}
+.action-search-software_infos #catalog-display-options #catalog-display-options-sort,
+.action-search-software_infos #catalog-display-options #catalog-display-options-show{
+ position: relative;
+ float: left;
+ width: 50%;
+ text-align: right;
+}
+
+/*** Search Results ***/
+.action-search-software_infos #search-results {
+ border-top: 1px solid #d7d7d7;
+}
+
+.action-search-software_infos #search-results.only-one-result-box .search-software-item {
+ padding: 29px 0 31px 0;
+ background: #ffffff;
+ border-bottom: 1px solid #d7d7d7;
+}
+
+.action-search-software_infos #search-results #search-results-empty{
+ padding: 15px 0px;
+ color: #172738;
+ font-size: 16px;
+ text-align: left;
+}
+
+
+.action-search-software_infos #search-results .search-results-innerbox {
+ background: #ffffff;
+ border: none;
+}
+
+/* Column left */
+
+.action-search-software_infos #search-results .search-software-item-column-left{
+ width: 130px;
+ height: 130px;
+ float: left;
+ border-right: 1px dotted #ccc;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .vcard {
+ display: table;
+ margin: 0;
+ border: none;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .vcard:hover {
+ border: none;
+ background: none;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .vcard a:hover{
+ color: #3E67B1;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .vcard a.profile_link{
+ float:left;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .vcard:hover .menu-submenu-trigger {
+ display:none;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .profile-image{
+ width: 130px;
+ height: 130px;
+ margin-left: 130px;
+ margin-top: 35px;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .vcard img {
+ max-width: 90px;
+ max-height: 130px;
+ height: auto;
+ margin-left:170px;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .org {
+ display: none;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .extra_info {
+ width: 130px;
+ padding-right: 20px;
+ top: 0px;
+ position: absolute;
+ color: #2C4B6B;
+ font-size: 13px;
+ font-family: Arial;
+ text-align: left;
+ opacity: inherit;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-left .extra_info::before{
+ content: url("../images/ic-calendar.png");
+ margin-right: 10px;
+ margin-top: 6px;
+ float: left;
+}
+
+/* Column Right */
+
+.action-search-software_infos #search-results .search-software-item-column-right {
+ width: 70%;
+ float: left;
+ margin-left: 130px;
+ padding: 0 0 0 8px;
+ font-size: 15px;
+ font-family: Arial;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block h4{
+ margin-top: 0;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block h4 a {
+ color: #172738;
+ font-size: 19px;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block:last-child {
+ margin-top: 30px;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-right span{
+ width: 100%;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-right span b{
+ font-weight: normal;
+ font-size: 13px;
+}
+
+.action-search-software_infos #search-results .search-software-item-column-right .search-software-content-block:last-child span{
+ width: auto;
+ float: left;
+}
+
+.action-search-software_infos #search-results .search-software-content-block #categories-list li{
+ width: auto !important; /* force overwritting from base */
+ margin-left: 7px !important; /* force overwritting from base */
+ float: left;
+ color: #3E67B1;
+ font-size: 13px;
+ line-height: 18px;
+ text-decoration: underline;
+}
+
+.action-search-software_infos #search-results .search-software-content-block #categories-list li a{
+ color: #3E67B1;
+}
diff --git a/src/noosfero-spb-theme/css/software-pages.css b/src/noosfero-spb-theme/css/software-pages.css
new file mode 100644
index 0000000..dd914a7
--- /dev/null
+++ b/src/noosfero-spb-theme/css/software-pages.css
@@ -0,0 +1,623 @@
+/*** Software Header ***/
+/*block title software button control painel*/
+.action-content_viewer-view_page #content .software-information-block .admin-link a{
+ padding: 5px 10px;
+ background: #3E67B1;
+ border-radius: 4px;
+ text-transform: none;
+ font-size: 12px;
+ margin-top:15px;
+ color:#fff;
+}
+.action-content_viewer-view_page #content .software-information-block .profile-big-image img{
+ margin-bottom:20px;
+}
+/**************************/
+
+#content .software-information-block {
+ margin: 0px 0px 60px 0px;
+}
+
+#content #software-information-block-table {
+ margin: 0px 15px;
+ width: auto;
+}
+
+#content #software-information-block-table td {
+ display: table-cell;
+}
+
+#content #software-information-block-table #col-software-name {
+ vertical-align: top;
+ font-style: normal;
+}
+
+#content #software-information-block-table #col-software-name h1 {
+ font: 700 34px/37px arial, open_sansbold, helvetica, sans-serif;
+ text-align: left;
+}
+
+#content #software-information-block-table #col-software-name b {
+ font: normal normal normal 15px/21px arial, 'open_sansregular', helvetica, sans-serif;
+}
+
+/*** end of Software Header ***/
+
+/*** Software Homepage ***/
+
+/* Software Download Block*/
+
+#content .download-block {
+ margin: 0px 15px;
+ border: 1px solid #D3D6DE;
+ border-radius: 10px;
+}
+
+#content .download-block .block-title {
+ padding: 11px 10px 7px 20px;
+ background-color: #D3D6DE;
+ border-top-left-radius: 8px;
+ border-top-right-radius: 8px;
+ font-family: "open_sansbold", Arial, Helvetica, sans-serif;
+ margin: 0;
+ color: #172738;
+ font-size: 18px;
+}
+
+#content .download-block .download-list li {
+ padding: 30px 10px 25px 10px;
+ border-top: 1px solid #D3D6DE;
+ clear: both;
+}
+
+#content .download-block .download-list li:nth-child(even) {
+ background: #ECEDF1;
+}
+
+#content .download-block .download-button {
+ width: 80px;
+ float: left;
+ clear: both;
+}
+
+#content .download-block .download-button .download-image {
+ padding: 50px 0px 8px 0px;
+ border: 1px solid #2c66ce;
+ border-radius: 8px;
+ height: 18px;
+ background: #2C66CE url("../images/download-icon.png") center no-repeat;
+ display: block;
+}
+
+#content .download-block .download-button #download-size {
+ border: 1px solid #1a397d;
+ border-radius: 0px 0px 8px 8px;
+ background-color: #1a397d;
+ color: #ffffff;
+ font-size: 12px;
+ text-align: center;
+ display: none;
+}
+
+#content .download-block .download-info {
+ margin: 5px 0px 0px 100px;
+ position: relative;
+ font-size: 16px;
+}
+
+#content .download-block .download-info .download-name {
+ display: block;
+ font-weight: bold;
+}
+
+#content .download-block .download-info .download-platform {
+ display: block;
+ font-size: 14px;
+}
+
+#content .download-block .download-info .min-requirements {
+ font-size: 12px;
+}
+
+#content .download-block .download-info .min-requirements a {
+ line-height: 40px;
+ color: #3E67B1;
+ text-decoration: underline;
+}
+
+#content .download-block #licensed-software {
+ padding:14px;
+ border-top: 1px solid #D3D6DE;
+ border-radius: 0px 0px 8px 8px;
+ background-color: #D3D6DE;
+ font-size: 12px;
+ text-align: right;
+}
+
+#content .download-block #licensed-software a {
+ color: #3e67b1;
+ text-decoration: underline;
+}
+
+/* About Software - Article on homepage */
+
+.profile-homepage #article #article-toolbar #article-header h1 {
+ margin: 0px 0px 10px 0px;
+ padding: 0px;
+ color: #172738;
+ font: normal normal bold 22px/1.3em arial, 'open_sansbold', helvetica, sans-serif;
+}
+
+.profile-homepage #article #article-toolbar #article-header h1.title {
+ border: none;
+}
+
+.profile-homepage #article #article-header .publishing-info {
+ display: none;
+}
+
+.profile-homepage #article .article-body h1 {
+ border-top: 1px solid #ECEDF1;
+ border-bottom: none;
+ padding-top: 25px;
+}
+
+.profile-homepage #article .article-body p {
+ margin: 0px 0px 20px 0px;
+ line-height: 21px;
+ text-align: left;
+ font-size: 15px;
+}
+
+.profile-homepage #article .article-body hr {
+ display: none;
+}
+
+.profile-homepage #article .article-body ul {
+ background-repeat: no-repeat;
+ list-style-position: inside;
+ list-style-type: disc;
+}
+
+.profile-homepage #article .article-body ul li {
+ line-height: 21px;
+ text-align: left;
+ font-size: 15px;
+ list-style: inherit;
+}
+
+/*** end of Software Homepage ***/
+
+/*** Categories and Tags block ***/
+
+#content .box-1 .categories-and-tags-block{
+ border-top: 4px solid #2C4B6B;
+}
+
+#content .box-1 .categories-and-tags-block .block-title{
+ display: inline-flex;
+ margin: 13px 10px 10px 0;
+ padding: 3px 0px;
+ background: none;
+ color: #5E82C6;
+ font-family: Arial;
+ font-size: 12px;
+ font-weight: 300;
+}
+
+#content .box-1 .categories-and-tags-block .category_cloud{
+ display: inline-flex;
+ margin: 13px 0 10px 0;
+ max-width: 87%;
+}
+
+#content .box-1 .categories-and-tags-block .category_cloud a{
+ display: inline-block;
+ padding: 3px 10px;
+ margin: 5px;
+ color: #3E67B1;
+ background-color: #ECEDF1;
+ border: 1px solid #D3D6DE;
+ border-radius: 3px;
+ font-size: 12px;
+}
+
+#content .box-1 .categories-and-tags-block .category_cloud a:hover{
+ border-color: #3a70d1;
+ background: #3a70d1;
+ color: white;
+}
+
+#content .box-1 .categories-and-tags-block .category_cloud a:link{
+ text-decoration: none;
+}
+
+/*** end of categories and tags block ***/
+
+/*** Right bar ***/
+
+/*** WARNING - WHITOUT BOX-4 ***/
+
+/* Link-list block */
+.template-default #content .box-3 .block-title{
+ border-top: 4px solid #4562b1;
+ line-height: 15px;
+ background: #eee;
+ color: #4562b1;
+}
+
+.template-default #content .box-3 .link-list-block li{
+ margin: 0px;
+ padding: 0px;
+ border-bottom: 1px solid #ddd;
+ border-top: none;
+}
+
+.template-default #content .box-3 .link-list-block li a{
+ border-right: none;
+ border-top: 0px solid #64946E;
+ border-radius: 0px 0px 0px 0px;
+ padding: 6px 5px 8px 18px;
+ width: auto;
+ line-height: 17px;
+ background-color: #fff;
+ background-position: 0px 50%;
+ color: #2C66CE;
+ font-weight: normal;
+ font-size: 14px;
+}
+
+.template-default #content .box-3 .link-list-block h3.empty + ul{
+ border-top: 1px solid #ddd;
+}
+
+.template-default #content .box-3 .link-list-block li a.link-this-page,
+.template-default #content .box-3 .link-list-block li a.link-this-page:hover{
+ border-right: none;
+}
+
+.template-default #content .box-3 .link-list-block li a:hover{
+ background-color: #FFFFFF;
+ color: #000;
+}
+
+.template-default #content .box-3 .link-list-block li a.link-this-page{
+ margin-left: 0px;
+ width: auto;
+ background-color: #ffffff;
+ font-weight: bold;
+}
+
+/* Repository and Wiki blocks */
+
+.template-default #content .box-3 .wiki-block,
+.template-default #content .box-3 .repository-block{
+ padding: 0 0 0 10px;
+}
+
+.template-default .box-3 #bt_wiki,
+.template-default .box-3 #bt_repositorio {
+ border-radius: 4px;
+ padding: 12px 10px;
+ background: #EAEBEE;
+ color: #2C66CE;
+ font: normal normal bold 12px 'open_sansbold', arial, helvetica, sans-serif;
+ text-transform: uppercase;
+ display: block;
+ position: relative;
+}
+
+.template-default .box-3 #bt_wiki:hover,
+.template-default .box-3 #bt_repositorio:hover {
+ color:#172738;
+}
+
+.template-default .box-3 #bt_wiki:after,
+.template-default .box-3 #bt_repositorio:after{
+ margin-top: -2px;
+ padding: 4px 0px 4px 2px;
+ border-radius: 4px;
+ width: 18px;
+ right: 10px;
+ line-height: 20px;
+ position: absolute;
+ background: #2C66CE;
+ color: #FFF;
+ font-size: 16px;
+ text-align: center;
+ content: url('../images/right-arrow.png');
+}
+
+.template-default .box-3 #content #bt_wiki:hover,
+.template-default .box-3 #content #bt_repositorio:hover{
+ color: #FFF;
+ background: #2C66CE;
+ text-decoration: none;
+}
+/*** END - WARNING - WHITOUT BOX-4 ***/
+
+/*** end of right bar ***/
+
+/************ DUPLICATE ************/
+
+/*
+ This part of the code is duplicated because, if there is
+ a change of layout from template-default to lefttopright
+ the CSS fit without many complication.
+ */
+
+/*** Right bar ***/
+
+/*** WARNING - WITH BOX-4 ***/
+
+/* Link-list block */
+.template-lefttopright #content .box-2 .block-title {
+ border-top: 4px solid #4562b1;
+ line-height: 15px;
+ background: #eee;
+ color: #4562b1;
+}
+
+.template-lefttopright #content .box-2 .link-list-block li {
+ margin: 0px;
+ padding: 0px;
+ border-bottom: 1px solid #ddd;
+ border-top: none;
+}
+
+.template-lefttopright #content .box-2 .link-list-block li a {
+ border-right: none;
+ border-top: 0px solid #64946E;
+ border-radius: 0px 0px 0px 0px;
+ padding: 6px 5px 8px 18px;
+ width: auto;
+ line-height: 17px;
+ background-color: #fff;
+ background-position: 0px 50%;
+ color: #2C66CE;
+ font-weight: normal;
+ font-size: 14px;
+}
+
+.template-lefttopright #content .box-2 .link-list-block h3.empty + ul {
+ border-top: 1px solid #ddd;
+}
+
+.template-lefttopright #content .box-2 .link-list-block li a.link-this-page,
+.template-lefttopright #content .box-2 .link-list-block li a.link-this-page:hover {
+ border-right: none;
+}
+
+.template-lefttopright #content .box-2 .link-list-block li a:hover {
+ background-color: #FFFFFF;
+ color: #000;
+}
+
+.template-lefttopright #content .box-2 .link-list-block li a.link-this-page {
+ margin-left: 0px;
+ width: auto;
+ background-color: #ffffff;
+ font-weight: bold;
+}
+
+/* Repository block */
+
+.template-lefttopright #content .box-2 .wiki-block,
+.template-lefttopright #content .box-2 .repository-block{
+ padding: 0 0 0 10px;
+}
+
+.template-lefttopright .box-2 #bt_wiki,
+.template-lefttopright .box-2 #bt_repositorio {
+ border-radius: 4px;
+ padding: 12px 10px;
+ background: #EAEBEE;
+ color: #2C66CE;
+ font: normal normal bold 12px 'open_sansbold', arial, helvetica, sans-serif;
+ text-transform: uppercase;
+ display: block;
+ position: relative;
+}
+
+.template-lefttopright .box-2 #bt_wiki:hover,
+.template-lefttopright .box-2 #bt_repositorio:hover {
+ color:#172738;
+}
+
+.template-lefttopright .box-2 #bt_wiki::after,
+.template-lefttopright .box-2 #bt_repositorio::after{
+ margin-top: -2px;
+ padding: 4px 0px 4px 2px;
+ border-radius: 4px;
+ width: 18px;
+ right: 10px;
+ line-height: 20px;
+ position: absolute;
+ background: #2C66CE;
+ color: #FFF;
+ font-size: 16px;
+ text-align: center;
+ content: url('../images/right-arrow.png');
+}
+
+.template-lefttopright .box-2 #content #bt_wiki:hover,
+.template-lefttopright .box-2 #content #bt_repositorio:hover{
+ color: #FFF;
+ background: #2C66CE;
+ text-decoration: none;
+}
+
+/*** WARNING - WITH BOX-4 ***/
+
+/* Metrics Block */
+.software-metrics-block {
+ font-family: Arial;
+ padding: 3px 0px 0px 10px;
+}
+
+.software-metrics-block .metrics-list {
+ border-bottom: 1px dotted #D3D6DE;
+}
+
+.software-metrics-block .metrics-list li {
+ display: table;
+ margin-bottom: 10px;
+}
+
+.software-metrics-block .metrics-list li span,
+.software-metrics-block .metrics-list li a {
+ display: table-cell;
+ vertical-align: top;
+}
+
+#content .software-metrics-block .metrics-list li a:link {
+ color: #2c66ce;
+}
+
+.software-metrics-block span.arrow-globe-icon {
+ background: url('../images/arrow-globe-icon.png') no-repeat center center;
+ width: 25px;
+ height: 18px;
+}
+
+.software-metrics-block span.downloads-icon {
+ background: url('../images/downloads-icon.png') no-repeat center center;
+ width: 25px;
+ height: 18px;
+}
+
+.software-metrics-block span.face-icon {
+ background: url('../images/beneficiados-icon.png') no-repeat center center;
+ width: 25px;
+ height: 20px;
+}
+
+.software-metrics-block span.pig-safe-icon {
+ background: url('../images/economizados-icon.png') no-repeat center center;
+ width: 25px;
+ height: 20px;
+}
+
+.software-metrics-block .metrics-list li a {
+ letter-spacing: -0.1px;
+ line-height: 20px;
+ padding-left: 5px;
+}
+
+.software-metrics-block .admin-estimation {
+ font-size: 11px;
+ line-height: 15px;
+ margin-top: 7px;
+ margin-left: 4px;
+}
+
+.software-metrics-block .metrics-list .saved-money {
+ font-size: 14px;
+}
+
+/*** end of right bar ***/
+
+/************ END DUPLICATE ************/
+
+
+/*** Software internal pages ***/
+
+/* FAQ page */
+
+#content .main-block .article-body ul.etapas-publicacao {
+ margin-bottom: 20px;
+}
+
+#content .main-block .article-body ul.etapas-publicacao li {
+ margin-bottom: 10px;
+ list-style: none;
+ list-style-position: inside;
+}
+
+#content .main-block .article-body ul.etapas-publicacao li strong {
+ margin-right: 6px;
+ border-radius: 50%;
+ padding: 1px;
+ background: #333;
+ height: 24px;
+ width: 24px;
+ color: #fff;
+ text-align: center;
+ float: left;
+}
+
+#content .main-block .article-body .etapas-publicacao-2 {
+ font-weight: bold;
+}
+
+/* Tutorial page */
+
+#content .main-block .article-body p strong {
+ font-size: 16px;
+}
+
+#content .main-block .article-body .etapas-publicacao .etapas-publicacao-2 {
+ display: table-cell;
+}
+
+#content .main-block .article-body .etapas-publicacao p {
+ margin: 0px 0 0 31px;
+}
+
+/* Manual page */
+
+#content .main-block #article .folder-content .item-info {
+ border-top: 1px solid #ccc;
+ padding: 30px 20px 32px 0px;
+}
+
+#content .main-block #article .folder-content .folder-item:last-child .item-info {
+ border-bottom: 1px solid #ccc;
+}
+
+#content .main-block #article .folder-content .item-icon {
+ margin: 2px 0px auto auto;
+ padding: 45px 40px 4px 10px;
+ border: 1px solid #2C66CE;
+ border-radius: 4px;
+ background: #2C66CE url("../images/download-mini_icon.png") center center no-repeat;
+ display: block;
+ float: left;
+}
+
+#content .main-block #article .folder-content .item-icon a {
+ display: none;
+}
+
+
+#content .main-block #article .folder-content .item-description {
+ margin-left: 65px;
+ padding-left: 0px;
+}
+
+#content .main-block #article .folder-content .item-description a {
+ color: #172938;
+ font-size: 18px;
+ font-family: Arial;
+ font-weight: 700;
+ word-wrap: break-word;
+}
+
+/* It's a Specific rule to the Google Chrome. */
+@supports (-webkit-appearance:none) {
+ #content .main-block #article .folder-content .item-description a {
+ color: #172938;
+ font-size: 18px;
+ font-family: Arial;
+ font-weight: 700;
+ white-space: pre;
+ word-wrap: break-word;
+ }
+}
+
+#content .main-block #article .folder-content .item-date {
+ margin-left: 65px;
+ padding-left: 0px;
+}
+
+/*** end fo software internal pages ***/
diff --git a/src/noosfero-spb-theme/css/tooltip.css b/src/noosfero-spb-theme/css/tooltip.css
new file mode 100644
index 0000000..cbd7534
--- /dev/null
+++ b/src/noosfero-spb-theme/css/tooltip.css
@@ -0,0 +1,62 @@
+.tooltip {
+ position: absolute;
+ width: -moz-fit-content;
+ width: -webkit-fit-content;
+ width: fit-content;
+ max-width:280px;
+ padding: 15px 10px 15px 20px;
+ background: #172638;
+ color: white;
+ font-family: Arial, sans-serif;
+ font-size: 13px;
+ border-radius: 5px;
+ border: 0px !important;
+ z-index: 1070;
+ margin: -10px 0;
+}
+
+.tooltip-bottom:after {
+ content: " ";
+ height: 0;
+ width: 0;
+ margin-left: -6px;
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ border: solid transparent;
+ border-bottom-color: #172638;
+ border-width: 6px;
+}
+
+.tooltip:after {
+ content: " ";
+ height: 0;
+ width: 0;
+ margin-left: -6px;
+ position: absolute;
+ top: 100%;
+ left: 50%;
+ border: solid transparent;
+ border-top-color: #172638;
+ border-width: 6px;
+}
+
+/*Fix temporary - class="tooltip" send e-mail administrator community*/
+
+.action-contact-new .tooltip{
+ position:initial;
+ background:none;
+ color:#172537;
+ font-family: Arial, sans-serif;
+ max-width: 520px;
+ padding: 15px 20px;
+ margin: 20px 0 30px 0;
+ border: 1px dotted #ccc !important;
+ border-left: 5px solid #FF0366 !important;
+ line-height: 20px;
+}
+
+.action-contact-new .tooltip:after{
+ content:none;
+}
+/*************************************/
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/css/use-report.css b/src/noosfero-spb-theme/css/use-report.css
new file mode 100644
index 0000000..9186e84
--- /dev/null
+++ b/src/noosfero-spb-theme/css/use-report.css
@@ -0,0 +1,534 @@
+/*** Profile homepage ***/
+
+/* Ratings Header */
+.profile-homepage #content .organization-average-rating-container {
+ margin-top: 21px;
+ overflow: auto;
+}
+
+.profile-homepage #content .organization-average-rating-container .star-rate-text {
+ font-size: 14px;
+ letter-spacing: 0.2px;
+ margin-right: 5px;
+ padding: 4px 0px 0px 3px;
+}
+
+.profile-homepage #content .organization-average-rating-container .star-container {
+ margin-top: 2px;
+}
+
+.profile-homepage #content .organization-average-rating-container .rate-this-organization {
+ font-size: 14px;
+ text-decoration: underline;
+ margin: 4px 0px 0px 6px;
+ padding: 0px 0px 0px 15px;
+}
+
+.profile-homepage #content .organization-average-rating-container .rate-this-organization a {
+ color: #2c66ce;
+}
+
+.profile-homepage #content .organization-average-rating-container .star-container .medium-star-negative,
+.profile-homepage #content .organization-average-rating-container .star-container .medium-star-positive {
+ margin-right: 3px;
+}
+
+.profile-homepage #content .communities-ratings-block .button-bar a.button.with-text {
+ height: 32px;
+ padding: 0px 5px;
+ border: 1px solid #3E67B1;
+ font-family: 'open_sansbold';
+ font-size: 14px;
+ line-height: 32px;
+ text-transform: uppercase;
+}
+
+/* Use report list */
+
+.profile-homepage #content .communities-ratings-block .ratings-title .block-title {
+ background: none;
+ border-bottom: 1px solid #D3D6DE;
+ border-top: none;
+ color: #172738;
+ font-size: 20px;
+ font-weight: 700;
+ letter-spacing: 1.8px;
+ margin-bottom: 0px;
+ padding: 0px 0px 12px 4px;
+}
+
+.profile-homepage #content .communities-ratings-block .ratings-list .make-report-block {
+ margin-top: 0px;
+ padding-top: 32px;
+ background-repeat: no-repeat;
+ border-bottom: 1px solid #D3D6DE;
+ border-top: none;
+ font-family: Arial;
+}
+
+#content #software-information-block-table {
+ width: 100%;
+}
+
+#content #software-information-block-table h1 {
+ font-size: 34px;
+}
+
+#content #software-information-block-table #col-profile-big-image {
+ padding-right: 0px;
+}
+
+#content #software-information-block-table #col-software-name {
+ padding-left: 0px;
+}
+
+
+#content .organization-average-rating-container {
+ margin-top: 21px;
+ overflow: auto;
+}
+
+#content .organization-average-rating-container .star-rate-text {
+ font-size: 14px;
+ letter-spacing: 0.2px;
+ margin-right: 5px;
+ padding: 4px 0px 0px 3px;
+}
+
+#content .organization-average-rating-container .star-container {
+ margin-top: 2px;
+}
+
+#content .organization-average-rating-container .rate-this-organization {
+ font-size: 14px;
+ text-decoration: underline;
+ margin: 4px 0px 0px 6px;
+ padding: 0px 0px 0px 15px;
+}
+
+#content .organization-average-rating-container .star-container .medium-star-negative,
+#content .organization-average-rating-container .star-container .medium-star-positive {
+ margin-right: 3px;
+}
+
+/*** Internal Page ***/
+
+#content .main-content .star-page-title,
+#content .main-content .star-rate-data {
+ max-width: 560px;
+}
+
+#content .main-content .star-page-title .title {
+ font-size: 34px;
+}
+
+#content .main-content .star-rate-data {
+ border-bottom: 1px solid #D3D6DE;
+ border-top: 1px solid #D3D6DE;
+ color: #172738;
+ margin-top: 16px;
+ padding: 29px 0px 21px 0px;
+ overflow: visible;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-rate-text,
+#content .main-content .star-rate-data .star-rate-form .star-container {
+ display: inline;
+ float: left;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-container {
+ width: inherit;
+ height: 30px;
+ padding-left: 6px;
+}
+
+#content .main-content .star-rate-data .star-rate-form {
+ padding: 0 37px;
+ letter-spacing: 0.1px;
+ width: 100%;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-rate-text {
+ font-size: 14px;
+ padding-top: 4px;
+}
+
+#content .main-content .star-rate-data .star-profile-information {
+ padding-left: 15px;
+ width: 79px;
+}
+
+#content .main-content .star-rate-data .star-profile-information .star-profile-image {
+ padding-top: 1px;
+}
+
+#content .main-content .star-rate-data .star-profile-information .star-profile-image img {
+ border-radius: 4px;
+ height: 60px;
+ width: 60px;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-container .star-positive {
+ background-image: url('../images/star-positive-big.png');
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-container .star-negative {
+ background-image: url('../images/star-negative-big.png');
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-container .star-positive,
+#content .main-content .star-rate-data .star-rate-form .star-container .star-negative {
+ display: table-cell;
+ margin-right: 0px;
+ height: 30px;
+ width: 28px;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-comment-container {
+ padding-top: 23px;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-comment-container .formlabel {
+ letter-spacing: -0.2px;
+ margin-bottom: 2px;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-comment-container #comments_body {
+ border-radius: 4px;
+ height: 91px;
+ background: none #FFFFFF;
+ border: 1px solid #DDDDDD;
+ color: #585858;
+ font-size: 16px;
+ width: 100%;
+ word-wrap: break-word;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar input {
+ background-color: #3E67B1;
+ font-weight: 700;
+ text-transform: uppercase;
+ color: #FFF;
+ padding: 5px;
+ height: 31px;
+ line-height: 20px;
+ font-family: Arial;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar a {
+ display: none;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-comment-container .button-bar {
+ padding-bottom: 50px;
+}
+
+#content .main-content .star-rate-data .star-rate-form .star-notice {
+ display: none;
+ float: left;
+ margin-top: 10px;
+ margin-left: 10px;
+}
+
+#content .star-rate-form .star-comment-container .comments-software-extra-fields {
+ height: 0;
+ overflow: hidden;
+}
+
+#content .star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments {
+ margin-bottom: 19px;
+ margin-top: 16px;
+ height: 50px;
+}
+
+#content .star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments label {
+ font-size: 12px;
+}
+
+#content .star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments input {
+ display: block;
+ height: 19px;
+ width: 335px;
+ padding: 6px;
+ margin-top: 3px;
+ color: rgb(88, 88, 88);
+ border: 1px solid rgb(204, 204, 204);
+ border-image-source: initial;
+ border-image-slice: initial;
+ border-image-width: initial;
+ border-image-outset: initial;
+ border-image-repeat: initial;
+ border-radius: 4px;
+ font-size: 15px;
+ font-family: Arial, helvetica;
+}
+
+#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-people-benefited,
+#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-saved-values {
+ font-size: 12px;
+ float: left;
+ padding-right: 10px;
+ height: 50px;
+}
+
+#content .star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-saved-values {
+ padding-right: 0px;
+ height: 70px;
+}
+
+#content .star-rate-form .star-comment-container form .formfieldline {
+ margin-bottom: 17px;
+}
+
+#content .star-rate-form .star-comment-container .comments-display-fields {
+ border-bottom: 1px dotted #D3D6DE;
+ overflow: auto;
+}
+
+#content .star-rate-form .star-comment-container .comments-display-fields:hover span,
+#content .star-rate-form .star-comment-container .comments-display-fields:hover span:after {
+ opacity: 0.6;
+}
+
+#content .star-rate-form .star-comment-container .comments-display-fields span#comments-additional-information {
+ color: #172738;
+ display: block;
+ float: left;
+ font-size: 14px;
+ font-weight: 700;
+ padding-bottom: 4px;
+}
+
+.action-organization_ratings_plugin_profile-new_rating #content .star-rate-form .star-comment-container .comments-display-fields .comments-arrow-up::after {
+ content: url('../images/top-arrow-black.png');
+ float: right;
+ padding-top: 7px;
+ padding-right: 6px;
+}
+
+.action-organization_ratings_plugin_profile-new_rating #content .star-rate-form .star-comment-container .comments-display-fields .comments-arrow-down::after {
+ content: url('../images/bottom-arrow-black.png');
+ float: right;
+ padding-top: 7px;
+ padding-right: 6px;
+}
+
+#content .star-rate-form .star-comment-container .comments-software-extra-fields #organization_rating_people_benefited,
+#content .star-rate-form .star-comment-container .comments-software-extra-fields #organization_rating_saved_value {
+ display: block;
+ height: 19px;
+ width: 155px;
+ margin-top: 4px;
+ padding: 6px;
+ border: 1px solid rgb(204, 204, 204);
+ border-image-source: initial;
+ border-image-slice: initial;
+ border-image-width: initial;
+ border-image-outset: initial;
+ border-image-repeat: initial;
+ border-radius: 4px;
+ font-size: 15px;
+ font-family: Arial, helvetica;
+ color: rgb(88, 88, 88);
+}
+
+#content .star-rate-form .star-comment-container .star-tooltip {
+ cursor: default;
+ content: '?';
+ border-radius: 90%;
+ font-size: 12px;
+ font-weight: 700;
+ background: #3867b7;
+ color: #fff;
+ margin-left: 4px;
+ padding: 0px 6px;
+}
+
+.ratings-list {
+ color: #172738;
+ font-family: Arial, Helvetica, "open_sansregular", sans-serif;
+}
+
+.ratings-list .user-rating-block {
+ border-bottom: 1px solid #D3D6DE;
+ border-top: none;
+ padding-bottom: 40px;
+ padding-top: 32px;
+ margin-top: 0px;
+}
+
+.ratings-list .star-profile-information {
+ padding: 1px 30px 0px 14px;
+ width: 99px;
+}
+
+.ratings-list .user-rating-block .star-profile-information .star-profile-name {
+ line-height: 16px;
+ width: 70px;
+}
+
+.ratings-list .star-profile-information .star-profile-image img {
+ border-radius: 4px;
+ height: 60px;
+}
+
+.ratings-list .user-rating-block .user-testimony-container {
+ width: 100%;
+}
+
+.ratings-list .user-rating-block .user-testimony-container .star-container div {
+ display: inline;
+}
+
+.ratings-list .user-rating-block .user-testimony-container .user-testimony {
+ font-size: 16px;
+ line-height: 20px;
+ margin-top: 31px;
+ min-height: 60px;
+}
+
+.star-rate-data .star-rate-form .star-comment-container .formfield textarea {
+ width: 100%;
+}
+
+.ratings-list .user-rating-block .user-testimony-container .testimony-rate-date {
+ display: block;
+ float: left;
+ padding-right: 0px;
+ width: 100px;
+}
+
+.ratings-list .star-container {
+ display: block;
+ float: right;
+ width: auto;
+}
+
+.ratings-list .star-container .small-star-positive,
+.ratings-list .star-container .small-star-negative {
+ margin-right: 3px;
+}
+
+.ratings-list .user-rating-block .user-testimony-container .testimony-rate-date {
+ display: block;
+ float: left;
+ margin-top: 2px;
+}
+
+.ratings-list .user-rating-block .user-testimony-container .additional-informations {
+ margin-top: 10px;
+}
+
+#content .ratings-title .block-title {
+ background: none;
+ border-bottom: 1px solid #D3D6DE;
+ border-top: none;
+ color: #172738;
+ font-size: 20px;
+ font-weight: 700;
+ letter-spacing: 1.8px;
+ margin-bottom: 0px;
+ padding: 0px 0px 12px 4px;
+}
+
+.ratings-list .make-report-block {
+ background-repeat: no-repeat;
+ border-bottom: 1px solid #D3D6DE;
+ border-top: none;
+ margin-top: 0px;
+ padding-top: 32px;
+}
+
+.make-report-block .star-profile-information {
+ padding-right: 13px;
+ padding-left: 0px;
+}
+
+.make-report-block .star-profile-information .star-profile-name {
+ margin-top: 8px;
+ width: 70px;
+}
+
+.ratings-list .make-report-block .make-report-container {
+ padding-top: 2px;
+}
+
+.ratings-list .make-report-block .make-report-container .make-report-message {
+ font-family: Arial;
+ font-weight: 300;
+ font-size: 18px;
+}
+
+.ratings-list .make-report-block .make-report-container .button-bar {
+ padding-top: 6px;
+}
+
+.ratings-list .make-report-block .make-report-container .alert {
+ margin-top: 37px;
+ padding-left: 1px;
+}
+
+.ratings-list .make-report-block .make-report-container .button-bar a,
+.star-rate-data .rating-cooldown .button-bar a,
+.star-rate-data .rating-vote-once .button-bar a {
+ background-color: #3E67B1;
+ background-image: none;
+ color: #fff;
+ font-weight: 700;
+ font-size: 14px;
+ font-style: normal;
+ height: 31px;
+ padding: 0px 7px 0px 7px;
+ text-transform: uppercase;
+}
+
+.star-rate-data .rating-cooldown,
+.star-rate-data .rating-vote-once {
+ font-family: Arial;
+ font-size: 18px;
+ font-style: italic;
+ word-break: break-word;
+}
+
+.star-rate-data .rating-cooldown .button-bar a.disabled-button,
+.star-rate-data .rating-vote-once .button-bar a.disabled-button {
+ cursor: not-allowed;
+ opacity: 0.4;
+}
+
+.ratings-list .see-more {
+ border-top: none;
+}
+
+.ratings-list a.icon-arrow-right-p {
+ background: none;
+ color: #172738;
+ font-family: 'open_sansregular';
+ font-size: 11px;
+ float: none;
+ margin-top: 0px;
+ padding-right: 0px;
+ padding-top: 22px;
+ padding-bottom: 20px;
+ text-align: right;
+ text-transform: uppercase;
+}
+
+.ratings-list a.icon-arrow-right-p::after {
+ background-color: #3E67B1;
+ border-radius: 4px;
+ content: url('../images/right-arrow.png');
+ font-size: 15px;
+ line-height: 20px;
+ margin-left: 9px;
+ padding-left: 8px;
+ padding-right: 5px;
+ text-align: center;
+}
+
+/*** Tooltip ***/
+
+.comments-software-extra-fields .tooltip-inner {
+ display: block;
+}
diff --git a/src/noosfero-spb-theme/favicon.ico b/src/noosfero-spb-theme/favicon.ico
new file mode 100644
index 0000000..f8c4036
Binary files /dev/null and b/src/noosfero-spb-theme/favicon.ico differ
diff --git a/src/noosfero-spb-theme/font-awesome.min.css b/src/noosfero-spb-theme/font-awesome.min.css
new file mode 100644
index 0000000..ca0591c
--- /dev/null
+++ b/src/noosfero-spb-theme/font-awesome.min.css
@@ -0,0 +1,4 @@
+/*!
+ * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.3.0');src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/fonts/FontAwesome.otf b/src/noosfero-spb-theme/fonts/FontAwesome.otf
new file mode 100644
index 0000000..f7936cc
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/FontAwesome.otf differ
diff --git a/src/noosfero-spb-theme/fonts/fontawesome-webfont.eot b/src/noosfero-spb-theme/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..33b2bb8
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/fontawesome-webfont.eot differ
diff --git a/src/noosfero-spb-theme/fonts/fontawesome-webfont.svg b/src/noosfero-spb-theme/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..1ee89d4
--- /dev/null
+++ b/src/noosfero-spb-theme/fonts/fontawesome-webfont.svg
@@ -0,0 +1,565 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/fonts/fontawesome-webfont.ttf b/src/noosfero-spb-theme/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..ed9372f
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/fontawesome-webfont.ttf differ
diff --git a/src/noosfero-spb-theme/fonts/fontawesome-webfont.woff b/src/noosfero-spb-theme/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..8b280b9
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/fontawesome-webfont.woff differ
diff --git a/src/noosfero-spb-theme/fonts/fontawesome-webfont.woff2 b/src/noosfero-spb-theme/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..3311d58
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/fontawesome-webfont.woff2 differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-300-webfont.eot b/src/noosfero-spb-theme/fonts/opensans-300-webfont.eot
new file mode 100755
index 0000000..abfdfa3
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-300-webfont.eot differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-300-webfont.svg b/src/noosfero-spb-theme/fonts/opensans-300-webfont.svg
new file mode 100755
index 0000000..1fb17a5
--- /dev/null
+++ b/src/noosfero-spb-theme/fonts/opensans-300-webfont.svg
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/fonts/opensans-300-webfont.ttf b/src/noosfero-spb-theme/fonts/opensans-300-webfont.ttf
new file mode 100755
index 0000000..c6d08b2
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-300-webfont.ttf differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-300-webfont.woff b/src/noosfero-spb-theme/fonts/opensans-300-webfont.woff
new file mode 100755
index 0000000..b1020fd
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-300-webfont.woff differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-400-webfont.eot b/src/noosfero-spb-theme/fonts/opensans-400-webfont.eot
new file mode 100755
index 0000000..58b80a7
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-400-webfont.eot differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-400-webfont.svg b/src/noosfero-spb-theme/fonts/opensans-400-webfont.svg
new file mode 100755
index 0000000..b951665
--- /dev/null
+++ b/src/noosfero-spb-theme/fonts/opensans-400-webfont.svg
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/fonts/opensans-400-webfont.ttf b/src/noosfero-spb-theme/fonts/opensans-400-webfont.ttf
new file mode 100755
index 0000000..78a9bf2
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-400-webfont.ttf differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-400-webfont.woff b/src/noosfero-spb-theme/fonts/opensans-400-webfont.woff
new file mode 100755
index 0000000..4a54090
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-400-webfont.woff differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-600-webfont.eot b/src/noosfero-spb-theme/fonts/opensans-600-webfont.eot
new file mode 100755
index 0000000..e99d282
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-600-webfont.eot differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-600-webfont.svg b/src/noosfero-spb-theme/fonts/opensans-600-webfont.svg
new file mode 100755
index 0000000..6306b56
--- /dev/null
+++ b/src/noosfero-spb-theme/fonts/opensans-600-webfont.svg
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/fonts/opensans-600-webfont.ttf b/src/noosfero-spb-theme/fonts/opensans-600-webfont.ttf
new file mode 100755
index 0000000..174bed4
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-600-webfont.ttf differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-600-webfont.woff b/src/noosfero-spb-theme/fonts/opensans-600-webfont.woff
new file mode 100755
index 0000000..f24aeb4
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-600-webfont.woff differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-700-webfont.eot b/src/noosfero-spb-theme/fonts/opensans-700-webfont.eot
new file mode 100755
index 0000000..dfbcb12
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-700-webfont.eot differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-700-webfont.svg b/src/noosfero-spb-theme/fonts/opensans-700-webfont.svg
new file mode 100755
index 0000000..24c6ba3
--- /dev/null
+++ b/src/noosfero-spb-theme/fonts/opensans-700-webfont.svg
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/fonts/opensans-700-webfont.ttf b/src/noosfero-spb-theme/fonts/opensans-700-webfont.ttf
new file mode 100755
index 0000000..5427c4d
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-700-webfont.ttf differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-700-webfont.woff b/src/noosfero-spb-theme/fonts/opensans-700-webfont.woff
new file mode 100755
index 0000000..1a731f0
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-700-webfont.woff differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-800-webfont.eot b/src/noosfero-spb-theme/fonts/opensans-800-webfont.eot
new file mode 100755
index 0000000..f687e2a
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-800-webfont.eot differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-800-webfont.svg b/src/noosfero-spb-theme/fonts/opensans-800-webfont.svg
new file mode 100755
index 0000000..daf84f0
--- /dev/null
+++ b/src/noosfero-spb-theme/fonts/opensans-800-webfont.svg
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/fonts/opensans-800-webfont.ttf b/src/noosfero-spb-theme/fonts/opensans-800-webfont.ttf
new file mode 100755
index 0000000..079934c
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-800-webfont.ttf differ
diff --git a/src/noosfero-spb-theme/fonts/opensans-800-webfont.woff b/src/noosfero-spb-theme/fonts/opensans-800-webfont.woff
new file mode 100755
index 0000000..4a69fa6
Binary files /dev/null and b/src/noosfero-spb-theme/fonts/opensans-800-webfont.woff differ
diff --git a/src/noosfero-spb-theme/footer.html.erb b/src/noosfero-spb-theme/footer.html.erb
new file mode 100644
index 0000000..8a7c49a
--- /dev/null
+++ b/src/noosfero-spb-theme/footer.html.erb
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/noosfero-spb-theme/header.html.erb b/src/noosfero-spb-theme/header.html.erb
new file mode 100644
index 0000000..5c5a3cf
--- /dev/null
+++ b/src/noosfero-spb-theme/header.html.erb
@@ -0,0 +1,97 @@
+
+
+
+
+
diff --git a/src/noosfero-spb-theme/html-reference-resource/blog.html b/src/noosfero-spb-theme/html-reference-resource/blog.html
new file mode 100644
index 0000000..b9d2d24
--- /dev/null
+++ b/src/noosfero-spb-theme/html-reference-resource/blog.html
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/noosfero-spb-theme/html-reference-resource/event.html b/src/noosfero-spb-theme/html-reference-resource/event.html
new file mode 100644
index 0000000..3f633b4
--- /dev/null
+++ b/src/noosfero-spb-theme/html-reference-resource/event.html
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/html-reference-resource/list-item-initial-page.html b/src/noosfero-spb-theme/html-reference-resource/list-item-initial-page.html
new file mode 100644
index 0000000..e2b8c0c
--- /dev/null
+++ b/src/noosfero-spb-theme/html-reference-resource/list-item-initial-page.html
@@ -0,0 +1,21 @@
+
+ Dezembro 11, 2014
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/images/503-logo.jpg b/src/noosfero-spb-theme/images/503-logo.jpg
new file mode 100644
index 0000000..9abf016
Binary files /dev/null and b/src/noosfero-spb-theme/images/503-logo.jpg differ
diff --git a/src/noosfero-spb-theme/images/503-small.jpg b/src/noosfero-spb-theme/images/503-small.jpg
new file mode 100644
index 0000000..c2c0efa
Binary files /dev/null and b/src/noosfero-spb-theme/images/503-small.jpg differ
diff --git a/src/noosfero-spb-theme/images/503.jpg b/src/noosfero-spb-theme/images/503.jpg
new file mode 100644
index 0000000..5048c71
Binary files /dev/null and b/src/noosfero-spb-theme/images/503.jpg differ
diff --git a/src/noosfero-spb-theme/images/acesso-a-informacao.png b/src/noosfero-spb-theme/images/acesso-a-informacao.png
new file mode 100644
index 0000000..fffec98
Binary files /dev/null and b/src/noosfero-spb-theme/images/acesso-a-informacao.png differ
diff --git a/src/noosfero-spb-theme/images/acesso-a-infornacao.png b/src/noosfero-spb-theme/images/acesso-a-infornacao.png
new file mode 100644
index 0000000..fffec98
Binary files /dev/null and b/src/noosfero-spb-theme/images/acesso-a-infornacao.png differ
diff --git a/src/noosfero-spb-theme/images/alerta-cadastro16.jpg b/src/noosfero-spb-theme/images/alerta-cadastro16.jpg
new file mode 100644
index 0000000..2ba5a10
Binary files /dev/null and b/src/noosfero-spb-theme/images/alerta-cadastro16.jpg differ
diff --git a/src/noosfero-spb-theme/images/arrow-globe-icon.png b/src/noosfero-spb-theme/images/arrow-globe-icon.png
new file mode 100644
index 0000000..4446447
Binary files /dev/null and b/src/noosfero-spb-theme/images/arrow-globe-icon.png differ
diff --git a/src/noosfero-spb-theme/images/arrow_down.jpg b/src/noosfero-spb-theme/images/arrow_down.jpg
new file mode 100644
index 0000000..ae93957
Binary files /dev/null and b/src/noosfero-spb-theme/images/arrow_down.jpg differ
diff --git a/src/noosfero-spb-theme/images/arrow_right.jpg b/src/noosfero-spb-theme/images/arrow_right.jpg
new file mode 100644
index 0000000..c91c8d0
Binary files /dev/null and b/src/noosfero-spb-theme/images/arrow_right.jpg differ
diff --git a/src/noosfero-spb-theme/images/background_footer.png b/src/noosfero-spb-theme/images/background_footer.png
new file mode 100644
index 0000000..2082c3e
Binary files /dev/null and b/src/noosfero-spb-theme/images/background_footer.png differ
diff --git a/src/noosfero-spb-theme/images/balao-amarelo.png b/src/noosfero-spb-theme/images/balao-amarelo.png
new file mode 100644
index 0000000..a3adc03
Binary files /dev/null and b/src/noosfero-spb-theme/images/balao-amarelo.png differ
diff --git a/src/noosfero-spb-theme/images/balloon-icon.png b/src/noosfero-spb-theme/images/balloon-icon.png
new file mode 100644
index 0000000..6974af1
Binary files /dev/null and b/src/noosfero-spb-theme/images/balloon-icon.png differ
diff --git a/src/noosfero-spb-theme/images/barra-menu-user-bg.png b/src/noosfero-spb-theme/images/barra-menu-user-bg.png
new file mode 100644
index 0000000..08e7707
Binary files /dev/null and b/src/noosfero-spb-theme/images/barra-menu-user-bg.png differ
diff --git a/src/noosfero-spb-theme/images/barra-psocial-bg-contarste.png b/src/noosfero-spb-theme/images/barra-psocial-bg-contarste.png
new file mode 100644
index 0000000..d533843
Binary files /dev/null and b/src/noosfero-spb-theme/images/barra-psocial-bg-contarste.png differ
diff --git a/src/noosfero-spb-theme/images/barra-psocial-bg.png b/src/noosfero-spb-theme/images/barra-psocial-bg.png
new file mode 100644
index 0000000..c379867
Binary files /dev/null and b/src/noosfero-spb-theme/images/barra-psocial-bg.png differ
diff --git a/src/noosfero-spb-theme/images/barra-psocial.png b/src/noosfero-spb-theme/images/barra-psocial.png
new file mode 100644
index 0000000..f2946eb
Binary files /dev/null and b/src/noosfero-spb-theme/images/barra-psocial.png differ
diff --git a/src/noosfero-spb-theme/images/beneficiados-icon.png b/src/noosfero-spb-theme/images/beneficiados-icon.png
new file mode 100644
index 0000000..180191d
Binary files /dev/null and b/src/noosfero-spb-theme/images/beneficiados-icon.png differ
diff --git a/src/noosfero-spb-theme/images/bg-bloco-de-trilhas.png b/src/noosfero-spb-theme/images/bg-bloco-de-trilhas.png
new file mode 100644
index 0000000..df72b20
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-bloco-de-trilhas.png differ
diff --git a/src/noosfero-spb-theme/images/bg-btn-ver-mais-1px.png b/src/noosfero-spb-theme/images/bg-btn-ver-mais-1px.png
new file mode 100644
index 0000000..1ffab6a
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-btn-ver-mais-1px.png differ
diff --git a/src/noosfero-spb-theme/images/bg-fundo-verde-tags.png b/src/noosfero-spb-theme/images/bg-fundo-verde-tags.png
new file mode 100644
index 0000000..82ca489
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-fundo-verde-tags.png differ
diff --git a/src/noosfero-spb-theme/images/bg-linhas-cinza.png b/src/noosfero-spb-theme/images/bg-linhas-cinza.png
new file mode 100644
index 0000000..3dcb773
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-linhas-cinza.png differ
diff --git a/src/noosfero-spb-theme/images/bg-menu-mobile-panel.png b/src/noosfero-spb-theme/images/bg-menu-mobile-panel.png
new file mode 100644
index 0000000..0a084bf
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-menu-mobile-panel.png differ
diff --git a/src/noosfero-spb-theme/images/bg-menu-mobile.png b/src/noosfero-spb-theme/images/bg-menu-mobile.png
new file mode 100644
index 0000000..3b7954f
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-menu-mobile.png differ
diff --git a/src/noosfero-spb-theme/images/bg-paginacao-preto.png b/src/noosfero-spb-theme/images/bg-paginacao-preto.png
new file mode 100644
index 0000000..5d8f15a
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-paginacao-preto.png differ
diff --git a/src/noosfero-spb-theme/images/bg-paginacao.png b/src/noosfero-spb-theme/images/bg-paginacao.png
new file mode 100644
index 0000000..1362729
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-paginacao.png differ
diff --git a/src/noosfero-spb-theme/images/bg-palacio-do-planalto.jpg b/src/noosfero-spb-theme/images/bg-palacio-do-planalto.jpg
new file mode 100644
index 0000000..7034432
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-palacio-do-planalto.jpg differ
diff --git a/src/noosfero-spb-theme/images/bg-titulo-interno.png b/src/noosfero-spb-theme/images/bg-titulo-interno.png
new file mode 100644
index 0000000..b186658
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-titulo-interno.png differ
diff --git a/src/noosfero-spb-theme/images/bg-titulo-login.png b/src/noosfero-spb-theme/images/bg-titulo-login.png
new file mode 100644
index 0000000..3672fa0
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg-titulo-login.png differ
diff --git a/src/noosfero-spb-theme/images/bg_h1.gif b/src/noosfero-spb-theme/images/bg_h1.gif
new file mode 100644
index 0000000..2f5414f
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg_h1.gif differ
diff --git a/src/noosfero-spb-theme/images/bg_h3_busca.gif b/src/noosfero-spb-theme/images/bg_h3_busca.gif
new file mode 100644
index 0000000..73faf7f
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg_h3_busca.gif differ
diff --git a/src/noosfero-spb-theme/images/bg_tags.png b/src/noosfero-spb-theme/images/bg_tags.png
new file mode 100644
index 0000000..2e30379
Binary files /dev/null and b/src/noosfero-spb-theme/images/bg_tags.png differ
diff --git a/src/noosfero-spb-theme/images/border-hor.png b/src/noosfero-spb-theme/images/border-hor.png
new file mode 100644
index 0000000..8c1f185
Binary files /dev/null and b/src/noosfero-spb-theme/images/border-hor.png differ
diff --git a/src/noosfero-spb-theme/images/border-ver.png b/src/noosfero-spb-theme/images/border-ver.png
new file mode 100644
index 0000000..037ebdb
Binary files /dev/null and b/src/noosfero-spb-theme/images/border-ver.png differ
diff --git a/src/noosfero-spb-theme/images/botao-enviar-pairwise.png b/src/noosfero-spb-theme/images/botao-enviar-pairwise.png
new file mode 100644
index 0000000..9f5025b
Binary files /dev/null and b/src/noosfero-spb-theme/images/botao-enviar-pairwise.png differ
diff --git a/src/noosfero-spb-theme/images/bottom-arrow-black.png b/src/noosfero-spb-theme/images/bottom-arrow-black.png
new file mode 100644
index 0000000..61b3730
Binary files /dev/null and b/src/noosfero-spb-theme/images/bottom-arrow-black.png differ
diff --git a/src/noosfero-spb-theme/images/bottom-arrow.png b/src/noosfero-spb-theme/images/bottom-arrow.png
new file mode 100644
index 0000000..eb49326
Binary files /dev/null and b/src/noosfero-spb-theme/images/bottom-arrow.png differ
diff --git a/src/noosfero-spb-theme/images/brasil.png b/src/noosfero-spb-theme/images/brasil.png
new file mode 100644
index 0000000..0ac6ed2
Binary files /dev/null and b/src/noosfero-spb-theme/images/brasil.png differ
diff --git a/src/noosfero-spb-theme/images/btn_busca.png b/src/noosfero-spb-theme/images/btn_busca.png
new file mode 100644
index 0000000..5e3dd03
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_busca.png differ
diff --git a/src/noosfero-spb-theme/images/btn_cancelar_login.png b/src/noosfero-spb-theme/images/btn_cancelar_login.png
new file mode 100644
index 0000000..b081e5e
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_cancelar_login.png differ
diff --git a/src/noosfero-spb-theme/images/btn_commit.png b/src/noosfero-spb-theme/images/btn_commit.png
new file mode 100644
index 0000000..5e3dd03
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_commit.png differ
diff --git a/src/noosfero-spb-theme/images/btn_continue.png b/src/noosfero-spb-theme/images/btn_continue.png
new file mode 100644
index 0000000..74445f1
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_continue.png differ
diff --git a/src/noosfero-spb-theme/images/btn_duvida_pairwise.png b/src/noosfero-spb-theme/images/btn_duvida_pairwise.png
new file mode 100644
index 0000000..49f06ac
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_duvida_pairwise.png differ
diff --git a/src/noosfero-spb-theme/images/btn_duvida_pairwise_hover.png b/src/noosfero-spb-theme/images/btn_duvida_pairwise_hover.png
new file mode 100644
index 0000000..666f105
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_duvida_pairwise_hover.png differ
diff --git a/src/noosfero-spb-theme/images/btn_entrar_login.png b/src/noosfero-spb-theme/images/btn_entrar_login.png
new file mode 100644
index 0000000..7900127
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_entrar_login.png differ
diff --git a/src/noosfero-spb-theme/images/btn_entrar_login_hover.png b/src/noosfero-spb-theme/images/btn_entrar_login_hover.png
new file mode 100644
index 0000000..e3bb0d7
Binary files /dev/null and b/src/noosfero-spb-theme/images/btn_entrar_login_hover.png differ
diff --git a/src/noosfero-spb-theme/images/bullet.png b/src/noosfero-spb-theme/images/bullet.png
new file mode 100644
index 0000000..e5fb945
Binary files /dev/null and b/src/noosfero-spb-theme/images/bullet.png differ
diff --git a/src/noosfero-spb-theme/images/button-read-more-vazio-contraste.png b/src/noosfero-spb-theme/images/button-read-more-vazio-contraste.png
new file mode 100755
index 0000000..0be02f4
Binary files /dev/null and b/src/noosfero-spb-theme/images/button-read-more-vazio-contraste.png differ
diff --git a/src/noosfero-spb-theme/images/button-read-more-vazio.png b/src/noosfero-spb-theme/images/button-read-more-vazio.png
new file mode 100644
index 0000000..fe2488e
Binary files /dev/null and b/src/noosfero-spb-theme/images/button-read-more-vazio.png differ
diff --git a/src/noosfero-spb-theme/images/button-read-more2.png b/src/noosfero-spb-theme/images/button-read-more2.png
new file mode 100644
index 0000000..6d0c0f0
Binary files /dev/null and b/src/noosfero-spb-theme/images/button-read-more2.png differ
diff --git a/src/noosfero-spb-theme/images/cabecalho_pairwise.png b/src/noosfero-spb-theme/images/cabecalho_pairwise.png
new file mode 100755
index 0000000..6756212
Binary files /dev/null and b/src/noosfero-spb-theme/images/cabecalho_pairwise.png differ
diff --git a/src/noosfero-spb-theme/images/cadeado.png b/src/noosfero-spb-theme/images/cadeado.png
new file mode 100644
index 0000000..f2e1c87
Binary files /dev/null and b/src/noosfero-spb-theme/images/cadeado.png differ
diff --git a/src/noosfero-spb-theme/images/calendar-icon.png b/src/noosfero-spb-theme/images/calendar-icon.png
new file mode 100644
index 0000000..6ea0a2b
Binary files /dev/null and b/src/noosfero-spb-theme/images/calendar-icon.png differ
diff --git a/src/noosfero-spb-theme/images/carta-comentarios.png b/src/noosfero-spb-theme/images/carta-comentarios.png
new file mode 100644
index 0000000..c72c4f2
Binary files /dev/null and b/src/noosfero-spb-theme/images/carta-comentarios.png differ
diff --git a/src/noosfero-spb-theme/images/chat-icon.png b/src/noosfero-spb-theme/images/chat-icon.png
new file mode 100644
index 0000000..a79c397
Binary files /dev/null and b/src/noosfero-spb-theme/images/chat-icon.png differ
diff --git a/src/noosfero-spb-theme/images/coala.jpeg b/src/noosfero-spb-theme/images/coala.jpeg
new file mode 100644
index 0000000..6e8eaac
Binary files /dev/null and b/src/noosfero-spb-theme/images/coala.jpeg differ
diff --git a/src/noosfero-spb-theme/images/comentarios.png b/src/noosfero-spb-theme/images/comentarios.png
new file mode 100644
index 0000000..f1855a3
Binary files /dev/null and b/src/noosfero-spb-theme/images/comentarios.png differ
diff --git a/src/noosfero-spb-theme/images/comunidade-evento-imagem-evento.jpg b/src/noosfero-spb-theme/images/comunidade-evento-imagem-evento.jpg
new file mode 100644
index 0000000..db178f2
Binary files /dev/null and b/src/noosfero-spb-theme/images/comunidade-evento-imagem-evento.jpg differ
diff --git a/src/noosfero-spb-theme/images/comunidade-evento-imagem-evento.png b/src/noosfero-spb-theme/images/comunidade-evento-imagem-evento.png
new file mode 100644
index 0000000..838d29d
Binary files /dev/null and b/src/noosfero-spb-theme/images/comunidade-evento-imagem-evento.png differ
diff --git a/src/noosfero-spb-theme/images/docs-board-icon.png b/src/noosfero-spb-theme/images/docs-board-icon.png
new file mode 100644
index 0000000..8f66ef5
Binary files /dev/null and b/src/noosfero-spb-theme/images/docs-board-icon.png differ
diff --git a/src/noosfero-spb-theme/images/download-icon.png b/src/noosfero-spb-theme/images/download-icon.png
new file mode 100644
index 0000000..e47f2a3
Binary files /dev/null and b/src/noosfero-spb-theme/images/download-icon.png differ
diff --git a/src/noosfero-spb-theme/images/download-mini_icon.png b/src/noosfero-spb-theme/images/download-mini_icon.png
new file mode 100644
index 0000000..eb1f5e0
Binary files /dev/null and b/src/noosfero-spb-theme/images/download-mini_icon.png differ
diff --git a/src/noosfero-spb-theme/images/downloads-icon.png b/src/noosfero-spb-theme/images/downloads-icon.png
new file mode 100644
index 0000000..1973db5
Binary files /dev/null and b/src/noosfero-spb-theme/images/downloads-icon.png differ
diff --git a/src/noosfero-spb-theme/images/economizados-icon.png b/src/noosfero-spb-theme/images/economizados-icon.png
new file mode 100644
index 0000000..75fa752
Binary files /dev/null and b/src/noosfero-spb-theme/images/economizados-icon.png differ
diff --git a/src/noosfero-spb-theme/images/em-destaque.png b/src/noosfero-spb-theme/images/em-destaque.png
new file mode 100644
index 0000000..d729d35
Binary files /dev/null and b/src/noosfero-spb-theme/images/em-destaque.png differ
diff --git a/src/noosfero-spb-theme/images/enterprise-big.png b/src/noosfero-spb-theme/images/enterprise-big.png
new file mode 100644
index 0000000..12746e8
Binary files /dev/null and b/src/noosfero-spb-theme/images/enterprise-big.png differ
diff --git a/src/noosfero-spb-theme/images/enterprise-icon.png b/src/noosfero-spb-theme/images/enterprise-icon.png
new file mode 100644
index 0000000..8f31987
Binary files /dev/null and b/src/noosfero-spb-theme/images/enterprise-icon.png differ
diff --git a/src/noosfero-spb-theme/images/enterprise-minor.png b/src/noosfero-spb-theme/images/enterprise-minor.png
new file mode 100644
index 0000000..4460368
Binary files /dev/null and b/src/noosfero-spb-theme/images/enterprise-minor.png differ
diff --git a/src/noosfero-spb-theme/images/enterprise-portrait.png b/src/noosfero-spb-theme/images/enterprise-portrait.png
new file mode 100644
index 0000000..637515b
Binary files /dev/null and b/src/noosfero-spb-theme/images/enterprise-portrait.png differ
diff --git a/src/noosfero-spb-theme/images/enterprise-thumb.png b/src/noosfero-spb-theme/images/enterprise-thumb.png
new file mode 100644
index 0000000..68f65e1
Binary files /dev/null and b/src/noosfero-spb-theme/images/enterprise-thumb.png differ
diff --git a/src/noosfero-spb-theme/images/facebook-widget.png b/src/noosfero-spb-theme/images/facebook-widget.png
new file mode 100644
index 0000000..60fb8f8
Binary files /dev/null and b/src/noosfero-spb-theme/images/facebook-widget.png differ
diff --git a/src/noosfero-spb-theme/images/facebook.png b/src/noosfero-spb-theme/images/facebook.png
new file mode 100644
index 0000000..5895cc6
Binary files /dev/null and b/src/noosfero-spb-theme/images/facebook.png differ
diff --git a/src/noosfero-spb-theme/images/favicon.ico b/src/noosfero-spb-theme/images/favicon.ico
new file mode 100644
index 0000000..f8c4036
Binary files /dev/null and b/src/noosfero-spb-theme/images/favicon.ico differ
diff --git a/src/noosfero-spb-theme/images/flag-en.gif b/src/noosfero-spb-theme/images/flag-en.gif
new file mode 100644
index 0000000..350aa05
Binary files /dev/null and b/src/noosfero-spb-theme/images/flag-en.gif differ
diff --git a/src/noosfero-spb-theme/images/flag-en.png b/src/noosfero-spb-theme/images/flag-en.png
new file mode 100644
index 0000000..0f4fb95
Binary files /dev/null and b/src/noosfero-spb-theme/images/flag-en.png differ
diff --git a/src/noosfero-spb-theme/images/flag-es.gif b/src/noosfero-spb-theme/images/flag-es.gif
new file mode 100644
index 0000000..b98c599
Binary files /dev/null and b/src/noosfero-spb-theme/images/flag-es.gif differ
diff --git a/src/noosfero-spb-theme/images/flag-pt_br.png b/src/noosfero-spb-theme/images/flag-pt_br.png
new file mode 100644
index 0000000..f0e0221
Binary files /dev/null and b/src/noosfero-spb-theme/images/flag-pt_br.png differ
diff --git a/src/noosfero-spb-theme/images/flickr.png b/src/noosfero-spb-theme/images/flickr.png
new file mode 100644
index 0000000..bc3aee7
Binary files /dev/null and b/src/noosfero-spb-theme/images/flickr.png differ
diff --git a/src/noosfero-spb-theme/images/fundo-de-tela-amarelo.png b/src/noosfero-spb-theme/images/fundo-de-tela-amarelo.png
new file mode 100644
index 0000000..44ffb0d
Binary files /dev/null and b/src/noosfero-spb-theme/images/fundo-de-tela-amarelo.png differ
diff --git a/src/noosfero-spb-theme/images/globe-icon.png b/src/noosfero-spb-theme/images/globe-icon.png
new file mode 100644
index 0000000..a15bbab
Binary files /dev/null and b/src/noosfero-spb-theme/images/globe-icon.png differ
diff --git a/src/noosfero-spb-theme/images/google_follow.png b/src/noosfero-spb-theme/images/google_follow.png
new file mode 100644
index 0000000..385410f
Binary files /dev/null and b/src/noosfero-spb-theme/images/google_follow.png differ
diff --git a/src/noosfero-spb-theme/images/google_follow.svg b/src/noosfero-spb-theme/images/google_follow.svg
new file mode 100644
index 0000000..bc1ee39
--- /dev/null
+++ b/src/noosfero-spb-theme/images/google_follow.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/noosfero-spb-theme/images/hdot2.gif b/src/noosfero-spb-theme/images/hdot2.gif
new file mode 100644
index 0000000..b99f4ba
Binary files /dev/null and b/src/noosfero-spb-theme/images/hdot2.gif differ
diff --git a/src/noosfero-spb-theme/images/header.gif b/src/noosfero-spb-theme/images/header.gif
new file mode 100644
index 0000000..9e231ba
Binary files /dev/null and b/src/noosfero-spb-theme/images/header.gif differ
diff --git a/src/noosfero-spb-theme/images/hub-arrow-right.png b/src/noosfero-spb-theme/images/hub-arrow-right.png
new file mode 100644
index 0000000..6c65f4c
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-arrow-right.png differ
diff --git a/src/noosfero-spb-theme/images/hub-not-pinned-icon.png b/src/noosfero-spb-theme/images/hub-not-pinned-icon.png
new file mode 100644
index 0000000..9b510c8
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-not-pinned-icon.png differ
diff --git a/src/noosfero-spb-theme/images/hub-not-promote-icon.png b/src/noosfero-spb-theme/images/hub-not-promote-icon.png
new file mode 100644
index 0000000..4f57c4e
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-not-promote-icon.png differ
diff --git a/src/noosfero-spb-theme/images/hub-pinned-icon.png b/src/noosfero-spb-theme/images/hub-pinned-icon.png
new file mode 100644
index 0000000..9b510c8
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-pinned-icon.png differ
diff --git a/src/noosfero-spb-theme/images/hub-promote-icon.png b/src/noosfero-spb-theme/images/hub-promote-icon.png
new file mode 100644
index 0000000..4f57c4e
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-promote-icon.png differ
diff --git a/src/noosfero-spb-theme/images/hub-remove-icon.png b/src/noosfero-spb-theme/images/hub-remove-icon.png
new file mode 100644
index 0000000..1246778
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-remove-icon.png differ
diff --git a/src/noosfero-spb-theme/images/hub-samarelo-a.png b/src/noosfero-spb-theme/images/hub-samarelo-a.png
new file mode 100644
index 0000000..453d2a4
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-samarelo-a.png differ
diff --git a/src/noosfero-spb-theme/images/hub-samarelo-b.png b/src/noosfero-spb-theme/images/hub-samarelo-b.png
new file mode 100644
index 0000000..936bf46
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-samarelo-b.png differ
diff --git a/src/noosfero-spb-theme/images/hub-samarelo.gif b/src/noosfero-spb-theme/images/hub-samarelo.gif
new file mode 100644
index 0000000..2da3de2
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-samarelo.gif differ
diff --git a/src/noosfero-spb-theme/images/hub-sverde-a.png b/src/noosfero-spb-theme/images/hub-sverde-a.png
new file mode 100644
index 0000000..5bc1c40
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-sverde-a.png differ
diff --git a/src/noosfero-spb-theme/images/hub-sverde-b.png b/src/noosfero-spb-theme/images/hub-sverde-b.png
new file mode 100644
index 0000000..ee21942
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-sverde-b.png differ
diff --git a/src/noosfero-spb-theme/images/hub-svermelho-a.png b/src/noosfero-spb-theme/images/hub-svermelho-a.png
new file mode 100644
index 0000000..36d4dfc
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-svermelho-a.png differ
diff --git a/src/noosfero-spb-theme/images/hub-svermelho-b.png b/src/noosfero-spb-theme/images/hub-svermelho-b.png
new file mode 100644
index 0000000..6df643a
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-svermelho-b.png differ
diff --git a/src/noosfero-spb-theme/images/hub-time-bg.gif b/src/noosfero-spb-theme/images/hub-time-bg.gif
new file mode 100644
index 0000000..43032c7
Binary files /dev/null and b/src/noosfero-spb-theme/images/hub-time-bg.gif differ
diff --git a/src/noosfero-spb-theme/images/ic-calendar.png b/src/noosfero-spb-theme/images/ic-calendar.png
new file mode 100644
index 0000000..0f32291
Binary files /dev/null and b/src/noosfero-spb-theme/images/ic-calendar.png differ
diff --git a/src/noosfero-spb-theme/images/icone-branco-facebook.png b/src/noosfero-spb-theme/images/icone-branco-facebook.png
new file mode 100644
index 0000000..5f4046c
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-branco-facebook.png differ
diff --git a/src/noosfero-spb-theme/images/icone-branco-flickr.png b/src/noosfero-spb-theme/images/icone-branco-flickr.png
new file mode 100644
index 0000000..bf9b974
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-branco-flickr.png differ
diff --git a/src/noosfero-spb-theme/images/icone-branco-twitter.png b/src/noosfero-spb-theme/images/icone-branco-twitter.png
new file mode 100644
index 0000000..b91d361
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-branco-twitter.png differ
diff --git a/src/noosfero-spb-theme/images/icone-branco-youtube.png b/src/noosfero-spb-theme/images/icone-branco-youtube.png
new file mode 100644
index 0000000..345983e
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-branco-youtube.png differ
diff --git a/src/noosfero-spb-theme/images/icone-facebook.gif b/src/noosfero-spb-theme/images/icone-facebook.gif
new file mode 100644
index 0000000..5cdbe68
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-facebook.gif differ
diff --git a/src/noosfero-spb-theme/images/icone-facebook.png b/src/noosfero-spb-theme/images/icone-facebook.png
new file mode 100644
index 0000000..9e12698
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-facebook.png differ
diff --git a/src/noosfero-spb-theme/images/icone-flickr.png b/src/noosfero-spb-theme/images/icone-flickr.png
new file mode 100644
index 0000000..fa805c1
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-flickr.png differ
diff --git a/src/noosfero-spb-theme/images/icone-related-items.png b/src/noosfero-spb-theme/images/icone-related-items.png
new file mode 100644
index 0000000..59bac09
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-related-items.png differ
diff --git a/src/noosfero-spb-theme/images/icone-twitter.png b/src/noosfero-spb-theme/images/icone-twitter.png
new file mode 100644
index 0000000..2538edc
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-twitter.png differ
diff --git a/src/noosfero-spb-theme/images/icone-verde-facebook.png b/src/noosfero-spb-theme/images/icone-verde-facebook.png
new file mode 100644
index 0000000..18b907a
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-verde-facebook.png differ
diff --git a/src/noosfero-spb-theme/images/icone-verde-flickr.png b/src/noosfero-spb-theme/images/icone-verde-flickr.png
new file mode 100644
index 0000000..0d997cf
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-verde-flickr.png differ
diff --git a/src/noosfero-spb-theme/images/icone-verde-twitter.png b/src/noosfero-spb-theme/images/icone-verde-twitter.png
new file mode 100644
index 0000000..d0b3b5a
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-verde-twitter.png differ
diff --git a/src/noosfero-spb-theme/images/icone-verde-youtube.png b/src/noosfero-spb-theme/images/icone-verde-youtube.png
new file mode 100644
index 0000000..4ed1206
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-verde-youtube.png differ
diff --git a/src/noosfero-spb-theme/images/icone-youtube.png b/src/noosfero-spb-theme/images/icone-youtube.png
new file mode 100644
index 0000000..003c75b
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone-youtube.png differ
diff --git a/src/noosfero-spb-theme/images/icone_pin.png b/src/noosfero-spb-theme/images/icone_pin.png
new file mode 100644
index 0000000..3dcfed8
Binary files /dev/null and b/src/noosfero-spb-theme/images/icone_pin.png differ
diff --git a/src/noosfero-spb-theme/images/icones_home_branco.jpg b/src/noosfero-spb-theme/images/icones_home_branco.jpg
new file mode 100644
index 0000000..15b9026
Binary files /dev/null and b/src/noosfero-spb-theme/images/icones_home_branco.jpg differ
diff --git a/src/noosfero-spb-theme/images/img_login_popUp.png b/src/noosfero-spb-theme/images/img_login_popUp.png
new file mode 100644
index 0000000..ce82e38
Binary files /dev/null and b/src/noosfero-spb-theme/images/img_login_popUp.png differ
diff --git a/src/noosfero-spb-theme/images/instagram-widget.png b/src/noosfero-spb-theme/images/instagram-widget.png
new file mode 100644
index 0000000..b51f7de
Binary files /dev/null and b/src/noosfero-spb-theme/images/instagram-widget.png differ
diff --git a/src/noosfero-spb-theme/images/left-arrow-black.png b/src/noosfero-spb-theme/images/left-arrow-black.png
new file mode 100644
index 0000000..2697177
Binary files /dev/null and b/src/noosfero-spb-theme/images/left-arrow-black.png differ
diff --git a/src/noosfero-spb-theme/images/left-arrow.png b/src/noosfero-spb-theme/images/left-arrow.png
new file mode 100644
index 0000000..89b144c
Binary files /dev/null and b/src/noosfero-spb-theme/images/left-arrow.png differ
diff --git a/src/noosfero-spb-theme/images/login16.png b/src/noosfero-spb-theme/images/login16.png
new file mode 100644
index 0000000..1ffa50c
Binary files /dev/null and b/src/noosfero-spb-theme/images/login16.png differ
diff --git a/src/noosfero-spb-theme/images/logo-PS-barra-pb.png b/src/noosfero-spb-theme/images/logo-PS-barra-pb.png
new file mode 100644
index 0000000..f9f9d42
Binary files /dev/null and b/src/noosfero-spb-theme/images/logo-PS-barra-pb.png differ
diff --git a/src/noosfero-spb-theme/images/logo-PS-barra.png b/src/noosfero-spb-theme/images/logo-PS-barra.png
new file mode 100644
index 0000000..77c694e
Binary files /dev/null and b/src/noosfero-spb-theme/images/logo-PS-barra.png differ
diff --git a/src/noosfero-spb-theme/images/logo-participa.png b/src/noosfero-spb-theme/images/logo-participa.png
new file mode 100644
index 0000000..436bceb
Binary files /dev/null and b/src/noosfero-spb-theme/images/logo-participa.png differ
diff --git a/src/noosfero-spb-theme/images/logo_facebook_50x50.png b/src/noosfero-spb-theme/images/logo_facebook_50x50.png
new file mode 100644
index 0000000..7e5fdb3
Binary files /dev/null and b/src/noosfero-spb-theme/images/logo_facebook_50x50.png differ
diff --git a/src/noosfero-spb-theme/images/logo_twitter_50x50.png b/src/noosfero-spb-theme/images/logo_twitter_50x50.png
new file mode 100644
index 0000000..4ffd721
Binary files /dev/null and b/src/noosfero-spb-theme/images/logo_twitter_50x50.png differ
diff --git a/src/noosfero-spb-theme/images/logo_twitter_bird_blue_50x50.png b/src/noosfero-spb-theme/images/logo_twitter_bird_blue_50x50.png
new file mode 100644
index 0000000..a43574b
Binary files /dev/null and b/src/noosfero-spb-theme/images/logo_twitter_bird_blue_50x50.png differ
diff --git a/src/noosfero-spb-theme/images/logo_twitter_bird_white_50x50.png b/src/noosfero-spb-theme/images/logo_twitter_bird_white_50x50.png
new file mode 100644
index 0000000..90fdebd
Binary files /dev/null and b/src/noosfero-spb-theme/images/logo_twitter_bird_white_50x50.png differ
diff --git a/src/noosfero-spb-theme/images/logotipo_spb.svg b/src/noosfero-spb-theme/images/logotipo_spb.svg
new file mode 100644
index 0000000..b3088ec
--- /dev/null
+++ b/src/noosfero-spb-theme/images/logotipo_spb.svg
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/images/logotipo_spb_ac.svg b/src/noosfero-spb-theme/images/logotipo_spb_ac.svg
new file mode 100644
index 0000000..cc61c20
--- /dev/null
+++ b/src/noosfero-spb-theme/images/logotipo_spb_ac.svg
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/images/logotipo_spb_beta.svg b/src/noosfero-spb-theme/images/logotipo_spb_beta.svg
new file mode 100644
index 0000000..cb38bf8
--- /dev/null
+++ b/src/noosfero-spb-theme/images/logotipo_spb_beta.svg
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/images/logotipo_spb_beta3.svg b/src/noosfero-spb-theme/images/logotipo_spb_beta3.svg
new file mode 100644
index 0000000..fdf6df3
--- /dev/null
+++ b/src/noosfero-spb-theme/images/logotipo_spb_beta3.svg
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/images/logotipo_spb_beta_ac.svg b/src/noosfero-spb-theme/images/logotipo_spb_beta_ac.svg
new file mode 100644
index 0000000..2b7034b
--- /dev/null
+++ b/src/noosfero-spb-theme/images/logotipo_spb_beta_ac.svg
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/images/logotipo_spb_beta_ac3.svg b/src/noosfero-spb-theme/images/logotipo_spb_beta_ac3.svg
new file mode 100644
index 0000000..64e47e6
--- /dev/null
+++ b/src/noosfero-spb-theme/images/logotipo_spb_beta_ac3.svg
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/src/noosfero-spb-theme/images/mais_fotos.png b/src/noosfero-spb-theme/images/mais_fotos.png
new file mode 100644
index 0000000..9aa88f0
Binary files /dev/null and b/src/noosfero-spb-theme/images/mais_fotos.png differ
diff --git a/src/noosfero-spb-theme/images/marca-participacao-social.png b/src/noosfero-spb-theme/images/marca-participacao-social.png
new file mode 100644
index 0000000..4ad05e3
Binary files /dev/null and b/src/noosfero-spb-theme/images/marca-participacao-social.png differ
diff --git a/src/noosfero-spb-theme/images/mascote-bug.png b/src/noosfero-spb-theme/images/mascote-bug.png
new file mode 100644
index 0000000..e9f98ec
Binary files /dev/null and b/src/noosfero-spb-theme/images/mascote-bug.png differ
diff --git a/src/noosfero-spb-theme/images/menu-ativo.gif b/src/noosfero-spb-theme/images/menu-ativo.gif
new file mode 100644
index 0000000..89415eb
Binary files /dev/null and b/src/noosfero-spb-theme/images/menu-ativo.gif differ
diff --git a/src/noosfero-spb-theme/images/menu-mobile-item.png b/src/noosfero-spb-theme/images/menu-mobile-item.png
new file mode 100644
index 0000000..d3fa756
Binary files /dev/null and b/src/noosfero-spb-theme/images/menu-mobile-item.png differ
diff --git a/src/noosfero-spb-theme/images/negative-hand.png b/src/noosfero-spb-theme/images/negative-hand.png
new file mode 100644
index 0000000..59804b4
Binary files /dev/null and b/src/noosfero-spb-theme/images/negative-hand.png differ
diff --git a/src/noosfero-spb-theme/images/no-image.gif b/src/noosfero-spb-theme/images/no-image.gif
new file mode 100644
index 0000000..e565824
Binary files /dev/null and b/src/noosfero-spb-theme/images/no-image.gif differ
diff --git a/src/noosfero-spb-theme/images/no-image.png b/src/noosfero-spb-theme/images/no-image.png
new file mode 100644
index 0000000..34340e5
Binary files /dev/null and b/src/noosfero-spb-theme/images/no-image.png differ
diff --git a/src/noosfero-spb-theme/images/oops.png b/src/noosfero-spb-theme/images/oops.png
new file mode 100644
index 0000000..ddeb2dd
Binary files /dev/null and b/src/noosfero-spb-theme/images/oops.png differ
diff --git a/src/noosfero-spb-theme/images/person-minor.png b/src/noosfero-spb-theme/images/person-minor.png
new file mode 100644
index 0000000..b410d88
Binary files /dev/null and b/src/noosfero-spb-theme/images/person-minor.png differ
diff --git a/src/noosfero-spb-theme/images/person-minor_50.png b/src/noosfero-spb-theme/images/person-minor_50.png
new file mode 100644
index 0000000..7bf25a3
Binary files /dev/null and b/src/noosfero-spb-theme/images/person-minor_50.png differ
diff --git a/src/noosfero-spb-theme/images/portlet-footer-textmore.png b/src/noosfero-spb-theme/images/portlet-footer-textmore.png
new file mode 100644
index 0000000..777d1af
Binary files /dev/null and b/src/noosfero-spb-theme/images/portlet-footer-textmore.png differ
diff --git a/src/noosfero-spb-theme/images/portlet-header-expanded.gif b/src/noosfero-spb-theme/images/portlet-header-expanded.gif
new file mode 100644
index 0000000..a46eb43
Binary files /dev/null and b/src/noosfero-spb-theme/images/portlet-header-expanded.gif differ
diff --git a/src/noosfero-spb-theme/images/portlet-header.gif b/src/noosfero-spb-theme/images/portlet-header.gif
new file mode 100644
index 0000000..6aa5d3f
Binary files /dev/null and b/src/noosfero-spb-theme/images/portlet-header.gif differ
diff --git a/src/noosfero-spb-theme/images/positive-hand.png b/src/noosfero-spb-theme/images/positive-hand.png
new file mode 100644
index 0000000..44c85ca
Binary files /dev/null and b/src/noosfero-spb-theme/images/positive-hand.png differ
diff --git a/src/noosfero-spb-theme/images/prompt_bg.png b/src/noosfero-spb-theme/images/prompt_bg.png
new file mode 100644
index 0000000..5a8ce78
Binary files /dev/null and b/src/noosfero-spb-theme/images/prompt_bg.png differ
diff --git a/src/noosfero-spb-theme/images/prompt_bg_hover.png b/src/noosfero-spb-theme/images/prompt_bg_hover.png
new file mode 100644
index 0000000..25eb01e
Binary files /dev/null and b/src/noosfero-spb-theme/images/prompt_bg_hover.png differ
diff --git a/src/noosfero-spb-theme/images/prompt_bg_normal.png b/src/noosfero-spb-theme/images/prompt_bg_normal.png
new file mode 100644
index 0000000..c8cc9c1
Binary files /dev/null and b/src/noosfero-spb-theme/images/prompt_bg_normal.png differ
diff --git a/src/noosfero-spb-theme/images/read-more-home.png b/src/noosfero-spb-theme/images/read-more-home.png
new file mode 100644
index 0000000..a39fcd0
Binary files /dev/null and b/src/noosfero-spb-theme/images/read-more-home.png differ
diff --git a/src/noosfero-spb-theme/images/readmoreblue.png b/src/noosfero-spb-theme/images/readmoreblue.png
new file mode 100644
index 0000000..74408e3
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmoreblue.png differ
diff --git a/src/noosfero-spb-theme/images/readmorebrown.png b/src/noosfero-spb-theme/images/readmorebrown.png
new file mode 100644
index 0000000..291a6e8
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmorebrown.png differ
diff --git a/src/noosfero-spb-theme/images/readmoredarkblue.png b/src/noosfero-spb-theme/images/readmoredarkblue.png
new file mode 100644
index 0000000..18eacef
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmoredarkblue.png differ
diff --git a/src/noosfero-spb-theme/images/readmoredarkgray.png b/src/noosfero-spb-theme/images/readmoredarkgray.png
new file mode 100644
index 0000000..898ac8b
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmoredarkgray.png differ
diff --git a/src/noosfero-spb-theme/images/readmoregray.png b/src/noosfero-spb-theme/images/readmoregray.png
new file mode 100644
index 0000000..4ead1c0
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmoregray.png differ
diff --git a/src/noosfero-spb-theme/images/readmoregreen.png b/src/noosfero-spb-theme/images/readmoregreen.png
new file mode 100644
index 0000000..8c486b8
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmoregreen.png differ
diff --git a/src/noosfero-spb-theme/images/readmoreorange.png b/src/noosfero-spb-theme/images/readmoreorange.png
new file mode 100644
index 0000000..d5f5a01
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmoreorange.png differ
diff --git a/src/noosfero-spb-theme/images/readmorepurple.png b/src/noosfero-spb-theme/images/readmorepurple.png
new file mode 100644
index 0000000..ad9f569
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmorepurple.png differ
diff --git a/src/noosfero-spb-theme/images/readmorewhiteblue.png b/src/noosfero-spb-theme/images/readmorewhiteblue.png
new file mode 100644
index 0000000..98b89ba
Binary files /dev/null and b/src/noosfero-spb-theme/images/readmorewhiteblue.png differ
diff --git a/src/noosfero-spb-theme/images/reportar-erros.png b/src/noosfero-spb-theme/images/reportar-erros.png
new file mode 100644
index 0000000..b28c2a1
Binary files /dev/null and b/src/noosfero-spb-theme/images/reportar-erros.png differ
diff --git a/src/noosfero-spb-theme/images/right-arrow-black.png b/src/noosfero-spb-theme/images/right-arrow-black.png
new file mode 100644
index 0000000..a22badd
Binary files /dev/null and b/src/noosfero-spb-theme/images/right-arrow-black.png differ
diff --git a/src/noosfero-spb-theme/images/right-arrow.png b/src/noosfero-spb-theme/images/right-arrow.png
new file mode 100644
index 0000000..b8c6940
Binary files /dev/null and b/src/noosfero-spb-theme/images/right-arrow.png differ
diff --git a/src/noosfero-spb-theme/images/rss.png b/src/noosfero-spb-theme/images/rss.png
new file mode 100644
index 0000000..7661d92
Binary files /dev/null and b/src/noosfero-spb-theme/images/rss.png differ
diff --git a/src/noosfero-spb-theme/images/rss.svg b/src/noosfero-spb-theme/images/rss.svg
new file mode 100644
index 0000000..8256f3b
--- /dev/null
+++ b/src/noosfero-spb-theme/images/rss.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/noosfero-spb-theme/images/search-buttom.gif b/src/noosfero-spb-theme/images/search-buttom.gif
new file mode 100644
index 0000000..460a98e
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-buttom.gif differ
diff --git a/src/noosfero-spb-theme/images/search-button-30px.gif b/src/noosfero-spb-theme/images/search-button-30px.gif
new file mode 100644
index 0000000..3ea65f2
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button-30px.gif differ
diff --git a/src/noosfero-spb-theme/images/search-button.gif b/src/noosfero-spb-theme/images/search-button.gif
new file mode 100644
index 0000000..460a98e
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button.gif differ
diff --git a/src/noosfero-spb-theme/images/search-button.png b/src/noosfero-spb-theme/images/search-button.png
new file mode 100644
index 0000000..eb2130d
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button.png differ
diff --git a/src/noosfero-spb-theme/images/search-button10.png b/src/noosfero-spb-theme/images/search-button10.png
new file mode 100644
index 0000000..cac2696
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button10.png differ
diff --git a/src/noosfero-spb-theme/images/search-button100.png b/src/noosfero-spb-theme/images/search-button100.png
new file mode 100644
index 0000000..42b442b
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button100.png differ
diff --git a/src/noosfero-spb-theme/images/search-button2.gif b/src/noosfero-spb-theme/images/search-button2.gif
new file mode 100644
index 0000000..460a98e
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button2.gif differ
diff --git a/src/noosfero-spb-theme/images/search-button2.png b/src/noosfero-spb-theme/images/search-button2.png
new file mode 100644
index 0000000..42b442b
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button2.png differ
diff --git a/src/noosfero-spb-theme/images/search-button_oficial.png b/src/noosfero-spb-theme/images/search-button_oficial.png
new file mode 100644
index 0000000..9ac6cb6
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-button_oficial.png differ
diff --git a/src/noosfero-spb-theme/images/search-ico.png b/src/noosfero-spb-theme/images/search-ico.png
new file mode 100644
index 0000000..6d102ce
Binary files /dev/null and b/src/noosfero-spb-theme/images/search-ico.png differ
diff --git a/src/noosfero-spb-theme/images/search.png b/src/noosfero-spb-theme/images/search.png
new file mode 100644
index 0000000..757f6a5
Binary files /dev/null and b/src/noosfero-spb-theme/images/search.png differ
diff --git a/src/noosfero-spb-theme/images/sections-ico.png b/src/noosfero-spb-theme/images/sections-ico.png
new file mode 100644
index 0000000..4ba2a1e
Binary files /dev/null and b/src/noosfero-spb-theme/images/sections-ico.png differ
diff --git a/src/noosfero-spb-theme/images/seta_cidadania_justica.png b/src/noosfero-spb-theme/images/seta_cidadania_justica.png
new file mode 100644
index 0000000..242a3a2
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_cidadania_justica.png differ
diff --git a/src/noosfero-spb-theme/images/seta_ciencia_tecnologia.png b/src/noosfero-spb-theme/images/seta_ciencia_tecnologia.png
new file mode 100644
index 0000000..ae05455
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_ciencia_tecnologia.png differ
diff --git a/src/noosfero-spb-theme/images/seta_cultura.png b/src/noosfero-spb-theme/images/seta_cultura.png
new file mode 100644
index 0000000..d221d2c
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_cultura.png differ
diff --git a/src/noosfero-spb-theme/images/seta_defesa_seguranca.png b/src/noosfero-spb-theme/images/seta_defesa_seguranca.png
new file mode 100644
index 0000000..2668bd1
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_defesa_seguranca.png differ
diff --git a/src/noosfero-spb-theme/images/seta_economia_emprego.png b/src/noosfero-spb-theme/images/seta_economia_emprego.png
new file mode 100644
index 0000000..ff79913
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_economia_emprego.png differ
diff --git a/src/noosfero-spb-theme/images/seta_educacao.png b/src/noosfero-spb-theme/images/seta_educacao.png
new file mode 100644
index 0000000..7934c02
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_educacao.png differ
diff --git a/src/noosfero-spb-theme/images/seta_esporte.png b/src/noosfero-spb-theme/images/seta_esporte.png
new file mode 100644
index 0000000..dd484c6
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_esporte.png differ
diff --git a/src/noosfero-spb-theme/images/seta_governo.png b/src/noosfero-spb-theme/images/seta_governo.png
new file mode 100644
index 0000000..7d6341d
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_governo.png differ
diff --git a/src/noosfero-spb-theme/images/seta_infraestrutura.png b/src/noosfero-spb-theme/images/seta_infraestrutura.png
new file mode 100644
index 0000000..66cdff1
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_infraestrutura.png differ
diff --git a/src/noosfero-spb-theme/images/seta_meio_ambiente.png b/src/noosfero-spb-theme/images/seta_meio_ambiente.png
new file mode 100644
index 0000000..2079b67
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_meio_ambiente.png differ
diff --git a/src/noosfero-spb-theme/images/seta_saude.png b/src/noosfero-spb-theme/images/seta_saude.png
new file mode 100644
index 0000000..8cd6d10
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_saude.png differ
diff --git a/src/noosfero-spb-theme/images/seta_tursimo.png b/src/noosfero-spb-theme/images/seta_tursimo.png
new file mode 100644
index 0000000..ed796e4
Binary files /dev/null and b/src/noosfero-spb-theme/images/seta_tursimo.png differ
diff --git a/src/noosfero-spb-theme/images/sgpr.png b/src/noosfero-spb-theme/images/sgpr.png
new file mode 100644
index 0000000..0c6187e
Binary files /dev/null and b/src/noosfero-spb-theme/images/sgpr.png differ
diff --git a/src/noosfero-spb-theme/images/shadow-bottom.gif b/src/noosfero-spb-theme/images/shadow-bottom.gif
new file mode 100644
index 0000000..f804faa
Binary files /dev/null and b/src/noosfero-spb-theme/images/shadow-bottom.gif differ
diff --git a/src/noosfero-spb-theme/images/site-footer.png b/src/noosfero-spb-theme/images/site-footer.png
new file mode 100644
index 0000000..ce5e61d
Binary files /dev/null and b/src/noosfero-spb-theme/images/site-footer.png differ
diff --git a/src/noosfero-spb-theme/images/spb.png b/src/noosfero-spb-theme/images/spb.png
new file mode 100644
index 0000000..addfc12
Binary files /dev/null and b/src/noosfero-spb-theme/images/spb.png differ
diff --git a/src/noosfero-spb-theme/images/sprite-icons.png b/src/noosfero-spb-theme/images/sprite-icons.png
new file mode 100644
index 0000000..70781ca
Binary files /dev/null and b/src/noosfero-spb-theme/images/sprite-icons.png differ
diff --git a/src/noosfero-spb-theme/images/sprite-setas.png b/src/noosfero-spb-theme/images/sprite-setas.png
new file mode 100644
index 0000000..4537a80
Binary files /dev/null and b/src/noosfero-spb-theme/images/sprite-setas.png differ
diff --git a/src/noosfero-spb-theme/images/sprite.png b/src/noosfero-spb-theme/images/sprite.png
new file mode 100644
index 0000000..a3e1333
Binary files /dev/null and b/src/noosfero-spb-theme/images/sprite.png differ
diff --git a/src/noosfero-spb-theme/images/sprite2.png b/src/noosfero-spb-theme/images/sprite2.png
new file mode 100644
index 0000000..440acbb
Binary files /dev/null and b/src/noosfero-spb-theme/images/sprite2.png differ
diff --git a/src/noosfero-spb-theme/images/sprite_social-2.png b/src/noosfero-spb-theme/images/sprite_social-2.png
new file mode 100644
index 0000000..f9f90a6
Binary files /dev/null and b/src/noosfero-spb-theme/images/sprite_social-2.png differ
diff --git a/src/noosfero-spb-theme/images/sprite_social-verde.png b/src/noosfero-spb-theme/images/sprite_social-verde.png
new file mode 100644
index 0000000..87eb3f5
Binary files /dev/null and b/src/noosfero-spb-theme/images/sprite_social-verde.png differ
diff --git a/src/noosfero-spb-theme/images/sprite_social.png b/src/noosfero-spb-theme/images/sprite_social.png
new file mode 100644
index 0000000..300cb9d
Binary files /dev/null and b/src/noosfero-spb-theme/images/sprite_social.png differ
diff --git a/src/noosfero-spb-theme/images/star-negative-big.png b/src/noosfero-spb-theme/images/star-negative-big.png
new file mode 100644
index 0000000..617dbe4
Binary files /dev/null and b/src/noosfero-spb-theme/images/star-negative-big.png differ
diff --git a/src/noosfero-spb-theme/images/star-negative-mini.png b/src/noosfero-spb-theme/images/star-negative-mini.png
new file mode 100644
index 0000000..eabea40
Binary files /dev/null and b/src/noosfero-spb-theme/images/star-negative-mini.png differ
diff --git a/src/noosfero-spb-theme/images/star-negative.png b/src/noosfero-spb-theme/images/star-negative.png
new file mode 100644
index 0000000..41973e7
Binary files /dev/null and b/src/noosfero-spb-theme/images/star-negative.png differ
diff --git a/src/noosfero-spb-theme/images/star-positive-big.png b/src/noosfero-spb-theme/images/star-positive-big.png
new file mode 100644
index 0000000..d41a993
Binary files /dev/null and b/src/noosfero-spb-theme/images/star-positive-big.png differ
diff --git a/src/noosfero-spb-theme/images/star-positive-mini.png b/src/noosfero-spb-theme/images/star-positive-mini.png
new file mode 100644
index 0000000..febf0de
Binary files /dev/null and b/src/noosfero-spb-theme/images/star-positive-mini.png differ
diff --git a/src/noosfero-spb-theme/images/star-positive.png b/src/noosfero-spb-theme/images/star-positive.png
new file mode 100644
index 0000000..ca15335
Binary files /dev/null and b/src/noosfero-spb-theme/images/star-positive.png differ
diff --git a/src/noosfero-spb-theme/images/steps_bg.png b/src/noosfero-spb-theme/images/steps_bg.png
new file mode 100644
index 0000000..430b99d
Binary files /dev/null and b/src/noosfero-spb-theme/images/steps_bg.png differ
diff --git a/src/noosfero-spb-theme/images/thin-logo.png b/src/noosfero-spb-theme/images/thin-logo.png
new file mode 100644
index 0000000..1aeb9fc
Binary files /dev/null and b/src/noosfero-spb-theme/images/thin-logo.png differ
diff --git a/src/noosfero-spb-theme/images/top-arrow-black.png b/src/noosfero-spb-theme/images/top-arrow-black.png
new file mode 100644
index 0000000..5744b53
Binary files /dev/null and b/src/noosfero-spb-theme/images/top-arrow-black.png differ
diff --git a/src/noosfero-spb-theme/images/top-arrow.png b/src/noosfero-spb-theme/images/top-arrow.png
new file mode 100644
index 0000000..d4e3f01
Binary files /dev/null and b/src/noosfero-spb-theme/images/top-arrow.png differ
diff --git a/src/noosfero-spb-theme/images/touch_icon.png b/src/noosfero-spb-theme/images/touch_icon.png
new file mode 100644
index 0000000..98c3ad4
Binary files /dev/null and b/src/noosfero-spb-theme/images/touch_icon.png differ
diff --git a/src/noosfero-spb-theme/images/twitter-widget.png b/src/noosfero-spb-theme/images/twitter-widget.png
new file mode 100644
index 0000000..e0cd726
Binary files /dev/null and b/src/noosfero-spb-theme/images/twitter-widget.png differ
diff --git a/src/noosfero-spb-theme/images/twitter.png b/src/noosfero-spb-theme/images/twitter.png
new file mode 100644
index 0000000..aededc4
Binary files /dev/null and b/src/noosfero-spb-theme/images/twitter.png differ
diff --git a/src/noosfero-spb-theme/images/upload-icon.png b/src/noosfero-spb-theme/images/upload-icon.png
new file mode 100644
index 0000000..00c39e1
Binary files /dev/null and b/src/noosfero-spb-theme/images/upload-icon.png differ
diff --git a/src/noosfero-spb-theme/images/usuario_participa.png b/src/noosfero-spb-theme/images/usuario_participa.png
new file mode 100644
index 0000000..a86a6a3
Binary files /dev/null and b/src/noosfero-spb-theme/images/usuario_participa.png differ
diff --git a/src/noosfero-spb-theme/images/visualizacoes.png b/src/noosfero-spb-theme/images/visualizacoes.png
new file mode 100644
index 0000000..9a014d5
Binary files /dev/null and b/src/noosfero-spb-theme/images/visualizacoes.png differ
diff --git a/src/noosfero-spb-theme/images/voltar-topo.png b/src/noosfero-spb-theme/images/voltar-topo.png
new file mode 100644
index 0000000..3303386
Binary files /dev/null and b/src/noosfero-spb-theme/images/voltar-topo.png differ
diff --git a/src/noosfero-spb-theme/images/youtube.png b/src/noosfero-spb-theme/images/youtube.png
new file mode 100644
index 0000000..22b1fb7
Binary files /dev/null and b/src/noosfero-spb-theme/images/youtube.png differ
diff --git a/src/noosfero-spb-theme/preview.png b/src/noosfero-spb-theme/preview.png
new file mode 100644
index 0000000..8c3627e
Binary files /dev/null and b/src/noosfero-spb-theme/preview.png differ
diff --git a/src/noosfero-spb-theme/site_title.html.erb b/src/noosfero-spb-theme/site_title.html.erb
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/noosfero-spb-theme/site_title.html.erb
diff --git a/src/noosfero-spb-theme/style.css b/src/noosfero-spb-theme/style.css
new file mode 100644
index 0000000..df03cbc
--- /dev/null
+++ b/src/noosfero-spb-theme/style.css
@@ -0,0 +1,212 @@
+/*** Noosfero Base Theme ***/
+@import url(../profile-base/style.css);
+
+/*** Icon and animation resources***/
+@import url(../../icons/tango/style.css);
+@import url(css/animate.css);
+@import url(font-awesome.min.css);
+
+
+/*** SPB Theme section styles ***/
+@import url(css/overwriting-base-theme.css);
+@import url(css/header.css);
+@import url(css/footer.css);
+@import url(css/left-bar.css);
+@import url(css/home-page.css);
+@import url(css/main-content.css);
+@import url(css/edition-pages.css);
+@import url(css/administration-panel.css);
+@import url(css/article-page.css);
+@import url(css/software-pages.css);
+@import url(css/community-pages.css);
+@import url(css/use-report.css);
+@import url(css/news-page.css);
+@import url(css/search-pages.css);
+@import url(css/software-catalog-page.css);
+@import url(css/tooltip.css);
+@import url(css/popover.css);
+
+@font-face{
+ font-weight: normal;
+ font-style: normal;
+ font-family: "open_sanslight";
+ src: url("fonts/opensans-300-webfont.eot");
+ src: url("fonts/opensans-300-webfont.eot?#iefix") format("embedded-opentype"),
+ url("fonts/opensans-300-webfont.woff") format("woff"),
+ url("fonts/opensans-300-webfont.ttf") format("truetype"),
+ url("fonts/opensans-300-webfont.svg#open_sanslight") format("svg");
+}
+
+@font-face{
+ font-weight: normal;
+ font-style: normal;
+ font-family: "open_sansregular";
+ src: url("fonts/opensans-400-webfont.eot");
+ src: url("fonts/opensans-400-webfont.eot?#iefix") format("embedded-opentype"),
+ url("fonts/opensans-400-webfont.woff") format("woff"),
+ url("fonts/opensans-400-webfont.ttf") format("truetype"),
+ url("fonts/opensans-400-webfont.svg#open_sansregular") format("svg");
+}
+
+@font-face{
+ font-weight: normal;
+ font-style: normal;
+ font-family: "open_sanssemibold";
+ src: url("fonts/opensans-600-webfont.eot");
+ src: url("fonts/opensans-600-webfont.eot?#iefix") format("embedded-opentype"),
+ url("fonts/opensans-600-webfont.woff") format("woff"),
+ url("fonts/opensans-600-webfont.ttf") format("truetype"),
+ url("fonts/opensans-600-webfont.svg#open_sanssemibold") format("svg");
+}
+
+@font-face{
+ font-weight: normal;
+ font-style: normal;
+ font-family: "open_sansbold";
+ src: url("fonts/opensans-700-webfont.eot");
+ src: url("fonts/opensans-700-webfont.eot?#iefix") format("embedded-opentype"),
+ url("fonts/opensans-700-webfont.woff") format("woff"),
+ url("fonts/opensans-700-webfont.ttf") format("truetype"),
+ url("fonts/opensans-700-webfont.svg#open_sansbold") format("svg");
+}
+
+@font-face{
+ font-weight: normal;
+ font-style: normal;
+ font-family: "open_sansextrabold";
+ src: url("fonts/opensans-800-webfont.eot");
+ src: url("fonts/opensans-800-webfont.eot?#iefix") format("embedded-opentype"),
+ url("fonts/opensans-800-webfont.woff") format("woff"),
+ url("fonts/opensans-800-webfont.ttf") format("truetype"),
+ url("fonts/opensans-800-webfont.svg#open_sansextrabold") format("svg");
+}
+
+/*********** General Rules ************/
+
+* {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ vertical-align: baseline;
+}
+
+body {
+ background-color: #fff;
+ color: #172738;
+ font-size: 12px;
+ font-family: "open_sansregular", Arial, Helvetica, sans-serif;
+}
+
+* :link,:visited {
+ text-decoration: none;
+}
+
+* ul,ol {
+ list-style: none;
+}
+
+* h1,h2,h3,h4,h5,h6 {
+ color: inherit;
+ font-family: Arial;
+ font-weight: 700;
+ margin-top: 20px;
+ margin-bottom: 10px;
+}
+
+* h1{
+ font-size: 34px;
+ line-height: 37px;
+}
+
+* h2{
+ font-size: 22px;
+ line-height: 21px;
+}
+
+* h3{
+ font-size: 18px;
+ line-height: 21px;
+}
+
+* h4,h5,h6 {
+ font-size: 16px;
+ line-height: 21px;
+}
+
+#content h1, #content h2, #content h3, #content h4, #content h5, #content h6{
+ margin-top: 20px;
+ margin-bottom: 10px;
+ color: inherit;
+ font-family: Arial;
+ font-weight: 700;
+}
+
+#content h1{
+ font-size: 34px;
+ line-height: 37px;
+}
+
+#content h2{
+ font-size: 22px;
+ line-height: 21px;
+}
+
+#content h3{
+ font-size: 18px;
+ line-height: 21px;
+ font-weight: 700;
+}
+
+#content h4, content h5, #content h6{
+ font-size: 16px;
+ line-height: 21px;
+}
+
+p{
+ margin: 0px 0px 10px 0px;
+ line-height: 21px;
+ font-size: 15px;
+}
+
+
+* a img,:link img,:visited img{
+ border: none
+}
+
+a{
+ outline: none;
+}
+a:link, #content a:link, dl.portlet a:link{
+ color: #172738;
+}
+
+a:visited, #content a:visited, dl.portlet a:visited{
+ color:#172738;
+}
+
+a:focus{
+ outline: 2px solid #f1ca7f;
+}
+
+/* Remove in all td gray backgroung hover */
+tr:hover td{
+ background-color: transparent;
+}
+
+#content a:hover, dl.portlet a:hover{
+ color: #000;
+}
+
+table{
+ border-spacing: 0;
+}
+
+img{
+ vertical-align: text-bottom;
+}
+
+iframe{
+ border-width: 0; border-style:none;
+}
+
+
diff --git a/src/noosfero-spb-theme/theme.js b/src/noosfero-spb-theme/theme.js
new file mode 100644
index 0000000..3ef8426
--- /dev/null
+++ b/src/noosfero-spb-theme/theme.js
@@ -0,0 +1,280 @@
+function alignBlocks(containerIndex){
+ //Needed to save the original reference to jQuery(this)
+ jt = jQuery(this);
+ longerBlock = 0;
+ jt.find(".block-outer").each(function () {
+ if(jQuery(this).height() > longerBlock)
+ longerBlock = jQuery(this).height();
+ });
+
+ jt.find("#block-48504 .block-inner-2").height(492);
+ jt.find("#block-55304 .block-inner-2").height(378);
+
+ //Aligns the blocks in the most common situations
+ jt.find(".block-outer").height(longerBlock);
+ //Only used for blocks with video, since it uses the size of the iframe
+ if(jt.find("iframe").length > 0){
+ jt.find(".block-inner-1 .block-inner-2").each(function (idx) {
+ if(idx==2){
+ jQuery(this).height(jt.find("iframe").height());
+ }
+ });
+ }
+}
+
+(function($) {
+ // Run code
+ if($.cookie("high_contrast") === 'true'){
+ $( "body" ).toggleClass( "contraste" );
+ }
+ $( "#siteaction-contraste a" ).click(function() {
+ $( "body" ).toggleClass( "contraste" );
+ if($('body').hasClass('contraste')){
+ $.cookie('high_contrast', 'true', {path: '/'});
+ } else {
+ $.cookie('high_contrast', null, { path: '/' });
+ }
+ });
+
+ $( ".profile-image" ).prepend( " " );
+ //insere a mensagem no bloco de trilhas na página inicial//
+ $( ".action-home-index #content .community-track-plugin_track-card-list-block .track_list" ).prepend( "Construa seu caminho de participação na elaboração de políticas públicas... " );
+ //insere a mensagem no bloco de comunidades na página inicial//
+ $( ".action-home-index #content .communities-block .block-inner-2>div" ).prepend( "Participe dos dialogos entre governo e sociedade em comunidades temáticas... " );
+ $( ".action-home-index #content .communities-block .block-inner-2>div.block-footer-content .msg_block" ).remove();
+ $('.container-block-plugin_container-block').each(alignBlocks);
+
+ $('#block-48500 > .block-inner-1 > .block-inner-2').append('');
+
+
+
+// Foco no botao de busca
+
+$('#link-buscar').click(function(e) {
+ e.preventDefault();
+ window.location.hash = '#portal-searchbox';
+ $('.searchField').focus()
+})
+
+})(jQuery);
+
+
+// Efeito Fade nos box de softwares
+
+(function($){
+ "use strict";// Make javascript less intolerant to errors
+
+ var TRANSITION_TIME = 250;// milliseconds
+
+
+ function show_finality() {
+ var finality = $(this).children(".software-block-finality");
+
+ //finality.stop().fadeTo(TRANSITION_TIME,1);
+ finality.stop().fadeTo('fast', 1);
+ //finality.stop().animate({"top" : "0%"}, TRANSITION_TIME);
+ }
+
+ function hide_finality() {
+ var finality = $(this).children(".software-block-finality");
+
+ //finality.stop().fadeTo(TRANSITION_TIME,0);
+ finality.stop().fadeTo('fast', 0);
+ //finality.stop().animate({"top" : "100%"}, TRANSITION_TIME);
+ }
+
+ function move_article_buttons(){
+ var article_actions = $('#article-actions').clone();
+ var report = $('.report-abuse-action').remove();
+ var suggest = $('.icon-suggest').remove();
+
+
+ $(article_actions).find('.icon-edit, .icon-new, .icon-delete, .icon-locale').remove();
+ $('.article-body').append(article_actions);
+ }
+
+ function add_link_to_article_div(){
+ var list = $('.display-content-block').find('li');
+
+ list.each(function(){
+ var link = $(this).find('.title').find('a').attr('href');
+ var text = $(this).find('.lead').find('p').text();
+ var leadLink = $(' ');
+
+ leadLink.attr('href', link);
+ leadLink.text(text);
+
+ $(this).find('.lead').html(leadLink);
+ });
+ }
+
+ function insert_notice_div(){
+ var notice = $('.display-content-block').find('li');
+ notice.each(function(){
+ var $set = $(this).children();
+ for(var i=1, len = $set.length; i < len; i+=5){
+ $set.slice(i, i+5).wrapAll('
');
+ }
+ for(var i=2, len = $set.length; i < len; i+=3){
+ $set.slice(i, i+3).wrapAll('
');
+ }
+ //$('
').wrap($(this).find( '.image', '.title', '.lead', '.read_more'));
+ });
+
+ }
+
+ //toggle filter options in catalog page
+ function setFilterCategoriesOptionClass() {
+ var filterOptions = $("#filter-categories-option");
+ filterOptions.addClass("animated slideInDown");
+ }
+
+ function toggleFilterOptions(){
+ var filterOptions = $("#filter-categories-option");
+ var filterHeight = filterOptions[0].scrollHeight;
+ var showOptions = $("#filter-option-catalog-software");
+ var hideOptions = $("#filter-option-catalog-close");
+ if(hideOptions.is(":visible")){
+ //filterOptions.slideUp(function() {
+ showOptions.show();
+ hideOptions.hide();
+ //});
+ filterOptions.animate({
+ height: 0
+ },500);
+ }
+ else {
+ showOptions.hide();
+ hideOptions.show();
+ filterOptions.animate({
+ height: filterHeight
+ },500);
+ }
+ }
+
+ function setEvents(){
+ // Fade css
+ $('.software-block-finality').css('opacity', 0);
+ $('.software-block-finality').css('top', 0);
+ // End Fade CSS
+ $(".software-block").mouseover(show_finality);
+ $(".software-block").mouseout(hide_finality);
+
+ var showOptions = $("#filter-option-catalog-software");
+ var hideOptions = $("#filter-option-catalog-close");
+ showOptions.click(toggleFilterOptions);
+ hideOptions.click(toggleFilterOptions);
+ }
+
+ /* Finds all uploaded files from manuals page and sets its names on the right format */
+ function set_uploaded_files_names() {
+ try {
+ var article = document.getElementById('article');
+ var folderList = article.getElementsByClassName('folder-content')[0];
+ var folderItens = folderList.getElementsByClassName('item-description');
+
+ for(var i = 0; i < folderItens.length; i++) {
+ split_file_extension(folderItens[i].getElementsByTagName('a')[0]);
+ }
+ } catch(e) {
+
+ }
+ }
+
+ /* Splits a file name from its extension. Example: example.pdf becomes example - PDF */
+ function split_file_extension(element) {
+ var tokens = element.innerHTML.split('.');
+ if(tokens.length == 2) {
+ var fileName = tokens[0];
+ var fileExtension = tokens[1].toUpperCase();
+ element.innerHTML = fileName + " - " + fileExtension;
+ }
+ }
+
+ function set_tooltip_content() {
+ $('.star-tooltip').html("?");
+ }
+
+ // TODO: fix calls for this function below
+ // TODO: comments-additional-information --> comments-display-fields
+ function set_arrow_direction() {
+ var additional_data_bar = $('.comments-display-fields');
+ var arrow = $('.comments-arrow-down');
+ var state = 0;
+ additional_data_bar.on('click', function() {
+ animateExtraFields();
+ });
+ }
+
+ function animateExtraFields() {
+ var additional_data_bar = $('.comments-display-fields');
+ var arrow = ($('.comments-arrow-down')[0])? $('.comments-arrow-down') : $('.comments-arrow-up');
+ console.log(arrow);
+ var fields = $('.comments-software-extra-fields');
+ if(fields) {
+ var innerHeight = fields[0].offsetHeight;
+ if(fields.height()!==0) {
+ arrow.attr('class', "comments-arrow-down");
+ fields.animate({height: 0});
+ }
+ else {
+ arrow.attr('class', "comments-arrow-up");
+ fields.animate({height: 140});
+ }
+ }
+ }
+
+ function set_use_report_content() {
+ $('.make-report-block .make-report-container .button-bar a span').html('avaliar o software');
+ $('.make-report-block .make-report-container .make-report-message').html('Relate sua experiência ou do órgão/empresa com relação ao software.');
+ $('.ratings-list .see-more a.icon-arrow-right-p').html('veja todos os relatos');
+ $('.main-content .star-rate-data .star-rate-form .star-comment-container .button-bar input').attr('value', 'enviar relato');
+ $('.main-content .star-rate-data .star-rate-form .star-rate-text').html('Avalie o software');
+ $('.main-content .star-rate-data .star-rate-form .star-comment-container .formlabel').html('Depoimento sobre o software');
+ $('.star-rate-form .star-comment-container .comments-display-fields span#comments-additional-information').html('Dados adicionais (órgãos e empresas)');
+ $('.star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments label').html('Nome do órgão ou empresa');
+ $('.star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-people-benefited label').html('Número de beneficiados');
+ $('.star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-saved-values label').html('Recursos economizados');
+ }
+
+ function add_tooltips(){
+ $('#content span[title]').attr("data-toggle","tooltip");
+
+ $('[data-toggle="tooltip"]').tooltip();
+ }
+
+ function add_popovers() {
+ var span = $('span[data-toggle="popover"]');
+ var place = span.attr("data-placement");
+ var elementClass = span.attr("data-class");
+ if(span){
+ var popover = span.popover({
+ html:true,
+ placement: place,
+ content: function() {
+ return $(this).next().html();
+ }
+ })
+ .data('bs.popover');
+ }
+ if(popover) {
+ popover.tip()
+ .addClass(elementClass);
+ $('a.toggle-popover').on("click",function() {
+ span.trigger("click");
+ });
+ }
+ }
+
+ $(document).ready(function(){
+ add_tooltips();
+ add_popovers();
+ move_article_buttons();
+ insert_notice_div();
+ set_uploaded_files_names();
+ set_tooltip_content();
+ set_arrow_direction();
+ set_use_report_content();
+ setEvents();
+ });
+})(jQuery);
diff --git a/src/noosfero-spb-theme/theme.yml b/src/noosfero-spb-theme/theme.yml
new file mode 100644
index 0000000..f5721f4
--- /dev/null
+++ b/src/noosfero-spb-theme/theme.yml
@@ -0,0 +1,2 @@
+name: "Software Público"
+layout: "application-ng"
diff --git a/style.css b/style.css
deleted file mode 100644
index df03cbc..0000000
--- a/style.css
+++ /dev/null
@@ -1,212 +0,0 @@
-/*** Noosfero Base Theme ***/
-@import url(../profile-base/style.css);
-
-/*** Icon and animation resources***/
-@import url(../../icons/tango/style.css);
-@import url(css/animate.css);
-@import url(font-awesome.min.css);
-
-
-/*** SPB Theme section styles ***/
-@import url(css/overwriting-base-theme.css);
-@import url(css/header.css);
-@import url(css/footer.css);
-@import url(css/left-bar.css);
-@import url(css/home-page.css);
-@import url(css/main-content.css);
-@import url(css/edition-pages.css);
-@import url(css/administration-panel.css);
-@import url(css/article-page.css);
-@import url(css/software-pages.css);
-@import url(css/community-pages.css);
-@import url(css/use-report.css);
-@import url(css/news-page.css);
-@import url(css/search-pages.css);
-@import url(css/software-catalog-page.css);
-@import url(css/tooltip.css);
-@import url(css/popover.css);
-
-@font-face{
- font-weight: normal;
- font-style: normal;
- font-family: "open_sanslight";
- src: url("fonts/opensans-300-webfont.eot");
- src: url("fonts/opensans-300-webfont.eot?#iefix") format("embedded-opentype"),
- url("fonts/opensans-300-webfont.woff") format("woff"),
- url("fonts/opensans-300-webfont.ttf") format("truetype"),
- url("fonts/opensans-300-webfont.svg#open_sanslight") format("svg");
-}
-
-@font-face{
- font-weight: normal;
- font-style: normal;
- font-family: "open_sansregular";
- src: url("fonts/opensans-400-webfont.eot");
- src: url("fonts/opensans-400-webfont.eot?#iefix") format("embedded-opentype"),
- url("fonts/opensans-400-webfont.woff") format("woff"),
- url("fonts/opensans-400-webfont.ttf") format("truetype"),
- url("fonts/opensans-400-webfont.svg#open_sansregular") format("svg");
-}
-
-@font-face{
- font-weight: normal;
- font-style: normal;
- font-family: "open_sanssemibold";
- src: url("fonts/opensans-600-webfont.eot");
- src: url("fonts/opensans-600-webfont.eot?#iefix") format("embedded-opentype"),
- url("fonts/opensans-600-webfont.woff") format("woff"),
- url("fonts/opensans-600-webfont.ttf") format("truetype"),
- url("fonts/opensans-600-webfont.svg#open_sanssemibold") format("svg");
-}
-
-@font-face{
- font-weight: normal;
- font-style: normal;
- font-family: "open_sansbold";
- src: url("fonts/opensans-700-webfont.eot");
- src: url("fonts/opensans-700-webfont.eot?#iefix") format("embedded-opentype"),
- url("fonts/opensans-700-webfont.woff") format("woff"),
- url("fonts/opensans-700-webfont.ttf") format("truetype"),
- url("fonts/opensans-700-webfont.svg#open_sansbold") format("svg");
-}
-
-@font-face{
- font-weight: normal;
- font-style: normal;
- font-family: "open_sansextrabold";
- src: url("fonts/opensans-800-webfont.eot");
- src: url("fonts/opensans-800-webfont.eot?#iefix") format("embedded-opentype"),
- url("fonts/opensans-800-webfont.woff") format("woff"),
- url("fonts/opensans-800-webfont.ttf") format("truetype"),
- url("fonts/opensans-800-webfont.svg#open_sansextrabold") format("svg");
-}
-
-/*********** General Rules ************/
-
-* {
- margin: 0;
- padding: 0;
- list-style: none;
- vertical-align: baseline;
-}
-
-body {
- background-color: #fff;
- color: #172738;
- font-size: 12px;
- font-family: "open_sansregular", Arial, Helvetica, sans-serif;
-}
-
-* :link,:visited {
- text-decoration: none;
-}
-
-* ul,ol {
- list-style: none;
-}
-
-* h1,h2,h3,h4,h5,h6 {
- color: inherit;
- font-family: Arial;
- font-weight: 700;
- margin-top: 20px;
- margin-bottom: 10px;
-}
-
-* h1{
- font-size: 34px;
- line-height: 37px;
-}
-
-* h2{
- font-size: 22px;
- line-height: 21px;
-}
-
-* h3{
- font-size: 18px;
- line-height: 21px;
-}
-
-* h4,h5,h6 {
- font-size: 16px;
- line-height: 21px;
-}
-
-#content h1, #content h2, #content h3, #content h4, #content h5, #content h6{
- margin-top: 20px;
- margin-bottom: 10px;
- color: inherit;
- font-family: Arial;
- font-weight: 700;
-}
-
-#content h1{
- font-size: 34px;
- line-height: 37px;
-}
-
-#content h2{
- font-size: 22px;
- line-height: 21px;
-}
-
-#content h3{
- font-size: 18px;
- line-height: 21px;
- font-weight: 700;
-}
-
-#content h4, content h5, #content h6{
- font-size: 16px;
- line-height: 21px;
-}
-
-p{
- margin: 0px 0px 10px 0px;
- line-height: 21px;
- font-size: 15px;
-}
-
-
-* a img,:link img,:visited img{
- border: none
-}
-
-a{
- outline: none;
-}
-a:link, #content a:link, dl.portlet a:link{
- color: #172738;
-}
-
-a:visited, #content a:visited, dl.portlet a:visited{
- color:#172738;
-}
-
-a:focus{
- outline: 2px solid #f1ca7f;
-}
-
-/* Remove in all td gray backgroung hover */
-tr:hover td{
- background-color: transparent;
-}
-
-#content a:hover, dl.portlet a:hover{
- color: #000;
-}
-
-table{
- border-spacing: 0;
-}
-
-img{
- vertical-align: text-bottom;
-}
-
-iframe{
- border-width: 0; border-style:none;
-}
-
-
diff --git a/theme.js b/theme.js
deleted file mode 100644
index 3ef8426..0000000
--- a/theme.js
+++ /dev/null
@@ -1,280 +0,0 @@
-function alignBlocks(containerIndex){
- //Needed to save the original reference to jQuery(this)
- jt = jQuery(this);
- longerBlock = 0;
- jt.find(".block-outer").each(function () {
- if(jQuery(this).height() > longerBlock)
- longerBlock = jQuery(this).height();
- });
-
- jt.find("#block-48504 .block-inner-2").height(492);
- jt.find("#block-55304 .block-inner-2").height(378);
-
- //Aligns the blocks in the most common situations
- jt.find(".block-outer").height(longerBlock);
- //Only used for blocks with video, since it uses the size of the iframe
- if(jt.find("iframe").length > 0){
- jt.find(".block-inner-1 .block-inner-2").each(function (idx) {
- if(idx==2){
- jQuery(this).height(jt.find("iframe").height());
- }
- });
- }
-}
-
-(function($) {
- // Run code
- if($.cookie("high_contrast") === 'true'){
- $( "body" ).toggleClass( "contraste" );
- }
- $( "#siteaction-contraste a" ).click(function() {
- $( "body" ).toggleClass( "contraste" );
- if($('body').hasClass('contraste')){
- $.cookie('high_contrast', 'true', {path: '/'});
- } else {
- $.cookie('high_contrast', null, { path: '/' });
- }
- });
-
- $( ".profile-image" ).prepend( " " );
- //insere a mensagem no bloco de trilhas na página inicial//
- $( ".action-home-index #content .community-track-plugin_track-card-list-block .track_list" ).prepend( "Construa seu caminho de participação na elaboração de políticas públicas... " );
- //insere a mensagem no bloco de comunidades na página inicial//
- $( ".action-home-index #content .communities-block .block-inner-2>div" ).prepend( "Participe dos dialogos entre governo e sociedade em comunidades temáticas... " );
- $( ".action-home-index #content .communities-block .block-inner-2>div.block-footer-content .msg_block" ).remove();
- $('.container-block-plugin_container-block').each(alignBlocks);
-
- $('#block-48500 > .block-inner-1 > .block-inner-2').append('');
-
-
-
-// Foco no botao de busca
-
-$('#link-buscar').click(function(e) {
- e.preventDefault();
- window.location.hash = '#portal-searchbox';
- $('.searchField').focus()
-})
-
-})(jQuery);
-
-
-// Efeito Fade nos box de softwares
-
-(function($){
- "use strict";// Make javascript less intolerant to errors
-
- var TRANSITION_TIME = 250;// milliseconds
-
-
- function show_finality() {
- var finality = $(this).children(".software-block-finality");
-
- //finality.stop().fadeTo(TRANSITION_TIME,1);
- finality.stop().fadeTo('fast', 1);
- //finality.stop().animate({"top" : "0%"}, TRANSITION_TIME);
- }
-
- function hide_finality() {
- var finality = $(this).children(".software-block-finality");
-
- //finality.stop().fadeTo(TRANSITION_TIME,0);
- finality.stop().fadeTo('fast', 0);
- //finality.stop().animate({"top" : "100%"}, TRANSITION_TIME);
- }
-
- function move_article_buttons(){
- var article_actions = $('#article-actions').clone();
- var report = $('.report-abuse-action').remove();
- var suggest = $('.icon-suggest').remove();
-
-
- $(article_actions).find('.icon-edit, .icon-new, .icon-delete, .icon-locale').remove();
- $('.article-body').append(article_actions);
- }
-
- function add_link_to_article_div(){
- var list = $('.display-content-block').find('li');
-
- list.each(function(){
- var link = $(this).find('.title').find('a').attr('href');
- var text = $(this).find('.lead').find('p').text();
- var leadLink = $(' ');
-
- leadLink.attr('href', link);
- leadLink.text(text);
-
- $(this).find('.lead').html(leadLink);
- });
- }
-
- function insert_notice_div(){
- var notice = $('.display-content-block').find('li');
- notice.each(function(){
- var $set = $(this).children();
- for(var i=1, len = $set.length; i < len; i+=5){
- $set.slice(i, i+5).wrapAll('
');
- }
- for(var i=2, len = $set.length; i < len; i+=3){
- $set.slice(i, i+3).wrapAll('
');
- }
- //$('
').wrap($(this).find( '.image', '.title', '.lead', '.read_more'));
- });
-
- }
-
- //toggle filter options in catalog page
- function setFilterCategoriesOptionClass() {
- var filterOptions = $("#filter-categories-option");
- filterOptions.addClass("animated slideInDown");
- }
-
- function toggleFilterOptions(){
- var filterOptions = $("#filter-categories-option");
- var filterHeight = filterOptions[0].scrollHeight;
- var showOptions = $("#filter-option-catalog-software");
- var hideOptions = $("#filter-option-catalog-close");
- if(hideOptions.is(":visible")){
- //filterOptions.slideUp(function() {
- showOptions.show();
- hideOptions.hide();
- //});
- filterOptions.animate({
- height: 0
- },500);
- }
- else {
- showOptions.hide();
- hideOptions.show();
- filterOptions.animate({
- height: filterHeight
- },500);
- }
- }
-
- function setEvents(){
- // Fade css
- $('.software-block-finality').css('opacity', 0);
- $('.software-block-finality').css('top', 0);
- // End Fade CSS
- $(".software-block").mouseover(show_finality);
- $(".software-block").mouseout(hide_finality);
-
- var showOptions = $("#filter-option-catalog-software");
- var hideOptions = $("#filter-option-catalog-close");
- showOptions.click(toggleFilterOptions);
- hideOptions.click(toggleFilterOptions);
- }
-
- /* Finds all uploaded files from manuals page and sets its names on the right format */
- function set_uploaded_files_names() {
- try {
- var article = document.getElementById('article');
- var folderList = article.getElementsByClassName('folder-content')[0];
- var folderItens = folderList.getElementsByClassName('item-description');
-
- for(var i = 0; i < folderItens.length; i++) {
- split_file_extension(folderItens[i].getElementsByTagName('a')[0]);
- }
- } catch(e) {
-
- }
- }
-
- /* Splits a file name from its extension. Example: example.pdf becomes example - PDF */
- function split_file_extension(element) {
- var tokens = element.innerHTML.split('.');
- if(tokens.length == 2) {
- var fileName = tokens[0];
- var fileExtension = tokens[1].toUpperCase();
- element.innerHTML = fileName + " - " + fileExtension;
- }
- }
-
- function set_tooltip_content() {
- $('.star-tooltip').html("?");
- }
-
- // TODO: fix calls for this function below
- // TODO: comments-additional-information --> comments-display-fields
- function set_arrow_direction() {
- var additional_data_bar = $('.comments-display-fields');
- var arrow = $('.comments-arrow-down');
- var state = 0;
- additional_data_bar.on('click', function() {
- animateExtraFields();
- });
- }
-
- function animateExtraFields() {
- var additional_data_bar = $('.comments-display-fields');
- var arrow = ($('.comments-arrow-down')[0])? $('.comments-arrow-down') : $('.comments-arrow-up');
- console.log(arrow);
- var fields = $('.comments-software-extra-fields');
- if(fields) {
- var innerHeight = fields[0].offsetHeight;
- if(fields.height()!==0) {
- arrow.attr('class', "comments-arrow-down");
- fields.animate({height: 0});
- }
- else {
- arrow.attr('class', "comments-arrow-up");
- fields.animate({height: 140});
- }
- }
- }
-
- function set_use_report_content() {
- $('.make-report-block .make-report-container .button-bar a span').html('avaliar o software');
- $('.make-report-block .make-report-container .make-report-message').html('Relate sua experiência ou do órgão/empresa com relação ao software.');
- $('.ratings-list .see-more a.icon-arrow-right-p').html('veja todos os relatos');
- $('.main-content .star-rate-data .star-rate-form .star-comment-container .button-bar input').attr('value', 'enviar relato');
- $('.main-content .star-rate-data .star-rate-form .star-rate-text').html('Avalie o software');
- $('.main-content .star-rate-data .star-rate-form .star-comment-container .formlabel').html('Depoimento sobre o software');
- $('.star-rate-form .star-comment-container .comments-display-fields span#comments-additional-information').html('Dados adicionais (órgãos e empresas)');
- $('.star-rate-form .star-comment-container .comments-software-extra-fields #input_institution_comments label').html('Nome do órgão ou empresa');
- $('.star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-people-benefited label').html('Número de beneficiados');
- $('.star-rate-form .star-comment-container .comments-software-extra-fields .comments-software-saved-values label').html('Recursos economizados');
- }
-
- function add_tooltips(){
- $('#content span[title]').attr("data-toggle","tooltip");
-
- $('[data-toggle="tooltip"]').tooltip();
- }
-
- function add_popovers() {
- var span = $('span[data-toggle="popover"]');
- var place = span.attr("data-placement");
- var elementClass = span.attr("data-class");
- if(span){
- var popover = span.popover({
- html:true,
- placement: place,
- content: function() {
- return $(this).next().html();
- }
- })
- .data('bs.popover');
- }
- if(popover) {
- popover.tip()
- .addClass(elementClass);
- $('a.toggle-popover').on("click",function() {
- span.trigger("click");
- });
- }
- }
-
- $(document).ready(function(){
- add_tooltips();
- add_popovers();
- move_article_buttons();
- insert_notice_div();
- set_uploaded_files_names();
- set_tooltip_content();
- set_arrow_direction();
- set_use_report_content();
- setEvents();
- });
-})(jQuery);
diff --git a/theme.yml b/theme.yml
deleted file mode 100644
index f5721f4..0000000
--- a/theme.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-name: "Software Público"
-layout: "application-ng"
--
libgit2 0.21.2
--
- Flickr
-
- -
- Facebook
-
- -
- Youtube
-
- -
- Twitter
-
-
-