Commit edf45cf0fbe05e37b49d6f11b61c928186db5dea

Authored by Victor Costa
2 parents edcec464 0edd4cf1

Merge branch 'master' of github.com:SerproLivre/participa-theme

Conflicts:
	theme.js
errors.css 0 → 100644
... ... @@ -0,0 +1,24 @@
  1 +@import url(../base/errors.css);
  2 +
  3 +body {
  4 + background-image: radial-gradient(ellipse at center center , #FCDD4E 1%, #F9C404 100%);
  5 + font-family: 'Open Sans',Arial,Helvetica,sans-serif;
  6 +}
  7 +#logo {
  8 + background: url(images/503-logo.jpg) 20px 0px no-repeat;
  9 +}
  10 +
  11 +#header {
  12 + background: #ccc url(imgs/menu-top-bg-right.png) top right no-repeat;
  13 + height: 42px;
  14 + margin-top: 48px;
  15 + position: relative;
  16 +}
  17 +
  18 +
  19 +#wrap {
  20 + margin: 20px 20px 0px 20px;
  21 + border: 1px solid #d3d7cf;
  22 + background: white url(images/503.jpg) 100% 100% no-repeat;
  23 + height: 680px;
  24 +}
0 25 \ No newline at end of file
... ...
images/503-logo.jpg 0 → 100644

9.42 KB

images/503-small.jpg 0 → 100644

70.1 KB

images/503.jpg 0 → 100644

174 KB

images/bg-palacio-do-planalto.jpg

78.5 KB | W: | H:

229 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
style.css
... ... @@ -160,6 +160,35 @@ p {
160 160 /*font-size: x-small;*/
161 161 }
162 162  
  163 +/*Registro de usuário*/
  164 +
  165 +.action-account-signup .no-boxes form {
  166 + margin: 0px;
  167 +}
  168 +
  169 +.action-account-signup .singup_text {
  170 + display: inline-block;
  171 + float: left;
  172 + margin-right: 5%;
  173 + margin-top: 70px;
  174 + width: 30%;
  175 +}
  176 +
  177 +.action-account-signup #signup-form-header,
  178 +.action-account-signup #signup-form-profile {
  179 + display: inline-block;
  180 + float: right;
  181 + width: 60%;
  182 +}
  183 +
  184 +.action-account-signup form>p {
  185 + clear: both;
  186 +}
  187 +
  188 +
  189 +
  190 +/*Fim Registro de usuário*/
  191 +
163 192 /* Menu List left */
164 193 /*Estilo nos blocos laterais*/
165 194  
... ...
theme.js
... ... @@ -50,6 +50,11 @@ function igualarBlocos(cc){
50 50 //Alinha os blocos do tipo container lado a lado
51 51 $('.container-block-plugin_container-block').each(igualarBlocos);
52 52  
  53 +
  54 + //insere a mensagem na página de registro//
  55 + $( ".action-account-signup #content form" ).prepend( "<div class='singup_text'><p>Registre-se. Crie sua conta no Participa Brasil! Este é mais um espaço de diálogo entre governo e sociedade civil. Depois que você se registrar será possível fazer comentários e/ou contribuições, participar de consultas públicas, criar blogs, participar e/ou criar comunidades, etc.</p><p>A gestão pública nunca esteve tão próxima das pessoas como agora. Faça parte desta mudança!</p><p>Seja bem vind@!</p></div>" );
  56 +
  57 +
53 58 })(jQuery);
54 59  
55 60  
... ...