@ -0,0 +1,137 @@ |
|||||
|
<?php |
||||
|
// This file is part of Moodle - http://moodle.org/ |
||||
|
// |
||||
|
// Moodle is free software: you can redistribute it and/or modify |
||||
|
// it under the terms of the GNU General Public License as published by |
||||
|
// the Free Software Foundation, either version 3 of the License, or |
||||
|
// (at your option) any later version. |
||||
|
// |
||||
|
// Moodle is distributed in the hope that it will be useful, |
||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
// GNU General Public License for more details. |
||||
|
// |
||||
|
// You should have received a copy of the GNU General Public License |
||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
||||
|
|
||||
|
/** |
||||
|
* A one column layout for the ilb theme. |
||||
|
* |
||||
|
* @package theme_ilb |
||||
|
* @copyright 2016 Damyon Wiese |
||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
||||
|
*/ |
||||
|
|
||||
|
defined('MOODLE_INTERNAL') || die(); |
||||
|
|
||||
|
require_once($CFG->libdir . '/../config.php'); |
||||
|
|
||||
|
if (isloggedin()) { |
||||
|
user_preference_allow_ajax_update('drawer-open-nav', PARAM_ALPHA); |
||||
|
require_once($CFG->libdir . '/behat/lib.php'); |
||||
|
|
||||
|
$navdraweropen = (get_user_preferences('drawer-open-nav', 'true') == 'true'); |
||||
|
$extraclasses = []; |
||||
|
if ($navdraweropen) { |
||||
|
$extraclasses[] = 'drawer-open-left'; |
||||
|
} |
||||
|
//$bodyattributes = $OUTPUT->body_attributes($extraclasses); |
||||
|
$blockshtml = $OUTPUT->blocks('side-pre'); |
||||
|
$hasblocks = strpos($blockshtml, 'data-block=') !== false; |
||||
|
$regionmainsettingsmenu = $OUTPUT->region_main_settings_menu(); |
||||
|
|
||||
|
//$user_picture = false; |
||||
|
//if ($user->picture) { |
||||
|
//$user_picture = get_file_url($USER->id.'/'.$size['large'].'.jpg', null, 'user'); |
||||
|
//} |
||||
|
global $USER,$PAGE; |
||||
|
$user_picture=new user_picture($USER); |
||||
|
$user_picture_url=$user_picture->get_url($PAGE); |
||||
|
$user_profile_url=$CFG->wwwroot . "/user/profile.php?id=" . $USER->id . "&course=1"; |
||||
|
|
||||
|
|
||||
|
switch($USER->profile['situacaoaluno']) |
||||
|
{ |
||||
|
case '1': |
||||
|
$cpf1 = 'cpf1'; |
||||
|
break; |
||||
|
case '2': |
||||
|
$cpf2 = 'cpf2'; |
||||
|
break; |
||||
|
case '3': |
||||
|
$cpf3 = 'cpf3'; |
||||
|
break; |
||||
|
} |
||||
|
|
||||
|
$templatecontext = [ |
||||
|
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), |
||||
|
'output' => $OUTPUT, |
||||
|
'projetos_especiais' => $OUTPUT->image_url('projetos_especiais', 'theme'), |
||||
|
'conheca-senado' => $OUTPUT->image_url('conheca-senado', 'theme'), |
||||
|
'Cursos-on-line-sem-tutor' => $OUTPUT->image_url('Cursos-on-line-sem-tutor', 'theme'), |
||||
|
'Cursos-on-line' => $OUTPUT->image_url('Cursos-on-line', 'theme'), |
||||
|
'formacao_interna' => $OUTPUT->image_url('formacao_interna', 'theme'), |
||||
|
'oficinas-interlegis' => $OUTPUT->image_url('oficinas-interlegis', 'theme'), |
||||
|
'pos-graduacao' => $OUTPUT->image_url('pos-graduacao', 'theme'), |
||||
|
'video-aula' => $OUTPUT->image_url('video-aula', 'theme'), |
||||
|
'icon_ContatoEmail-azul' => $OUTPUT->image_url('icon_ContatoEmail-azul', 'theme'), |
||||
|
'icon_ContatoFone-azul' => $OUTPUT->image_url('icon_ContatoFone-azul', 'theme'), |
||||
|
'fundo-c' => $OUTPUT->image_url('fundo-c', 'theme'), |
||||
|
'matricula_aberta' => $OUTPUT->image_url('matricula_aberta', 'theme'), |
||||
|
'matricula_aberta_verde' => $OUTPUT->image_url('matricula_aberta_verde', 'theme'), |
||||
|
'matricula_encerrada' => $OUTPUT->image_url('matricula_encerrada', 'theme'), |
||||
|
'matricula_encerrada_vermelha' => $OUTPUT->image_url('matricula_encerrada_vermelho', 'theme'), |
||||
|
'logo_saberes_xl' => $OUTPUT->image_url('logo_saberes_xl', 'theme'), |
||||
|
'sidepreblocks' => $blockshtml, |
||||
|
'hasblocks' => $hasblocks, |
||||
|
'bodyattributes' => $bodyattributes, |
||||
|
'navdraweropen' => $navdraweropen, |
||||
|
'regionmainsettingsmenu' => $regionmainsettingsmenu, |
||||
|
'hasregionmainsettingsmenu' => !empty($regionmainsettingsmenu), |
||||
|
'username' => $USER->username, |
||||
|
'firstname' => $USER->firstname, |
||||
|
'lastname' => $USER->lastname, |
||||
|
'sessKey' => $USER->sesskey, |
||||
|
'cpf1' => $cpf1, |
||||
|
'cpf2' => $cpf2, |
||||
|
'cpf3' => $cpf3, |
||||
|
'loginChangeNotification' => false, |
||||
|
'moodle_url' => $CFG->wwwroot, |
||||
|
'userpictureurl' => $user_picture_url, |
||||
|
'userprofileurl' => $user_profile_url, |
||||
|
]; |
||||
|
|
||||
|
$templatecontext['flatnavigation'] = $PAGE->flatnav; |
||||
|
|
||||
|
echo $OUTPUT->render_from_template('theme_ilb/frontpage_ilblogado', $templatecontext); |
||||
|
|
||||
|
} else { |
||||
|
$bodyattributes = $OUTPUT->body_attributes([]); |
||||
|
|
||||
|
$templatecontext = [ |
||||
|
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), |
||||
|
'projetos_especiais' => $OUTPUT->image_url('projetos_especiais', 'theme'), |
||||
|
'conheca-senado' => $OUTPUT->image_url('conheca-senado', 'theme'), |
||||
|
'Cursos-on-line-sem-tutor' => $OUTPUT->image_url('Cursos-on-line-sem-tutor', 'theme'), |
||||
|
'Cursos-on-line' => $OUTPUT->image_url('Cursos-on-line', 'theme'), |
||||
|
'formacao_interna' => $OUTPUT->image_url('formacao_interna', 'theme'), |
||||
|
'oficinas-interlegis' => $OUTPUT->image_url('oficinas-interlegis', 'theme'), |
||||
|
'pos-graduacao' => $OUTPUT->image_url('pos-graduacao', 'theme'), |
||||
|
'video-aula' => $OUTPUT->image_url('video-aula', 'theme'), |
||||
|
'fundo-c' => $OUTPUT->image_url('fundo-c', 'theme'), |
||||
|
'matricula_aberta' => $OUTPUT->image_url('matricula_aberta', 'theme'), |
||||
|
'matricula_aberta_verde' => $OUTPUT->image_url('matricula_aberta_verde', 'theme'), |
||||
|
'matricula_encerrada' => $OUTPUT->image_url('matricula_encerrada', 'theme'), |
||||
|
'matricula_encerrada_vermelha' => $OUTPUT->image_url('matricula_encerrada_vermelho', 'theme'), |
||||
|
'icon_ContatoEmail-azul' => $OUTPUT->image_url('icon_ContatoEmail-azul', 'theme'), |
||||
|
'icon_ContatoFone-azul' => $OUTPUT->image_url('icon_ContatoFone-azul', 'theme'), |
||||
|
'logo_saberes_xl' => $OUTPUT->image_url('logo_saberes_xl', 'theme'), |
||||
|
'output' => $OUTPUT, |
||||
|
'bodyattributes' => $bodyattributes, |
||||
|
'moodle_url' => $CFG->wwwroot |
||||
|
]; |
||||
|
|
||||
|
|
||||
|
|
||||
|
echo $OUTPUT->render_from_template('theme_ilb/frontpage_ilblogado', $templatecontext); |
||||
|
} |
@ -0,0 +1,40 @@ |
|||||
|
<?php |
||||
|
// This file is part of Moodle - http://moodle.org/ |
||||
|
// |
||||
|
// Moodle is free software: you can redistribute it and/or modify |
||||
|
// it under the terms of the GNU General Public License as published by |
||||
|
// the Free Software Foundation, either version 3 of the License, or |
||||
|
// (at your option) any later version. |
||||
|
// |
||||
|
// Moodle is distributed in the hope that it will be useful, |
||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
// GNU General Public License for more details. |
||||
|
// |
||||
|
// You should have received a copy of the GNU General Public License |
||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
||||
|
|
||||
|
/** |
||||
|
* A one column layout for the ilb theme. |
||||
|
* |
||||
|
* @package theme_ilb |
||||
|
* @copyright 2016 Damyon Wiese |
||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
||||
|
*/ |
||||
|
|
||||
|
defined('MOODLE_INTERNAL') || die(); |
||||
|
|
||||
|
require_once($CFG->libdir . '/../config.php'); |
||||
|
|
||||
|
$bodyattributes = $OUTPUT->body_attributes([]); |
||||
|
|
||||
|
$templatecontext = [ |
||||
|
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), |
||||
|
'output' => $OUTPUT, |
||||
|
'favicon' => $OUTPUT->image_url('favicon', 'theme'), |
||||
|
'bodyattributes' => $bodyattributes, |
||||
|
'moodle_url' => $CFG->wwwroot |
||||
|
]; |
||||
|
|
||||
|
echo $OUTPUT->render_from_template('theme_ilb/head', $templatecontext); |
||||
|
|
@ -0,0 +1,40 @@ |
|||||
|
<?php |
||||
|
// This file is part of Moodle - http://moodle.org/ |
||||
|
// |
||||
|
// Moodle is free software: you can redistribute it and/or modify |
||||
|
// it under the terms of the GNU General Public License as published by |
||||
|
// the Free Software Foundation, either version 3 of the License, or |
||||
|
// (at your option) any later version. |
||||
|
// |
||||
|
// Moodle is distributed in the hope that it will be useful, |
||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
// GNU General Public License for more details. |
||||
|
// |
||||
|
// You should have received a copy of the GNU General Public License |
||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
||||
|
|
||||
|
/** |
||||
|
* A one column layout for the ilb theme. |
||||
|
* |
||||
|
* @package theme_ilb |
||||
|
* @copyright 2016 Damyon Wiese |
||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
||||
|
*/ |
||||
|
|
||||
|
defined('MOODLE_INTERNAL') || die(); |
||||
|
|
||||
|
require_once($CFG->libdir . '/../config.php'); |
||||
|
|
||||
|
$bodyattributes = $OUTPUT->body_attributes([]); |
||||
|
|
||||
|
$templatecontext = [ |
||||
|
'sitename' => format_string($SITE->shortname, true, ['context' => context_course::instance(SITEID), "escape" => false]), |
||||
|
'output' => $OUTPUT, |
||||
|
'favicon' => $OUTPUT->image_url('favicon', 'theme'), |
||||
|
'bodyattributes' => $bodyattributes, |
||||
|
'moodle_url' => $CFG->wwwroot |
||||
|
]; |
||||
|
|
||||
|
echo $OUTPUT->render_from_template('theme_ilb/head2', $templatecontext); |
||||
|
|
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 642 B |
After Width: | Height: | Size: 790 B |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 50 KiB |
@ -0,0 +1,425 @@ |
|||||
|
|
||||
|
/* - at.kss - */ |
||||
|
/* http://www12.senado.leg.br/hpsenado/portal_kss/at.kss?original=1 */ |
||||
|
/* */ |
||||
|
input.blurrable:blur, |
||||
|
select.blurrable:blur, |
||||
|
textarea.blurrable:blur { |
||||
|
action-server: kssValidateField; |
||||
|
kssValidateField-fieldname: kssAttr('atfieldname', true); |
||||
|
kssValidateField-value: currentFormVar(); |
||||
|
kssValidateField-uid: kssAttr('atuid', true); |
||||
|
} |
||||
|
form[action=criterion_edit_form] input.blurrable:blur, |
||||
|
form[action=criterion_edit_form] select.blurrable:blur, |
||||
|
form[action=criterion_edit_form] textarea.blurrable:blur { |
||||
|
action-cancel: kssValidateField; |
||||
|
} |
||||
|
.inlineEditable:click { |
||||
|
evt-click-allowbubbling: true; |
||||
|
action-server: replaceField; |
||||
|
replaceField-fieldname: kssAttr('atfieldname', true); |
||||
|
replaceField-macro: kssAttr('macro', true); |
||||
|
replaceField-templateId: kssAttr('templateId', true); |
||||
|
replaceField-uid: kssAttr('atuid', true); |
||||
|
replaceField-target: kssAttr('target', true); |
||||
|
replaceField-edit: true; |
||||
|
} |
||||
|
form.inlineForm input[name=kss-save]:click { |
||||
|
evt-click-preventdefault: true; |
||||
|
action-server: saveField; |
||||
|
saveField-fieldname: kssAttr('atfieldname', true); |
||||
|
saveField-kssSubmitForm: currentForm(); |
||||
|
saveField-macro: kssAttr('macro', true); |
||||
|
saveField-templateId: kssAttr('templateId', true); |
||||
|
saveField-uid: kssAttr('atuid', true); |
||||
|
saveField-target: kssAttr('target', true); |
||||
|
} |
||||
|
/* */ |
||||
|
form.inlineForm input[name=kss-cancel]:click { |
||||
|
evt-click-preventdefault: true; |
||||
|
action-server: replaceWithView; |
||||
|
replaceWithView-fieldname: kssAttr('atfieldname', true); |
||||
|
replaceWithView-macro: kssAttr('macro', true); |
||||
|
replaceWithView-templateId: kssAttr('templateId', true); |
||||
|
replaceWithView-uid: kssAttr('atuid', true); |
||||
|
replaceWithView-target: kssAttr('target', true); |
||||
|
replaceWithView-edit: true; |
||||
|
} |
||||
|
form.inlineForm input.blurrable:keypress(inlineescape), |
||||
|
form.inlineForm select.blurrable:keypress(inlineescape), |
||||
|
form.inlineForm textarea.blurrable:keypress(inlineescape) { |
||||
|
evt-keypress-keycodes: '27'; |
||||
|
action-server: replaceWithView; |
||||
|
replaceWithView-fieldname: kssAttr('atfieldname', true); |
||||
|
replaceWithView-macro: kssAttr('macro', true); |
||||
|
replaceWithView-templateId: kssAttr('templateId', true); |
||||
|
replaceWithView-uid: kssAttr('atuid', true); |
||||
|
replaceWithView-target: kssAttr('target', true); |
||||
|
replaceWithView-edit: true; |
||||
|
} |
||||
|
/* */ |
||||
|
form.inlineForm input[type="text"].blurrable:keydown, |
||||
|
form.inlineForm input[type="text"].blurrable:keypress { |
||||
|
evt-keydown-preventdefault: true; |
||||
|
evt-keydown-keycodes: 13; |
||||
|
evt-keypress-preventdefault: true; |
||||
|
evt-keypress-keycodes: 13; |
||||
|
} |
||||
|
form.inlineForm input[type="text"].blurrable:keyup { |
||||
|
evt-keyup-preventdefault: true; |
||||
|
evt-keyup-keycodes: 13; |
||||
|
action-client: log; |
||||
|
action-server: saveField; |
||||
|
saveField-fieldname: kssAttr('atfieldname', true); |
||||
|
saveField-kssSubmitForm: currentForm(); |
||||
|
saveField-macro: kssAttr('macro', true); |
||||
|
saveField-templateId: kssAttr('templateId', true); |
||||
|
saveField-uid: kssAttr('atuid', true); |
||||
|
saveField-target: kssAttr('target', true); |
||||
|
} |
||||
|
.inlineEditable a:click { |
||||
|
evt-click-preventbubbling: true; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
/* - plone.kss - */ |
||||
|
/* http://www12.senado.leg.br/hpsenado/portal_kss/plone.kss?original=1 */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
body:load { |
||||
|
action-client: addClass; |
||||
|
addClass-value: kssActive; |
||||
|
} |
||||
|
ul.contentViews li a:plone-formProtectionChecked { |
||||
|
action-server: replaceContentRegion; |
||||
|
replaceContentRegion-tabid: nodeAttr(id, true); |
||||
|
replaceContentRegion-url: nodeAttr(href); |
||||
|
replaceContentRegion-error: plone-followLink; |
||||
|
action-client: plone-removeLockProtection; |
||||
|
} |
||||
|
iframe.kupu-editor-iframe:load { |
||||
|
action-client: plone-initKupu; |
||||
|
} |
||||
|
#content:load { |
||||
|
evt-load-initial: false; |
||||
|
action-client: initializeCollapsible; |
||||
|
} |
||||
|
#content .inlineEditable:load { |
||||
|
evt-load-initial: false; |
||||
|
action-client: bindExternalLinks; |
||||
|
} |
||||
|
/* */ |
||||
|
div.portlet-deferred:load { |
||||
|
action-server: refreshPortlet; |
||||
|
refreshPortlet-portlethash: kssAttr(portlethash, True); |
||||
|
} |
||||
|
#contentActionMenus:load { |
||||
|
evt-load-initial: false; |
||||
|
action-client: bindActionMenus; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
#contextSetDefaultPage:click { |
||||
|
evt-click-preventdefault: False; |
||||
|
action-cancel: changeViewTemplate; |
||||
|
} |
||||
|
#folderChangeDefaultPage:click { |
||||
|
evt-click-preventdefault: False; |
||||
|
action-cancel: changeViewTemplate; |
||||
|
} |
||||
|
/* */ |
||||
|
a.actionicon-object_buttons-cut:click { |
||||
|
evt-click-preventdefault: True; |
||||
|
evt-click-allowbubbling: True; |
||||
|
action-server: cutObject; |
||||
|
} |
||||
|
a.actionicon-object_buttons-copy:click { |
||||
|
evt-click-preventdefault: True; |
||||
|
evt-click-allowbubbling: True; |
||||
|
action-server: copyObject; |
||||
|
} |
||||
|
#plone-contentmenu-workflow dd.actionMenuContent a:click { |
||||
|
evt-click-preventdefault: True; |
||||
|
evt-click-allowbubbling: True; |
||||
|
action-server: changeWorkflowState; |
||||
|
changeWorkflowState-url: nodeAttr(href); |
||||
|
} |
||||
|
#plone-contentmenu-workflow dd.actionMenuContent a.kssIgnore:click { |
||||
|
evt-click-preventdefault: False; |
||||
|
action-cancel: changeWorkflowState; |
||||
|
} |
||||
|
a.kssCalendarChange:click { |
||||
|
evt-click-preventdefault: true; |
||||
|
action-server: refreshCalendar; |
||||
|
refreshCalendar-portlethash: kssAttr(portlethash, True); |
||||
|
refreshCalendar-year: kssAttr(year); |
||||
|
refreshCalendar-month: kssAttr(month); |
||||
|
} |
||||
|
/* */ |
||||
|
#kss-spinner:spinneron { |
||||
|
action-client: setStyle; |
||||
|
setStyle-name: display; |
||||
|
setStyle-value: block; |
||||
|
} |
||||
|
#kss-spinner:spinneroff { |
||||
|
action-client: setStyle; |
||||
|
setStyle-name: display; |
||||
|
setStyle-value: none; |
||||
|
} |
||||
|
form.enableFormTabbing:load { |
||||
|
evt-load-initial: false; |
||||
|
action-client: plone-initFormTabs; |
||||
|
} |
||||
|
form.enableUnloadProtection:load { |
||||
|
evt-load-initial: false; |
||||
|
action-client: plone-initFormProtection; |
||||
|
} |
||||
|
form.enableUnlockProtection:load { |
||||
|
evt-load-initial: false; |
||||
|
action-client: plone-initLockingProtection; |
||||
|
} |
||||
|
/* */ |
||||
|
div.inlineEditable:load { |
||||
|
evt-load-initial: false; |
||||
|
action-client: plone-removeLockProtection; |
||||
|
} |
||||
|
#sharing-save-button:click { |
||||
|
evt-click-preventdefault: true; |
||||
|
action-server: updateSharingInfo; |
||||
|
updateSharingInfo-kssSubmitForm: currentForm(); |
||||
|
updateSharingInfo-error: plone-submitCurrentForm; |
||||
|
} |
||||
|
#sharing-user-group-search:keydown { |
||||
|
evt-keydown-preventdefault: true; |
||||
|
evt-keydown-keycodes: 13; |
||||
|
action-client: log; |
||||
|
} |
||||
|
#sharing-user-group-search:keypress { |
||||
|
evt-keypress-preventdefault: true; |
||||
|
evt-keypress-keycodes: 13; |
||||
|
action-client: log; |
||||
|
} |
||||
|
#sharing-user-group-search:keyup { |
||||
|
evt-keyup-preventdefault: true; |
||||
|
evt-keyup-keycodes: 13; |
||||
|
action-server: updateSharingInfo; |
||||
|
updateSharingInfo-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
/* */ |
||||
|
#kupu-save-button:load { |
||||
|
action-client: setStyle; |
||||
|
setStyle-name: display; |
||||
|
setStyle-value: inline; |
||||
|
} |
||||
|
button.kupu-save:click { |
||||
|
action-server: savekupu; |
||||
|
savekupu-text: currentFormVarFromKssAttr("atfieldname", true); |
||||
|
savekupu-fieldname: kssAttr("atfieldname", true); |
||||
|
} |
||||
|
/* */ |
||||
|
body:load { |
||||
|
action-client: plone-initShiftDetection; |
||||
|
} |
||||
|
#folderlisting-main-table input[type="checkbox"]:change { |
||||
|
action-client: plone-createCheckBoxSelection; |
||||
|
plone-createCheckBoxSelection-group: 'table.listing input[type="checkbox"]'; |
||||
|
} |
||||
|
#folderlisting-main-table input[type="checkbox"]:change { |
||||
|
action-client: toggleClass; |
||||
|
toggleClass-kssSelector: parentnode("table.listing tbody tr"); |
||||
|
toggleClass-classname: "selected"; |
||||
|
} |
||||
|
/* */ |
||||
|
.update-selection:click, #listing-table .column:click { |
||||
|
action-server: update_table url(kssAttr("serveraction", true)); |
||||
|
evt-click-preventdefault: True; |
||||
|
update_table-pagenumber: currentFormVar('pagenumber'); |
||||
|
update_table-show_all: currentFormVar('show_all'); |
||||
|
update_table-sort_on: currentFormVar('sort_on'); |
||||
|
} |
||||
|
#foldercontents-show-batched:click { |
||||
|
update_table-show_all: "false"; |
||||
|
} |
||||
|
#foldercontents-show-all:click { |
||||
|
update_table-show_all: "true"; |
||||
|
update_table-pagenumber: "1"; |
||||
|
} |
||||
|
#foldercontents-title-column:click { |
||||
|
update_table-sort_on: "sortable_title"; |
||||
|
} |
||||
|
#foldercontents-modified-column:click { |
||||
|
update_table-sort_on: "modified"; |
||||
|
} |
||||
|
#foldercontents-status-column:click { |
||||
|
update_table-sort_on: "review_state"; |
||||
|
} |
||||
|
#foldercontents-selectall:click { |
||||
|
update_table-select: 'screen'; |
||||
|
} |
||||
|
#foldercontents-selectall-completebatch:click { |
||||
|
update_table-select: 'all'; |
||||
|
} |
||||
|
#foldercontents-clearselection:click { |
||||
|
update_table-select: 'none'; |
||||
|
} |
||||
|
#folderlisting-main-table:load { |
||||
|
action-client: plone-initDragAndDrop; |
||||
|
plone-initDragAndDrop-table: '#listing-table'; |
||||
|
} |
||||
|
#folderlisting-main-table:load { |
||||
|
action-client: plone-initCheckBoxSelection; |
||||
|
} |
||||
|
/* */ |
||||
|
#kupu-save-button:load { |
||||
|
action-client: setStyle; |
||||
|
setStyle-name: display; |
||||
|
setStyle-value: inline; |
||||
|
} |
||||
|
div.kupu-save-message:timeout { |
||||
|
evt-timeout-delay: 2000; |
||||
|
evt-timeout-repeat: ''; |
||||
|
action-client: deleteNode; |
||||
|
} |
||||
|
#portal-message:timeout { |
||||
|
evt-timeout-delay: 2000; |
||||
|
evt-timeout-repeat: ''; |
||||
|
action-client: deleteNode; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
#lock-icon:load{ |
||||
|
action-server: updateLockInfo; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
/* - ++resource++plone.app.form.kss - */ |
||||
|
/* http://www12.senado.leg.br/hpsenado/portal_kss/++resource++plone.app.form.kss?original=1 */ |
||||
|
.formlibInlineValidation input[type="text"]:blur { |
||||
|
action-server: kss_formlib_inline_validation; |
||||
|
kss_formlib_inline_validation-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_validation-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_validation-value: currentFormVar(); |
||||
|
kss_formlib_inline_validation-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
.formlibInlineValidation input[type="password"]:blur { |
||||
|
action-server: kss_formlib_inline_validation; |
||||
|
kss_formlib_inline_validation-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_validation-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_validation-value: currentFormVar(); |
||||
|
kss_formlib_inline_validation-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
.formlibInlineValidation input[type="checkbox"]:blur { |
||||
|
action-server: kss_formlib_inline_validation; |
||||
|
kss_formlib_inline_validation-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_validation-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_validation-value: currentFormVar(); |
||||
|
kss_formlib_inline_validation-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
.formlibInlineValidation input[type="radio"]:blur { |
||||
|
action-server: kss_formlib_inline_validation; |
||||
|
kss_formlib_inline_validation-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_validation-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_validation-value: currentFormVar(); |
||||
|
kss_formlib_inline_validation-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
.formlibInlineValidation select:blur { |
||||
|
action-server: kss_formlib_inline_validation; |
||||
|
kss_formlib_inline_validation-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_validation-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_validation-value: currentFormVar(); |
||||
|
kss_formlib_inline_validation-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
.formlibInlineValidation textarea:blur { |
||||
|
action-server: kss_formlib_inline_validation; |
||||
|
kss_formlib_inline_validation-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_validation-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_validation-value: currentFormVar(); |
||||
|
kss_formlib_inline_validation-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
/* */ |
||||
|
.formlibInlineEditable:click { |
||||
|
evt-click-allowbubbling: true; |
||||
|
action-server: kss_formlib_inline_edit_begin; |
||||
|
kss_formlib_inline_edit_begin-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_edit_begin-fieldname: kssAttr('fieldname'); |
||||
|
kss_formlib_inline_edit_begin-structure: kssAttr('structure'); |
||||
|
} |
||||
|
.formlibInlineEditable a:click { |
||||
|
evt-click-preventbubbling: true; |
||||
|
} |
||||
|
.formlibInlineEditable form.formlibInlineForm:click { |
||||
|
evt-click-allowbubbling: true; |
||||
|
evt-click-preventbubbling: true; |
||||
|
} |
||||
|
/* */ |
||||
|
form.formlibInlineForm input[type="text"]:keyup { |
||||
|
evt-keyup-preventdefault: true; |
||||
|
evt-keyup-keycodes: 13; |
||||
|
action-server: kss_formlib_inline_edit_save; |
||||
|
kss_formlib_inline_edit_save-kssSubmitForm: currentForm(); |
||||
|
kss_formlib_inline_edit_save-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_edit_save-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_edit_save-structure: kssAttr('structure', true); |
||||
|
} |
||||
|
form.formlibInlineForm input[type="text"]:keydown { |
||||
|
evt-keydown-preventdefault: true; |
||||
|
evt-keydown-keycodes: 13; |
||||
|
action-client: log; |
||||
|
} |
||||
|
form.formlibInlineForm input[type="text"]:keypress { |
||||
|
evt-keypress-preventdefault: true; |
||||
|
evt-keypress-keycodes: 13; |
||||
|
action-client: log; |
||||
|
} |
||||
|
form.formlibInlineForm input[name=kss-save]:click { |
||||
|
evt-click-preventdefault: true; |
||||
|
action-server: kss_formlib_inline_edit_save; |
||||
|
kss_formlib_inline_edit_save-kssSubmitForm: currentForm(); |
||||
|
kss_formlib_inline_edit_save-formname: kssAttr('formname', true); |
||||
|
kss_formlib_inline_edit_save-fieldname: kssAttr('fieldname', true); |
||||
|
kss_formlib_inline_edit_save-structure: kssAttr('structure', true); |
||||
|
} |
||||
|
/* */ |
||||
|
form.formlibInlineForm input:keypress(inlineescape) { |
||||
|
evt-keypress-keycodes: '27'; |
||||
|
action-server: kss_formlib_inline_edit_cancel; |
||||
|
kss_formlib_inline_edit_cancel-fieldname: kssAttr('fieldname', true); |
||||
|
} |
||||
|
form.formlibInlineForm select:keypress(inlineescape) { |
||||
|
evt-keypress-keycodes: '27'; |
||||
|
action-server: kss_formlib_inline_edit_cancel; |
||||
|
kss_formlib_inline_edit_cancel-fieldname: kssAttr('fieldname', true); |
||||
|
} |
||||
|
form.formlibInlineForm textarea:keypress(inlineescape) { |
||||
|
evt-keypress-keycodes: '27'; |
||||
|
action-server: kss_formlib_inline_edit_cancel; |
||||
|
kss_formlib_inline_edit_cancel-fieldname: kssAttr('fieldname', true); |
||||
|
} |
||||
|
form.formlibInlineForm input[name=kss-cancel]:click { |
||||
|
evt-click-preventdefault: true; |
||||
|
action-server: kss_formlib_inline_edit_cancel; |
||||
|
kss_formlib_inline_edit_cancel-fieldname: kssAttr('fieldname', true); |
||||
|
} |
||||
|
|
||||
|
|
||||
|
/* - ++resource++plone.app.z3cform - */ |
||||
|
/* http://www12.senado.leg.br/hpsenado/portal_kss/++resource++plone.app.z3cform?original=1 */ |
||||
|
.z3cformInlineValidation input[type="text"]:blur, |
||||
|
.z3cformInlineValidation input[type="password"]:blur, |
||||
|
.z3cformInlineValidation input[type="checkbox"]:blur, |
||||
|
.z3cformInlineValidation input[type="radio"]:blur, |
||||
|
.z3cformInlineValidation select:blur, |
||||
|
.z3cformInlineValidation textarea:blur { |
||||
|
action-server: kss_z3cform_inline_validation; |
||||
|
kss_z3cform_inline_validation-formname: kssAttr('formname', true); |
||||
|
kss_z3cform_inline_validation-fieldname: kssAttr('fieldname', true); |
||||
|
kss_z3cform_inline_validation-fieldset: kssAttr('fieldset', true); |
||||
|
kss_z3cform_inline_validation-value: currentFormVar(); |
||||
|
kss_z3cform_inline_validation-kssSubmitForm: currentForm(); |
||||
|
} |
||||
|
|
@ -0,0 +1,44 @@ |
|||||
|
/*######################################## |
||||
|
Basic Style |
||||
|
########################################*/ |
||||
|
|
||||
|
.center { |
||||
|
text-align: center; |
||||
|
} |
||||
|
.left { |
||||
|
text-align: left; |
||||
|
} |
||||
|
.right { |
||||
|
text-align: right; |
||||
|
} |
||||
|
.floatleft { |
||||
|
float: left; |
||||
|
} |
||||
|
.floatright { |
||||
|
float: right; |
||||
|
} |
||||
|
.clear { |
||||
|
clear:both; |
||||
|
} |
||||
|
.s-hidden { |
||||
|
visibility: hidden; |
||||
|
} |
||||
|
.nodisplay { |
||||
|
display: none; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
Table |
||||
|
**/ |
||||
|
.table { |
||||
|
display: table; |
||||
|
width: 100%; |
||||
|
} |
||||
|
.tr { |
||||
|
display: table-row; |
||||
|
} |
||||
|
.td { |
||||
|
display: table-cell; |
||||
|
} |
||||
|
|
||||
|
|
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 106 KiB |
@ -0,0 +1,84 @@ |
|||||
|
|
||||
|
/* - ++resource++plone.app.jquerytools.overlays.css - */ |
||||
|
/* http://www12.senado.leg.br/hpsenado/portal_css/++resource++plone.app.jquerytools.overlays.css?original=1 */ |
||||
|
div.overlay { |
||||
|
width: auto; |
||||
|
height: auto; |
||||
|
/* */ |
||||
|
display: none; |
||||
|
/* */ |
||||
|
margin: 1em; |
||||
|
} |
||||
|
div.overlay-iframe, |
||||
|
div.overlay-ajax { |
||||
|
width: 60%; |
||||
|
min-height: 100px; |
||||
|
z-index: 99; /* */ |
||||
|
} |
||||
|
div.overlay-iframe { |
||||
|
height: 60%; |
||||
|
} |
||||
|
/* */ |
||||
|
div.overlaybg div.close, |
||||
|
div.overlay div.close { |
||||
|
background-image: url(++resource++plone.app.jquerytools.pb_close.png); |
||||
|
position: absolute; |
||||
|
left: -14px; |
||||
|
top: -14px; |
||||
|
cursor: pointer; |
||||
|
height: 30px; |
||||
|
width: 30px; |
||||
|
} |
||||
|
.pb-ajax { |
||||
|
overflow-y: auto; |
||||
|
} |
||||
|
.pb-ajax, .pb-image { |
||||
|
background-color: #fff; |
||||
|
border: 1px solid #999; |
||||
|
white-space: normal; |
||||
|
box-shadow: 0 0 3em 0.5em #666; |
||||
|
-moz-box-shadow: 0 0 3em 0.5em #666; |
||||
|
-webkit-box-shadow: 0 0 3em #666; |
||||
|
} |
||||
|
.pb-ajax > div { |
||||
|
width: 92%; |
||||
|
padding: 1em; |
||||
|
} |
||||
|
.pb-ajax .documentActions {display:none} |
||||
|
div.overlay div.close span { |
||||
|
display: block; |
||||
|
height: 1px; |
||||
|
margin: -1px 0 0 -1px; |
||||
|
overflow: hidden; |
||||
|
padding: 0; |
||||
|
width: 1px; |
||||
|
} |
||||
|
div.overlay textarea { width: 100%; } |
||||
|
/* */ |
||||
|
div.overlay .link-parent { display: none; } |
||||
|
div.overlay #createGroup legend { display: none; } |
||||
|
div.overlay #createGroup fieldset { border: none; } |
||||
|
/* */ |
||||
|
div.overlay p { |
||||
|
margin-bottom: 1em; |
||||
|
} |
||||
|
div.overlay label { |
||||
|
margin-bottom: 0.25em; |
||||
|
} |
||||
|
div.overlay a:hover { |
||||
|
color: #75ad0a; |
||||
|
} |
||||
|
div.overlay a.selected { |
||||
|
color: #000000; |
||||
|
} |
||||
|
div.overlay .formTab { |
||||
|
margin-right:1em; |
||||
|
font-weight: bold; |
||||
|
} |
||||
|
div.overlay .formTab.lastFormTab { |
||||
|
margin-right:0em; |
||||
|
} |
||||
|
div.overlay .formControls a { |
||||
|
display: block; |
||||
|
margin: 0.75em; |
||||
|
} |
@ -0,0 +1,134 @@ |
|||||
|
|
||||
|
/* - ++resource++plone.formwidget.autocomplete/jquery.autocomplete.css - */ |
||||
|
@media screen { |
||||
|
/* http://www12.senado.leg.br/hpsenado/portal_css/++resource++plone.formwidget.autocomplete/jquery.autocomplete.css?original=1 */ |
||||
|
.ac_results { |
||||
|
padding: 0px; |
||||
|
border: 1px solid black; |
||||
|
background-color: white; |
||||
|
overflow: hidden; |
||||
|
z-index: 99999; |
||||
|
} |
||||
|
.ac_results ul { |
||||
|
width: 100%; |
||||
|
list-style-position: outside; |
||||
|
list-style: none; |
||||
|
padding: 0; |
||||
|
margin: 0; |
||||
|
} |
||||
|
.ac_results li { |
||||
|
margin: 0px; |
||||
|
padding: 2px 5px; |
||||
|
cursor: default; |
||||
|
display: block; |
||||
|
font: menu; |
||||
|
font-size: 12px; |
||||
|
line-height: 16px; |
||||
|
overflow: hidden; |
||||
|
} |
||||
|
.ac_loading { |
||||
|
background: white url('indicator.gif') right center no-repeat; |
||||
|
} |
||||
|
.ac_odd { |
||||
|
background-color: #eee; |
||||
|
} |
||||
|
.ac_over { |
||||
|
background-color: #0A246A; |
||||
|
color: white; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
|
||||
|
/* - ++resource++plone.formwidget.contenttree/contenttree.css - */ |
||||
|
@media screen { |
||||
|
/* http://www12.senado.leg.br/hpsenado/portal_css/++resource++plone.formwidget.contenttree/contenttree.css?original=1 */ |
||||
|
.contenttreeWidget { |
||||
|
bottom: 3.5em; |
||||
|
height: auto; |
||||
|
left: 0px; |
||||
|
overflow-y: auto; |
||||
|
margin: 0em 1em; |
||||
|
position: absolute; |
||||
|
right: 0px; |
||||
|
top: 6em; |
||||
|
width: auto; |
||||
|
border: 1px solid #8CACBB; |
||||
|
} |
||||
|
.contenttreeWidget li { |
||||
|
display: block; |
||||
|
padding-left: 1em; |
||||
|
} |
||||
|
.contenttreeWidget .navTreeCurrentItem { |
||||
|
font-weight: bold; |
||||
|
} |
||||
|
.contenttreeWidget .navTreeCurrentItem li { |
||||
|
font-weight: normal; |
||||
|
} |
||||
|
.contenttreeWidget li a { |
||||
|
border-bottom: solid 1px transparent; |
||||
|
} |
||||
|
.contenttreeWidget .navTreeItem a { |
||||
|
border: none; |
||||
|
display: block; |
||||
|
text-decoration: none; |
||||
|
padding-top: 0.2em; |
||||
|
padding-bottom: 0.25em; |
||||
|
} |
||||
|
.contenttreeWidget .navTreeItem a:hover { |
||||
|
border: 1px dotted #205C90; |
||||
|
} |
||||
|
.contenttreeWidget li.navTreeCurrentItem { |
||||
|
border: none !important; |
||||
|
background-color: transparent; |
||||
|
} |
||||
|
.contenttreeWidget li.navTreeCurrentItem > a, |
||||
|
.contenttreeWidget li.navTreeCurrentItem > a:hover { |
||||
|
border: none; |
||||
|
background-color: #205C90; |
||||
|
color: #fff !important; |
||||
|
} |
||||
|
/* */ |
||||
|
* html .contentTreeWidget li.navTreeCurrentItem a, |
||||
|
* html .contentTreeWidget li.navTreeCurrentItem a:hover { |
||||
|
height: 1.6em; |
||||
|
} |
||||
|
.contenttreeWindow { |
||||
|
display: none; |
||||
|
position: fixed; |
||||
|
_position: absolute; |
||||
|
background-color: white; |
||||
|
z-index: 100; |
||||
|
} |
||||
|
.contenttreeWindow h2 { |
||||
|
display: block; |
||||
|
top: 0px; |
||||
|
margin: 0px; |
||||
|
} |
||||
|
.contenttreeWindowHeader { |
||||
|
padding: 1em; |
||||
|
} |
||||
|
.contenttreeWindowActions { |
||||
|
position: absolute; |
||||
|
width: 100%; |
||||
|
top: auto; |
||||
|
bottom: 0px; |
||||
|
padding: 1em; |
||||
|
} |
||||
|
.contenttreeWindowBlocker { |
||||
|
z-index: 99; |
||||
|
width: 100%; |
||||
|
height: 100%; |
||||
|
opacity: 0.4; |
||||
|
background-color: black; |
||||
|
top: 0px; |
||||
|
left: 0px; |
||||
|
position: fixed; |
||||
|
_position: absolute; |
||||
|
_top: expression(eval((document.body.scrollTop)?document.body.scrollTop:document.documentElement.scrollTop)); |
||||
|
} |
||||
|
.option { |
||||
|
display: block; |
||||
|
} |
||||
|
} |
||||
|
|
@ -0,0 +1,160 @@ |
|||||
|
|
||||
|
/* - ++resource++static/css/escola-de-governo.css - */ |
||||
|
@media screen { |
||||
|
/* https://www12.senado.leg.br/institucional/portal_css/++resource++static/css/escola-de-governo.css?original=1 */ |
||||
|
.PortalTopo-redes-sociais{ |
||||
|
float: left; |
||||
|
margin-top: 28px; |
||||
|
padding-left: 100px; |
||||
|
} |
||||
|
.portal-search-smart{ |
||||
|
visibility: visible; |
||||
|
} |
||||
|
.portal-search .busca-gsa{ |
||||
|
visibility: visible; |
||||
|
} |
||||
|
.busca-smartphone .busca-gsa{ |
||||
|
visibility: visible; |
||||
|
} |
||||
|
.busca-smartphone .busca-plone{ |
||||
|
visibility: hidden; |
||||
|
} |
||||
|
.painel-corpo ul li{ |
||||
|
border-bottom:dotted 1px #777; |
||||
|
} |
||||
|
.painel-corpo ul li:last-child{ |
||||
|
border-bottom: none; |
||||
|
} |
||||
|
#category { |
||||
|
display: none !important; |
||||
|
} |
||||
|
.carousel-control{ |
||||
|
background:none; |
||||
|
background-image:none !important; |
||||
|
top:364px; |
||||
|
opacity:1; |
||||
|
z-index:1; |
||||
|
} |
||||
|
.carousel-indicators li { |
||||
|
border: 2px solid #999!important; |
||||
|
} |
||||
|
.carousel-caption { |
||||
|
position: relative; |
||||
|
left: auto; |
||||
|
right: auto; |
||||
|
background-color:#eee !important; |
||||
|
opacity:1 !important; |
||||
|
text-shadow:none; |
||||
|
z-index:0; |
||||
|
} |
||||
|
.div-contato{ |
||||
|
border: 1px solid #cdcdcd; |
||||
|
display: inline-block; |
||||
|
padding-left: 13px; |
||||
|
padding-right: 5px; |
||||
|
padding-top: 7px; |
||||
|
padding-bottom: 7px; |
||||
|
margin-top: 10px; |
||||
|
width: 100%; |
||||
|
} |
||||
|
.div-contato-pos{ |
||||
|
border: 1px solid #cdcdcd; |
||||
|
display: inline-block; |
||||
|
padding-left: 13px; |
||||
|
padding-right: 5px; |
||||
|
padding-top: 7px; |
||||
|
padding-bottom: 7px; |
||||
|
margin-top: 10px; |
||||
|
margin-bottom: 24px; |
||||
|
width: 100%; |
||||
|
} |
||||
|
.conteudo-evento{ |
||||
|
border: 1px solid #ccc; |
||||
|
margin-top: 20px; |
||||
|
min-height: 574px; |
||||
|
padding-left:20px; |
||||
|
} |
||||
|
.informacoes-evento{ |
||||
|
margin:23px; |
||||
|
} |
||||
|
.post-it { |
||||
|
margin-bottom: 30px; |
||||
|
min-height: 100px; |
||||
|
padding-top: 10px; |
||||
|
} |
||||
|
.texto-evento { |
||||
|
margin: 6px; |
||||
|
} |
||||
|
.titulo-secao{ |
||||
|
font-size:20px |
||||
|
} |
||||
|
.ullidestaque{ |
||||
|
list-style:none; |
||||
|
font-size: 13px; |
||||
|
padding-bottom: 12px; |
||||
|
margin-top: 12px; |
||||
|
} |
||||
|
#box-enquete{ |
||||
|
margin-top:7px; |
||||
|
} |
||||
|
#slide-home{ |
||||
|
margin-top:10px; |
||||
|
} |
||||
|
.linha-inferior-evento{ |
||||
|
border-bottom:1px dotted #cdcdcd; |
||||
|
padding-top: 75px; |
||||
|
margin-bottom: 10px; |
||||
|
} |
||||
|
.caixa-banner{ |
||||
|
border:1px solid #cdcdcd; padding-top: 20px;padding-left: 20px;padding-right: 10px;min-height:110px; |
||||
|
} |
||||
|
.caixa-banner-ilb{ |
||||
|
border-bottom: 1px dotted #ccc;margin-bottom:20px;padding-bottom:8px; |
||||
|
} |
||||
|
@media (max-width: 480px){ |
||||
|
.linha-inferior-evento{ |
||||
|
padding-top: 115px; |
||||
|
} |
||||
|
.PortalTopo-busca { |
||||
|
width: 100% !important; |
||||
|
} |
||||
|
.PortalTopo-redes-sociais{ |
||||
|
width: 100% !important; |
||||
|
float: left; |
||||
|
margin-top: 10px; |
||||
|
padding-left: 30px; |
||||
|
} |
||||
|
} |
||||
|
@media (min-width: 768px){ |
||||
|
.PortalTopo-id { |
||||
|
width: 42% !important; |
||||
|
} |
||||
|
.PortalTopo-redes-sociais{ |
||||
|
width: 24% !important; |
||||
|
padding-left: 100px; |
||||
|
} |
||||
|
.PortalTopo-busca{ |
||||
|
width: 33% !important; |
||||
|
} |
||||
|
} |
||||
|
@media (min-width: 992px){ |
||||
|
.PortalTopo-id { |
||||
|
width: 50% !important; |
||||
|
} |
||||
|
.PortalTopo-redes-sociais{ |
||||
|
padding-left: 88px; |
||||
|
width: 17% !important; |
||||
|
} |
||||
|
} |
||||
|
@media (min-width: 1200px){ |
||||
|
.PortalTopo-id { |
||||
|
width: 50% !important; |
||||
|
} |
||||
|
.PortalTopo-redes-sociais{ |
||||
|
width: 17% !important; |
||||
|
padding-left: 120px; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
@ -0,0 +1,756 @@ |
|||||
|
|
||||
|
/* - ++resource++static/css/home.css - */ |
||||
|
@media screen { |
||||
|
/* https://www12.senado.leg.br/institucional/portal_css/++resource++static/css/home.css?original=1 */ |
||||
|
.portal-search-smart{ |
||||
|
visibility: visible; |
||||
|
} |
||||
|
.portal-search .busca-gsa{ |
||||
|
visibility: visible; |
||||
|
} |
||||
|
.busca-smartphone .busca-gsa{ |
||||
|
visibility: visible; |
||||
|
} |
||||
|
.busca-smartphone .busca-plone{ |
||||
|
visibility: hidden; |
||||
|
} |
||||
|
.titulo_evento{ |
||||
|
font-weight:normal!important; |
||||
|
} |
||||
|
#slide-home .carousel-caption { |
||||
|
visibility: hidden; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
.btn-group-lg > .btn { |
||||
|
padding: 10px 16px; |
||||
|
font-size: 18px; |
||||
|
line-height: 1.33; |
||||
|
border-radius: 6px; |
||||
|
} |
||||
|
.btn-group-sm > .btn { |
||||
|
padding: 5px 10px; |
||||
|
font-size: 12px; |
||||
|
line-height: 1.5; |
||||
|
border-radius: 3px; |
||||
|
} |
||||
|
.btn-group-xs > .btn { |
||||
|
padding: 1px 5px; |
||||
|
font-size: 12px; |
||||
|
line-height: 1.5; |
||||
|
border-radius: 3px; |
||||
|
} |
||||
|
.dl-horizontal dd:before, |
||||
|
.dl-horizontal dd:after, |
||||
|
.container:before, |
||||
|
.container:after, |
||||
|
.container-fluid:before, |
||||
|
.container-fluid:after, |
||||
|
.row:before, |
||||
|
.row:after, |
||||
|
.form-horizontal .form-group:before, |
||||
|
.form-horizontal .form-group:after, |
||||
|
.btn-toolbar:before, |
||||
|
.btn-toolbar:after, |
||||
|
.btn-group-vertical > .btn-group:before, |
||||
|
.btn-group-vertical > .btn-group:after, |
||||
|
.nav:before, |
||||
|
.nav:after, |
||||
|
.navbar:before, |
||||
|
.navbar:after, |
||||
|
.navbar-header:before, |
||||
|
.navbar-header:after, |
||||
|
.navbar-collapse:before, |
||||
|
.navbar-collapse:after, |
||||
|
.pager:before, |
||||
|
.pager:after, |
||||
|
.panel-body:before, |
||||
|
.panel-body:after, |
||||
|
.modal-footer:before, |
||||
|
.modal-footer:after { |
||||
|
content: " "; |
||||
|
display: table; |
||||
|
} |
||||
|
.dl-horizontal dd:after, |
||||
|
.container:after, |
||||
|
.container-fluid:after, |
||||
|
.row:after, |
||||
|
.form-horizontal .form-group:after, |
||||
|
.btn-toolbar:after, |
||||
|
.btn-group-vertical > .btn-group:after, |
||||
|
.nav:after, |
||||
|
.navbar:after, |
||||
|
.navbar-header:after, |
||||
|
.navbar-collapse:after, |
||||
|
.pager:after, |
||||
|
.panel-body:after, |
||||
|
.modal-footer:after { |
||||
|
clear: both; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
.identificacao-site, |
||||
|
.busca-principal, |
||||
|
.painel-cabecalho { |
||||
|
/* */ |
||||
|
} |
||||
|
.fixMargin { |
||||
|
margin-left: 0 !important; |
||||
|
} |
||||
|
.fixBorder { |
||||
|
border-left: 1px solid #ffffff; |
||||
|
} |
||||
|
.fixLink { |
||||
|
font-size: 14px; |
||||
|
} |
||||
|
/* */ |
||||
|
.conteudoPrincipal { |
||||
|
margin-top: 40px; |
||||
|
} |
||||
|
/* */ |
||||
|
.slider { |
||||
|
margin-bottom: 40px; |
||||
|
} |
||||
|
.slide .box .caixaLogo { |
||||
|
text-align: right; |
||||
|
} |
||||
|
.slide .box .caixaTexto { |
||||
|
height: 85px; |
||||
|
margin-left: 65px; |
||||
|
width: 100%; |
||||
|
} |
||||
|
.slide .box .caixaTexto h2 { |
||||
|
font-size: 24px; |
||||
|
font-weight: bold; |
||||
|
} |
||||
|
.slide .box .caixaTexto p { |
||||
|
font-size: 14px; |
||||
|
} |
||||
|
.compromisso { |
||||
|
margin-bottom: 40px; |
||||
|
border-bottom: 5px solid #ccc; |
||||
|
} |
||||
|
.compromisso h3 { |
||||
|
margin-bottom: 40px; |
||||
|
border-bottom: 1px solid #ccc; |
||||
|
padding-bottom: 10px; |
||||
|
margin-bottom: 30px; |
||||
|
margin-top: 0!important; |
||||
|
} |
||||
|
.compromisso .title { |
||||
|
font-size: 16px; |
||||
|
} |
||||
|
.compromisso .coluna { |
||||
|
padding-bottom: 10px; |
||||
|
max-width: 223px; |
||||
|
min-height: 220px; |
||||
|
} |
||||
|
.compromisso .coluna .sub-title { |
||||
|
font-weight: bold; |
||||
|
margin-top: 10px; |
||||
|
} |
||||
|
.compromisso .coluna p { |
||||
|
margin: 0; |
||||
|
padding: 0; |
||||
|
} |
||||
|
.title { |
||||
|
font-size: 16px; |
||||
|
color:#696969; |
||||
|
} |
||||
|
.thumbs { |
||||
|
/* */ |
||||
|
border-top: 5px solid #ccc; |
||||
|
margin-bottom: 40px; |
||||
|
padding-bottom: 40px; |
||||
|
} |
||||
|
.thumbs .box { |
||||
|
border-top: 1px solid #ccc; |
||||
|
border-bottom: 5px solid #ccc; |
||||
|
padding: 5px 0; |
||||
|
width: 225px; |
||||
|
} |
||||
|
.icones { |
||||
|
margin-bottom: 40px; |
||||
|
} |
||||
|
.icones .col-xs-12 { |
||||
|
margin-bottom: 10px; |
||||
|
} |
||||
|
/* */ |
||||
|
.carrossel-imagem { |
||||
|
width: 100%; |
||||
|
max-height: 450px; |
||||
|
overflow: hidden; |
||||
|
} |
||||
|
/* */ |
||||
|
.carousel-caption h3 { |
||||
|
border-bottom: medium none !important; |
||||
|
padding: 15px; |
||||
|
} |
||||
|
.carousel-caption p{ |
||||
|
display:none!important; |
||||
|
} |
||||
|
#content p, #content table, #content dl, dl.portlet p, dl.portlet { |
||||
|
margin-top: 0!important; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
.carousel-caption h2 { |
||||
|
font-size: 20px; |
||||
|
margin-top: 10px; |
||||
|
line-height: 1.4; |
||||
|
color: #ffffff; |
||||
|
} |
||||
|
.carousel-caption small { |
||||
|
color: #cccccc; |
||||
|
} |
||||
|
.carrossel-setas { |
||||
|
font-size: 80px; |
||||
|
line-height: 200px; |
||||
|
position: absolute; |
||||
|
} |
||||
|
.carrossel-setas.left { |
||||
|
left: 20px; |
||||
|
} |
||||
|
.carrossel-setas.right { |
||||
|
right: 20px; |
||||
|
} |
||||
|
#carrosselDestaques { |
||||
|
margin-bottom: 0px; |
||||
|
} |
||||
|
#carrosselDestaques .carousel-caption { |
||||
|
padding-top: 1px; |
||||
|
padding-bottom: 1px; |
||||
|
position: absolute; |
||||
|
width: 100%; |
||||
|
left: 0; |
||||
|
bottom: 0; |
||||
|
right: 0; |
||||
|
} |
||||
|
#carrosselDestaques .carrossel-imagem img.img-responsive { |
||||
|
width: 100%; |
||||
|
} |
||||
|
#carrosselImagensSenado .carrossel-cabecalho { |
||||
|
position: absolute; |
||||
|
z-index: 7; |
||||
|
top: 10px; |
||||
|
left: 20px; |
||||
|
font-size: 20px; |
||||
|
color: #ffffff; |
||||
|
} |
||||
|
#carrosselImagensSenado .icone-fullscreen { |
||||
|
position: absolute; |
||||
|
z-index: 8; |
||||
|
top: 20px; |
||||
|
right: 20px; |
||||
|
} |
||||
|
#carrosselImagensSenado .icone-fullscreen a { |
||||
|
color: #ffffff; |
||||
|
text-shadow: 1px 1px 1px #333333; |
||||
|
font-size: 20px; |
||||
|
} |
||||
|
#carrosselImagensSenado .carrossel-cabecalho h3 { |
||||
|
color: inherit; |
||||
|
margin-top: 5px; |
||||
|
text-shadow: 1px 1px 1px #333333; |
||||
|
} |
||||
|
/* */ |
||||
|
.lista-itens-separados li { |
||||
|
padding-top: 5px; |
||||
|
padding-bottom: 5px; |
||||
|
border-bottom: dotted 1px #cccccc; |
||||
|
font-size: 12px; |
||||
|
} |
||||
|
.lista-itens-separados li:first-child { |
||||
|
border-top: dotted 1px #cccccc; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
.painel { |
||||
|
margin-bottom: 10px; |
||||
|
background-color: #f5f5f5; |
||||
|
color: #666666; |
||||
|
min-height:355px; |
||||
|
height:auto; |
||||
|
} |
||||
|
.painel a { |
||||
|
color: #3E6892; |
||||
|
} |
||||
|
.painel-corpo li { |
||||
|
padding-top: 5px; |
||||
|
padding-bottom: 5px; |
||||
|
/* */ |
||||
|
font-size: 12px; |
||||
|
} |
||||
|
.painel-corpo li:first-child { |
||||
|
padding-top: 0; |
||||
|
} |
||||
|
.painel-corpo li:last-child { |
||||
|
padding-bottom: 0; |
||||
|
border-bottom: none; |
||||
|
} |
||||
|
.painel-cabecalho { |
||||
|
padding: 17px 0px 10px; |
||||
|
margin: 0 16px 0; |
||||
|
border-bottom: solid 1px #3b72aa; |
||||
|
font-size: 18px; |
||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
||||
|
color: #3b72aa; |
||||
|
} |
||||
|
.painel-corpo { |
||||
|
} |
||||
|
.painel-corpo .horas { |
||||
|
font-size: 16px; |
||||
|
color: #666666 !important; |
||||
|
} |
||||
|
.painel-rodape { |
||||
|
margin: 15px; |
||||
|
padding-top: 10px; |
||||
|
padding-bottom: 10px; |
||||
|
font-size: 12px; |
||||
|
} |
||||
|
.painel .dropdown-menu { |
||||
|
margin: 0; |
||||
|
font-size: 12px; |
||||
|
} |
||||
|
.painel-base { |
||||
|
background-color: #ffffff; |
||||
|
} |
||||
|
.painel-borda { |
||||
|
background-color: #ffffff; |
||||
|
border: solid 1px #cccccc; |
||||
|
height:285px; |
||||
|
min-height:285px; |
||||
|
width:100%; |
||||
|
} |
||||
|
.painel-especial { |
||||
|
border-color: #333333; |
||||
|
} |
||||
|
.painel-especial .painel-cabecalho { |
||||
|
border-bottom: none; |
||||
|
color: #333333; |
||||
|
} |
||||
|
.painel-base .painel-cabecalho, |
||||
|
.painel-base .painel-corpo { |
||||
|
margin: 0; |
||||
|
padding: 0; |
||||
|
} |
||||
|
.painel-base .painel-corpo { |
||||
|
margin-top: 15px; |
||||
|
} |
||||
|
.painel-video { |
||||
|
background-color: #333333; |
||||
|
color: #ffffff; |
||||
|
border-color: #ffffff; |
||||
|
} |
||||
|
.painel-video .texto-detalhe { |
||||
|
color: #ffffff; |
||||
|
} |
||||
|
.painel-video h3 { |
||||
|
color: #ffffff; |
||||
|
} |
||||
|
.painel-video iframe { |
||||
|
width: 100%; |
||||
|
min-height: 300px; |
||||
|
} |
||||
|
.painel-links { |
||||
|
border-bottom: solid 5px #cccccc; |
||||
|
} |
||||
|
.painel-links h3 { |
||||
|
color: #333333; |
||||
|
} |
||||
|
.painel-links a { |
||||
|
color: #3E6892; |
||||
|
} |
||||
|
.painel-destaques a { |
||||
|
font-size: 14px; |
||||
|
margin-top: 0; |
||||
|
} |
||||
|
.painel-destaques .thumbnail { |
||||
|
min-height: 80px; |
||||
|
margin-bottom: 20px; |
||||
|
border-bottom: dotted 1px #cccccc; |
||||
|
} |
||||
|
.painel-destaques .thumbnail:last-child { |
||||
|
border-bottom: none; |
||||
|
} |
||||
|
.painel-destaques img { |
||||
|
margin-right: 15px; |
||||
|
margin-bottom: 10px; |
||||
|
width: 90px; |
||||
|
} |
||||
|
/* */ |
||||
|
#redesSociais img { |
||||
|
width: 35px; |
||||
|
height: 35px; |
||||
|
background-image: url(../img/logos-redes-sociais.png); |
||||
|
} |
||||
|
#redesSociais a { |
||||
|
margin-left: 6px; |
||||
|
} |
||||
|
#redesSociais .painel-corpo { |
||||
|
white-space: nowrap; |
||||
|
overflow: hidden; |
||||
|
} |
||||
|
#redesSociais img.rs-twitter { |
||||
|
background-position: 0 0; |
||||
|
} |
||||
|
#redesSociais img.rs-facebook { |
||||
|
background-position: -40px 0; |
||||
|
} |
||||
|
#redesSociais img.rs-you-tube { |
||||
|
background-position: -80px 0; |
||||
|
} |
||||
|
#redesSociais img.rs-flickr { |
||||
|
background-position: -120px 0; |
||||
|
} |
||||
|
#redesSociais img.rs-google-plus { |
||||
|
background-position: -160px 0; |
||||
|
} |
||||
|
#redesSociais img.rs-instagram { |
||||
|
background-position: -200px 0; |
||||
|
} |
||||
|
.texto-detalhe { |
||||
|
font-size: 12px; |
||||
|
} |
||||
|
.info-detalhe { |
||||
|
font-size: 11px; |
||||
|
} |
||||
|
.header-agenda { |
||||
|
margin: 30px 0 20px 0; |
||||
|
} |
||||
|
.hora-agenda { |
||||
|
background-color: #3e6892; |
||||
|
text-align: center; |
||||
|
} |
||||
|
.hora-agenda h2 { |
||||
|
color: #ffffff; |
||||
|
margin-top: 12px; |
||||
|
} |
||||
|
.fluid-width-video-wrapper { |
||||
|
width: 100%; |
||||
|
position: relative; |
||||
|
padding: 0; |
||||
|
} |
||||
|
h3 { |
||||
|
padding: 0 0 10px 0; |
||||
|
margin: 0 0 10px 0; |
||||
|
border-bottom: 1px solid #cdcdcd; |
||||
|
color: #333; |
||||
|
} |
||||
|
.title_compromisso { |
||||
|
color: #3e6892; |
||||
|
font-weight: bold; |
||||
|
} |
||||
|
.description_compromisso { |
||||
|
color: #696969; |
||||
|
/* */ |
||||
|
/* */ |
||||
|
height: 42px; |
||||
|
margin-bottom: 17px; |
||||
|
} |
||||
|
.identificacao-site, .busca-principal{ |
||||
|
/* */ |
||||
|
} |
||||
|
.image_leideacesso { |
||||
|
background-color: #3b72aa; |
||||
|
height: auto; |
||||
|
padding: 18px; |
||||
|
} |
||||
|
.image_leideacesso img{ |
||||
|
float:left; |
||||
|
margin-right:5px; |
||||
|
} |
||||
|
.image_leideacesso p { |
||||
|
color: #fff; |
||||
|
font-size: 16px; |
||||
|
padding-top: 12px !important; |
||||
|
} |
||||
|
.image_leideacesso a { |
||||
|
color: #fff!important; |
||||
|
} |
||||
|
.image_leideacesso small{ |
||||
|
color: #fff; |
||||
|
padding: 10px 0 0 0; |
||||
|
} |
||||
|
.list-unstyled li { |
||||
|
list-style: outside none none; |
||||
|
} |
||||
|
.painel-corpo li{ |
||||
|
list-style: outside none none; |
||||
|
} |
||||
|
.description_programas{ |
||||
|
} |
||||
|
.tarja{ |
||||
|
background: none repeat scroll 0 0 #0094da; |
||||
|
color: #fff; |
||||
|
position: absolute; |
||||
|
width: 50%; |
||||
|
text-align: center; |
||||
|
padding: 5px; |
||||
|
bottom: 33px; |
||||
|
left: 25%; |
||||
|
} |
||||
|
.description_programas img{ |
||||
|
width:100%; |
||||
|
} |
||||
|
.alinhamento{ |
||||
|
text-align:center; |
||||
|
} |
||||
|
.description_programas a{ |
||||
|
color:gray; |
||||
|
font-size:14px; |
||||
|
} |
||||
|
.caixaTexto{ |
||||
|
background:url("++resource++img/fundo.png"); |
||||
|
} |
||||
|
.list-unstyled li img{ |
||||
|
width:25%; |
||||
|
} |
||||
|
.texto { |
||||
|
float: right; |
||||
|
width: 50%; |
||||
|
} |
||||
|
.box_r { |
||||
|
border-top: 1px solid #c3c3c3; |
||||
|
margin-top: 16em; |
||||
|
text-align: center; |
||||
|
} |
||||
|
.box_r p{ |
||||
|
margin-top:2em; |
||||
|
} |
||||
|
.utlimacoluna { |
||||
|
padding-top:40px; |
||||
|
padding-bottom:20px; |
||||
|
clear:both; |
||||
|
margin-bottom:20px; |
||||
|
font-size: 13px; |
||||
|
} |
||||
|
.utlimacoluna ul { |
||||
|
margin:0; |
||||
|
border-bottom:5px solid #ccc; |
||||
|
min-height:300px; |
||||
|
} |
||||
|
.utlimacoluna ul li { |
||||
|
border-bottom: 1px dotted #ccc; |
||||
|
margin:0 !important; |
||||
|
padding:10px 0; |
||||
|
line-height:1.7 !important; |
||||
|
list-style: none; |
||||
|
} |
||||
|
.utlimacoluna ul li:last-child{ |
||||
|
border-bottom: none; |
||||
|
} |
||||
|
.utlimacoluna ul li a{ |
||||
|
margin:20px 0; |
||||
|
color: #3d7bae; |
||||
|
} |
||||
|
.box_childrens{ |
||||
|
border:solid 1px #ccc; |
||||
|
padding:12px; |
||||
|
float:left; |
||||
|
} |
||||
|
.box_childrens h3{ |
||||
|
border-bottom:solid 1px #0995d2!important; |
||||
|
} |
||||
|
.childrens_box { |
||||
|
height:190px; |
||||
|
min-height:190px; |
||||
|
} |
||||
|
.childrens_box p { |
||||
|
color: #333; |
||||
|
font-size: 12px; |
||||
|
text-align: left; |
||||
|
} |
||||
|
.childrens_box .title{ |
||||
|
color:#0995d2 !important; |
||||
|
font-size:14px !important; |
||||
|
font-weight:bold; |
||||
|
} |
||||
|
.childrens_box img{ |
||||
|
float:left; |
||||
|
margin-right:9px; |
||||
|
} |
||||
|
.painel-corpo ul{ |
||||
|
width:100%; |
||||
|
} |
||||
|
.painel-corpo ul li { |
||||
|
clear:both; |
||||
|
} |
||||
|
.painel-corpo ul li a { |
||||
|
color:#3d7bae; |
||||
|
} |
||||
|
.titulo_fale, .painel-corpo ul li p { |
||||
|
font-size: 15px; |
||||
|
margin-bottom:5px !important; |
||||
|
color:#666666; |
||||
|
} |
||||
|
.titulo_fale { |
||||
|
color: #9e9e9e; |
||||
|
width: auto; |
||||
|
margin-bottom:0px !important; |
||||
|
} |
||||
|
#box-enquete { |
||||
|
border: medium none !important; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
#content ul { |
||||
|
margin-left:0 !important; |
||||
|
padding:0; |
||||
|
} |
||||
|
.topo-slider-home { |
||||
|
margin-bottom:7px; |
||||
|
} |
||||
|
.participacao { |
||||
|
border-bottom: 5px solid #ccc; |
||||
|
padding-bottom: 5px; |
||||
|
margin-bottom:30px; |
||||
|
} |
||||
|
.participacao ul li { |
||||
|
border-bottom: 1px dotted #ccc; |
||||
|
margin-left: 21px; |
||||
|
margin-top: 7px; |
||||
|
} |
||||
|
#box-enquete { |
||||
|
width: 100% !important; |
||||
|
height: 342px !important; |
||||
|
} |
||||
|
.programas-institucional { |
||||
|
margin-bottom: 40px; |
||||
|
} |
||||
|
.programas-institucional .thumbs-programas { |
||||
|
border: 1px solid #ccc; |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
@-moz-document url-prefix() { |
||||
|
fieldset { |
||||
|
display: table-cell; |
||||
|
} |
||||
|
} |
||||
|
.painel { |
||||
|
overflow: auto; |
||||
|
} |
||||
|
@media (min-width: 992px) and (max-width: 1199px) { |
||||
|
.tarja{ |
||||
|
bottom: 50px; |
||||
|
} |
||||
|
.painel { |
||||
|
min-height: 270px; |
||||
|
} |
||||
|
} |
||||
|
@media (min-width: 769px) and (max-width: 991px) { |
||||
|
.carousel-caption { |
||||
|
bottom: 0px; |
||||
|
left: 5%; |
||||
|
} |
||||
|
.slider .box .caixaTexto { |
||||
|
text-align: center; |
||||
|
padding-top: 10px; |
||||
|
background-color: transparent; |
||||
|
background-image: url('++resource++img/procuradoria/bg_carousel.png'); |
||||
|
} |
||||
|
.tarja{ |
||||
|
bottom: 50px; |
||||
|
left: 20%; |
||||
|
width:60%; |
||||
|
} |
||||
|
.childrens_box { |
||||
|
height:280px; |
||||
|
min-height:280px; |
||||
|
} |
||||
|
} |
||||
|
@media (min-width: 480px) and (max-width: 768px) { |
||||
|
.carousel-caption { |
||||
|
bottom: 0px; |
||||
|
left: 5%; |
||||
|
} |
||||
|
.description_programas{ |
||||
|
margin-bottom:20px; |
||||
|
} |
||||
|
.slider .box .caixaTexto { |
||||
|
text-align: center; |
||||
|
padding-top: 10px; |
||||
|
background-color: transparent; |
||||
|
background-image: url('../img/bg_carousel.png'); |
||||
|
} |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
/* */ |
||||
|
} |
||||
|
@media (min-width: 320px) and (max-width: 479px) { |
||||
|
.tarja{ |
||||
|
bottom: 35px; |
||||
|
left: 20%; |
||||
|
width:60%; |
||||
|
} |
||||
|
.childrens_box { |
||||
|
height:250px; |
||||
|
min-height:250px; |
||||
|
} |
||||
|
.carousel-caption { |
||||
|
bottom: 0px; |
||||
|
left: 0; |
||||
|
position: inherit; |
||||
|
right: 0; |
||||
|
padding: 0; |
||||
|
} |
||||
|
.description_programas{ |
||||
|
margin-bottom:20px; |
||||
|
} |
||||
|
.slider .box .caixaTexto { |
||||
|
text-align: center; |
||||
|
padding-top: 10px; |
||||
|
background-color: transparent; |
||||
|
background-image: url('../img/bg_carousel.png'); |
||||
|
} |
||||
|
.identificacao-site.visible-xs { |
||||
|
margin-top: 0 !important; |
||||
|
} |
||||
|
.identificacao-site h1 { |
||||
|
font-size: 22px; |
||||
|
} |
||||
|
.identificacao-site h1 small { |
||||
|
font-size: 16px; |
||||
|
} |
||||
|
.container { |
||||
|
margin-left: 15px; |
||||
|
margin-right: 15px; |
||||
|
} |
||||
|
.publicacoes .col-md-3 { |
||||
|
margin-bottom: 10px; |
||||
|
} |
||||
|
} |
||||
|
small, .small { |
||||
|
font-size: 85%; |
||||
|
color: #205C90; |
||||
|
margin-left: 2px; |
||||
|
} |
||||
|
.carousel-indicators li{ |
||||
|
border:2px solid #999!important; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
@ -0,0 +1,321 @@ |
|||||
|
/*######################################## |
||||
|
Tema |
||||
|
########################################*/ |
||||
|
body { |
||||
|
font-family: 'Lucida Grande','Lucida Sans Unicode','Lucida Sans','Geneva','Verdana','sans-serif'; |
||||
|
line-height: 1.428; |
||||
|
} |
||||
|
#tema { |
||||
|
/* width: 100%; */ |
||||
|
margin: 0 auto; |
||||
|
} |
||||
|
#tema-portal { |
||||
|
min-height: 400px; |
||||
|
} |
||||
|
/* #bannerLocal { */ |
||||
|
/* background-image: url("++theme++senado.tema/senado/img/sub-osenado.jpg"); */ |
||||
|
/* color: #FFFFFF; */ |
||||
|
/* height: 70px; */ |
||||
|
/* margin: 0 auto; */ |
||||
|
/* text-align: left; */ |
||||
|
/* width: 995px; */ |
||||
|
/* } */ |
||||
|
a#portal-home-link { |
||||
|
} |
||||
|
#portal-menu { |
||||
|
margin-bottom: 0px; |
||||
|
} |
||||
|
#toolbar { |
||||
|
overflow: auto; |
||||
|
clear: right; |
||||
|
} |
||||
|
|
||||
|
#portal-breadcrumbs { |
||||
|
float: left; |
||||
|
} |
||||
|
.portal-breadcrumbs { |
||||
|
display: none; |
||||
|
} |
||||
|
#breadcrumbs-you-are-here { |
||||
|
display: none; |
||||
|
} |
||||
|
#breadcrumbs-you-are-here + li::before { |
||||
|
display: none; |
||||
|
} |
||||
|
.portal-breadcrumbs > ol > li:last-of-type { |
||||
|
color: #777; |
||||
|
} |
||||
|
|
||||
|
#portal-personaltools-wrapper { |
||||
|
float: right; |
||||
|
} |
||||
|
.portal-personaltools-wrapper { |
||||
|
display: none; |
||||
|
} |
||||
|
|
||||
|
/* Barra de login */ |
||||
|
.portal-login { |
||||
|
display: none; |
||||
|
} |
||||
|
.portal-login { |
||||
|
float: right; |
||||
|
font-size: 11px; |
||||
|
margin-bottom: 1em; |
||||
|
} |
||||
|
.portal-login ins { |
||||
|
margin-right: 12px; |
||||
|
text-decoration: none; |
||||
|
text-transform: capitalize; |
||||
|
} |
||||
|
|
||||
|
#content h1.documentFirstHeading { |
||||
|
border-bottom: 1px solid #eee; |
||||
|
padding-bottom: 15px; |
||||
|
font-size: 28px; |
||||
|
margin-top: 10px; |
||||
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; |
||||
|
font-weight: normal; |
||||
|
letter-spacing: 0.1px; |
||||
|
} |
||||
|
|
||||
|
/*######################################## |
||||
|
Adaptações senado.essencial |
||||
|
########################################*/ |
||||
|
/* @font-face { */ |
||||
|
/* font-family: 'Glyphicons Halflings'; */ |
||||
|
/* src: url('fonts/glyphicons-halflings-regular.eot'); */ |
||||
|
/* src: url('fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('fonts/glyphicons-halflings-regular.woff') format('woff'), url('fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg'); */ |
||||
|
/* } */ |
||||
|
.PortalTopo-id a { |
||||
|
color: #3e6892; |
||||
|
text-decoration: none; |
||||
|
} |
||||
|
.PortalTopo-id .PortalTopo-sub a { |
||||
|
color: #999; |
||||
|
text-decoration: none; |
||||
|
} |
||||
|
.PortalTopo-title a img { |
||||
|
width: 190px; |
||||
|
} |
||||
|
.PortalTopo-busca > div { |
||||
|
display: table-cell; |
||||
|
vertical-align: middle; |
||||
|
} |
||||
|
|
||||
|
.Nav--secundaria { |
||||
|
padding-left: 0; |
||||
|
padding-right: 0; |
||||
|
} |
||||
|
.Nav--secundaria > ul > li:not(:last-child)::after { |
||||
|
line-height: 23px; |
||||
|
} |
||||
|
/* Extra small - Phone */ |
||||
|
@media(max-width:767px){ |
||||
|
|
||||
|
.PortalTopo-busca > div { |
||||
|
display: inherit; |
||||
|
margin: 10px 0 0; |
||||
|
} |
||||
|
.Nav--secundaria { |
||||
|
background-color: transparent; |
||||
|
float: right; |
||||
|
padding-left: 15px; |
||||
|
padding-right: 15px; |
||||
|
} |
||||
|
.Nav--secundaria > ul { |
||||
|
float: none !important; |
||||
|
} |
||||
|
.Nav--secundaria > ul > li > a { |
||||
|
font-size: 12px; |
||||
|
line-height: 26px; |
||||
|
} |
||||
|
|
||||
|
} /* @media xs */ |
||||
|
|
||||
|
navbar-inverse { |
||||
|
background-color: transparent; |
||||
|
} |
||||
|
.navbar-inverse .navbar-nav > li > a { |
||||
|
color: #777; |
||||
|
} |
||||
|
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { |
||||
|
background-color: transparent; |
||||
|
color: #333; |
||||
|
} |
||||
|
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover { |
||||
|
background-color: transparent; |
||||
|
color: #333; |
||||
|
} |
||||
|
.navbar-senado { |
||||
|
} |
||||
|
.navbar-senado .dropdown-menu > li { |
||||
|
display: block; |
||||
|
} |
||||
|
p.busca-avancada a { |
||||
|
color: #3e6892; |
||||
|
} |
||||
|
|
||||
|
#footer-institucional { |
||||
|
clear: both; |
||||
|
padding-top: 40px; |
||||
|
} |
||||
|
#portal-columns { |
||||
|
margin-left: 0; |
||||
|
margin-right: 0; |
||||
|
} |
||||
|
|
||||
|
/*######################################## |
||||
|
Accordion |
||||
|
########################################*/ |
||||
|
.accordion { |
||||
|
position: relative; |
||||
|
} |
||||
|
.accordion > .accordion-group { |
||||
|
border: 1px solid #e5e5e5; |
||||
|
border-radius: 0px; |
||||
|
margin-bottom: 20px; |
||||
|
} |
||||
|
.accordion > .accordion-group > .accordion-heading { |
||||
|
border-bottom: 1px solid #ddd; |
||||
|
color: #3e6892; |
||||
|
font-size: 18px; |
||||
|
} |
||||
|
.accordion-heading .accordion-toggle { |
||||
|
display: block; |
||||
|
padding: 8px 15px; |
||||
|
} |
||||
|
.accordion .accordion-caret .accordion-toggle.collapsed::before { |
||||
|
content: "▸"; |
||||
|
} |
||||
|
.accordion .accordion-caret .accordion-toggle:not(.collapsed)::before { |
||||
|
content: "▾"; |
||||
|
} |
||||
|
.accordion .accordion-caret .accordion-toggle::before { |
||||
|
font-size: 25px; |
||||
|
/* vertical-align: -3px; */ |
||||
|
/* line-height: 21px; */ |
||||
|
margin-right: 0; |
||||
|
position: absolute; |
||||
|
right: 20px; |
||||
|
} |
||||
|
.accordion .accordion-inner { |
||||
|
border-top: 1px solid #e5e5e5; |
||||
|
padding: 8px 15px; |
||||
|
} |
||||
|
#content a.accordion-toggle:hover, |
||||
|
#content a.accordion-toggle:focus { |
||||
|
color: #28425c !important; |
||||
|
text-decoration: none; |
||||
|
} |
||||
|
|
||||
|
/*######################################## |
||||
|
Carousel |
||||
|
########################################*/ |
||||
|
.carousel .item img { |
||||
|
margin: auto; |
||||
|
} |
||||
|
.carousel-indicators { |
||||
|
top: 10px; |
||||
|
height: 10px; |
||||
|
} |
||||
|
.carousel-control { |
||||
|
cursor: alias; |
||||
|
text-shadow: 2px 2px 0 #000; |
||||
|
} |
||||
|
.carousel-control span { |
||||
|
color: white; |
||||
|
} |
||||
|
.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { |
||||
|
right: 19%; |
||||
|
font-size: 22px; |
||||
|
} |
||||
|
.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { |
||||
|
left: 19%; |
||||
|
font-size: 22px; |
||||
|
} |
||||
|
/* Carousel control color. */ |
||||
|
/* .carousel-control.right { */ |
||||
|
/* background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0px, #00305c 100%); */ |
||||
|
/* } */ |
||||
|
/* .carousel-control.left { */ |
||||
|
/* background-image: linear-gradient(to right, #00305c 0px, rgba(0, 0, 0, 0) 100%); */ |
||||
|
/* } */ |
||||
|
.carousel-caption { |
||||
|
background-color: black; |
||||
|
bottom: 0; |
||||
|
max-height: 35%; |
||||
|
left: 0; |
||||
|
opacity: 0.7; |
||||
|
padding-left: 15px; |
||||
|
padding-top: 10px; |
||||
|
text-align: left; |
||||
|
width: 100%; |
||||
|
} |
||||
|
.carousel-caption p { |
||||
|
color: #fff; |
||||
|
font-size: 13px; |
||||
|
line-height: 14px; |
||||
|
} |
||||
|
|
||||
|
/* Carousel Caption Quadro */ |
||||
|
.carousel-caption-quadro { |
||||
|
background-color: black; |
||||
|
bottom: 5%; |
||||
|
left: 5%; |
||||
|
max-height: 90%; |
||||
|
opacity: 0.7; |
||||
|
padding-left: 10px; |
||||
|
padding-right: 3px; |
||||
|
padding-top: 10px; |
||||
|
text-align: left; |
||||
|
width: 24%; |
||||
|
} |
||||
|
|
||||
|
#painel-em-manutencao { |
||||
|
background: white none repeat scroll 0 0; |
||||
|
font-size: 20px; |
||||
|
margin-top: 50px; |
||||
|
text-align: center; |
||||
|
font-family: arial; |
||||
|
} |
||||
|
#painel-em-manutencao i { |
||||
|
color: orange; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
/* |
||||
|
============================== |
||||
|
Bootstrap Media Queries |
||||
|
============================== |
||||
|
*/ |
||||
|
|
||||
|
/* Extra small - Phone */ |
||||
|
@media(max-width:767px){ |
||||
|
|
||||
|
.carousel-caption { |
||||
|
position: static; |
||||
|
} |
||||
|
.carousel-control .glyphicon-chevron-left, |
||||
|
.carousel-control .glyphicon-chevron-right, |
||||
|
.carousel-control .icon-next, |
||||
|
.carousel-control .icon-prev { |
||||
|
top: 30%; |
||||
|
} |
||||
|
|
||||
|
} /* @media xs */ |
||||
|
|
||||
|
/* Small - Tablet */ |
||||
|
@media(min-width:768px){ |
||||
|
|
||||
|
} /* @media sm */ |
||||
|
|
||||
|
/* Medium - Desktop */ |
||||
|
@media(min-width:992px){ |
||||
|
|
||||
|
} /* @media md */ |
||||
|
|
||||
|
/* Large - Desktop */ |
||||
|
@media(min-width:1200px){ |
||||
|
|
||||
|
} /* @media lg */ |