Commit 94b206dfc1c23ac56ef77c4a51507a047c9dfc96

Authored by Pedro de Lyra Pereira
1 parent 309615c2

Fixing alignment between main content block and subsequent blocks

Showing 1 changed file with 25 additions and 2 deletions   Show diff stats
style.css
... ... @@ -3163,6 +3163,10 @@ input[type=checkbox] {
3163 3163 padding: 0px;
3164 3164 }*/
3165 3165  
  3166 +.main-content {
  3167 + padding: 0px;
  3168 +}
  3169 +
3166 3170 #content .main-content .star-page-title .title {
3167 3171 font-size: 34px !important;
3168 3172 }
... ... @@ -3173,6 +3177,7 @@ input[type=checkbox] {
3173 3177 color: #172738;
3174 3178 margin-top: 16px;
3175 3179 padding: 29px 0px 21px 0px;
  3180 + width: 550px;
3176 3181 }
3177 3182  
3178 3183 #content .main-content .star-rate-data .star-rate-form .star-rate-text,
... ... @@ -3359,6 +3364,7 @@ input[type=checkbox] {
3359 3364 .ratings-list {
3360 3365 color: #172738;
3361 3366 font-family: Arial, Helvetica, "open_sansregular", sans-serif;
  3367 + width: 550px;
3362 3368 }
3363 3369  
3364 3370 .ratings-list .user-rating-block {
... ... @@ -3427,7 +3433,7 @@ input[type=checkbox] {
3427 3433 margin-top: 2px;
3428 3434 }
3429 3435  
3430   -.ratings-list .user-rating-block .user-testimony-container .aditional-informations {
  3436 +.ratings-list .user-rating-block .user-testimony-container .additional-informations {
3431 3437 margin-top: 10px;
3432 3438 }
3433 3439  
... ... @@ -3479,17 +3485,34 @@ input[type=checkbox] {
3479 3485 padding-left: 1px;
3480 3486 }
3481 3487  
3482   -.ratings-list .make-report-block .make-report-container .button-bar a {
  3488 +.ratings-list .make-report-block .make-report-container .button-bar a,
  3489 +.star-rate-data .rating-cooldown .button-bar a,
  3490 +.star-rate-data .rating-vote-once .button-bar a {
3483 3491 background-color: #3E67B1 !important;
3484 3492 background-image: none;
3485 3493 color: #fff !important;
3486 3494 font-weight: 700;
3487 3495 font-size: 14px;
  3496 + font-style: normal;
3488 3497 height: 31px;
3489 3498 padding: 0px 7px 0px 7px;
3490 3499 text-transform: uppercase;
3491 3500 }
3492 3501  
  3502 +.star-rate-data .rating-cooldown,
  3503 +.star-rate-data .rating-vote-once {
  3504 + font-family: Arial;
  3505 + font-size: 18px;
  3506 + font-style: italic;
  3507 + word-break: break-word;
  3508 +}
  3509 +
  3510 +.star-rate-data .rating-cooldown .button-bar a.disabled-button,
  3511 +.star-rate-data .rating-vote-once .button-bar a.disabled-button {
  3512 + cursor: not-allowed;
  3513 + opacity: 0.4;
  3514 +}
  3515 +
3493 3516 .ratings-list .see-more {
3494 3517 border-top: none;
3495 3518 }
... ...