Commit a903d9ecde641b74ad2ecfe465d1d1786e3aabeb
Committed by
Carlos Coêlho
1 parent
8b1d0198
Exists in
master
and in
53 other branches
Font format and spacing
Signed-off-by: Carlos Oliveira <carloshfoliveira@linuxmail.org> Signed-off-by: Bruna Moreira <brunanayaramlima@gmail.com>
Showing
2 changed files
with
34 additions
and
21 deletions
Show diff stats
src/colab-spb-theme-plugin/colab_spb_theme/static/css/screen.css
... | ... | @@ -167,14 +167,9 @@ ul.message-list li { |
167 | 167 | |
168 | 168 | |
169 | 169 | /* Forms */ |
170 | -.required label:before { | |
171 | - color: #f00; | |
172 | - content: "* "; | |
173 | -} | |
174 | - | |
175 | 170 | form.signup .form-group { |
176 | - width: 90%; | |
177 | - margin-left: 0.5em; | |
171 | + margin-left: 0px; | |
172 | + margin-right: 22px; | |
178 | 173 | } |
179 | 174 | |
180 | 175 | div.submit { |
... | ... | @@ -523,19 +518,37 @@ span.highlighted { |
523 | 518 | padding: 40px 0 60px 0; |
524 | 519 | } |
525 | 520 | |
526 | - | |
527 | 521 | .colab-content h2{ |
528 | - color: #FF0366; | |
529 | - font-size: 16px; | |
530 | - font-family: "open_sansregular",Arial, Helvetica,sans-serif; | |
531 | - font-weight: 300; | |
532 | - text-transform: uppercase; | |
522 | + color: #FF0366; | |
523 | + font-size: 16px; | |
524 | + font-family: "open_sansregular",Arial, Helvetica,sans-serif; | |
525 | + font-weight: 300; | |
526 | + text-transform: uppercase; | |
533 | 527 | } |
534 | 528 | |
535 | 529 | .colab-content h1{ |
536 | - padding: 5px 0 10px 0; | |
537 | - border-bottom: 1px solid #D3D6DE; | |
538 | - font-family: Arial, Helvetica, sans-serif; | |
539 | - font-size: 35px; | |
540 | - font-variant: normal; | |
530 | + padding: 5px 0 10px 0; | |
531 | + border-bottom: 1px solid #D3D6DE; | |
532 | + font-family: Arial, Helvetica, sans-serif; | |
533 | + font-size: 35px; | |
534 | + font-variant: normal; | |
535 | + font-weight: bold; | |
536 | +} | |
537 | + | |
538 | +h4.help-pane-title { | |
539 | + font-family: Arial; | |
540 | + color: #172738; | |
541 | + text-align: justify; | |
542 | +} | |
543 | + | |
544 | +#btn-cadastrar { | |
545 | + text-transform: uppercase; | |
546 | + font-weight: bold; | |
547 | + padding: 5px 27px 5px 27px; | |
548 | +} | |
549 | + | |
550 | +.control-label { | |
551 | + font-family: Arial; | |
552 | + font-weight: normal; | |
553 | + font-size: 16px; | |
541 | 554 | } | ... | ... |
src/colab-spb-theme-plugin/colab_spb_theme/templates/accounts/user_create_form.html
... | ... | @@ -21,11 +21,11 @@ |
21 | 21 | {% endfor %} |
22 | 22 | </fieldset> |
23 | 23 | |
24 | - <input type="submit" value="Cadastrar" class="btn btn-primary btn-lg"> | |
24 | + <input type="submit" value="Cadastrar" id="btn-cadastrar" class="btn btn-primary"> | |
25 | 25 | </div> |
26 | 26 | <div class="col-md-6 col-lg-6 col-sm-6 col-xs-12"> |
27 | - <div style="border-left: 1px solid #ccc; padding-left: 60px; min-height: 500px"> | |
28 | - <p>Olá! Se estiver com dúvidas, temos várias maneiras para tentar te ajudar. Veja abaixo algumas opções:</p> | |
27 | + <div style="border-left: 1px solid #ccc; padding-left: 52px; min-height: 500px"> | |
28 | + <h4 class="help-pane-title">Olá! Se estiver com dúvidas, temos várias maneiras para tentar te ajudar. Veja abaixo algumas opções:</h4> | |
29 | 29 | <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true"> |
30 | 30 | <div class="panel panel-default"> |
31 | 31 | <div class="panel-heading" role="tab" id="headingOne"> | ... | ... |