Revision e21dadff

b/snf-astakos-app/astakos/im/static/im/css/ie7.css
1
.navigation {
2
    min-width: 660px;
3
}
4

  
5
.mainnav.inline {
6
    position: absolute;
7
    right: -10px;
8
}
9

  
10
.mainnav.inline.subnav {
11
    position: relative;
12
    top: 50px;
13
}
b/snf-astakos-app/astakos/im/static/im/css/styles.css
993 993
}
994 994
form .form-row.submit {
995 995
  margin-top: 22px;
996
  z-index: 10;
997 996
}
998 997
form .form-row .extra-link {
999 998
  color: #808080;
......
1014 1013
}
1015 1014
form.innerlabels p {
1016 1015
  position: relative;
1016
  display: table;
1017 1017
}
1018 1018
form textarea,
1019 1019
form input.text,
......
1497 1497
#recaptcha_widget_div th, #recaptcha_widget_div td {
1498 1498
  line-height: 1;
1499 1499
}
1500
form.innerlabels label.checkbox-label {
1501
  position: relative !important;
1502
  margin-left: 10px !important;
1503
  padding-top: 1em !important;
1504
  top: 7px !important;
1505
  left: 10px;
1506
  cursor: pointer;
1507
}
1500 1508
.checkbox-widget.checked {
1501 1509
  background-color: #f00;
1502 1510
  background-image: url("../images/checkbox.png");
......
1511 1519
  cursor: pointer;
1512 1520
  margin-top: 5.333333333333333px;
1513 1521
}
1522
.textcontent h1, .terms-content h1 {
1523
  font-size: 1.9em;
1524
  margin-bottom: 0.2em;
1525
  margin-top: 1.2em;
1526
  color: #3582ac;
1527
}
1528
.textcontent h1:first-child, .terms-content h1:first-child {
1529
  margin-top: 0;
1530
}
1531
.textcontent h2, .terms-content h2 {
1532
  font-size: 1.6em;
1533
  margin-bottom: 1.1em;
1534
  margin-top: 1.1em;
1535
  color: #3b91bf;
1536
}
1537
.textcontent h2:first-child, .terms-content h2:first-child {
1538
  margin-top: 0;
1539
}
1540
.textcontent h3, .terms-content h3 {
1541
  font-size: 1.3em;
1542
  margin-bottom: 1em;
1543
  margin-top: 1em;
1544
  color: #3b91bf;
1545
}
1546
.textcontent h3:first-child, .terms-content h3:first-child {
1547
  margin-top: 0;
1548
}
1549
.textcontent p, .terms-content p {
1550
  margin-bottom: 1em;
1551
  line-height: 1.5em;
1552
}
1553
.textcontent .date, .terms-content .date {
1554
  margin: 1em 0;
1555
  font-size: 0.9em;
1556
  margin-bottom: 2em;
1557
  color: #808080;
1558
}
b/snf-astakos-app/astakos/im/static/im/css/styles.less
258 258
}
259 259

  
260 260
.rightcol {
261
    .offset(6.5);
262
    .columns(4);
261
    .makeColumn(4);
262
    margin-left: 4*@gridGutterWidth + 14;
263 263

  
264 264
    &.narrow {
265
        .offset(7.5);
266
        .columns(3);    
265
        .makeColumn(3);
266
        margin-left: 4*@gridGutterWidth + 14;
267 267
    }
268

  
268 269
    input[type=text], input[type=password] {
269 270
        width: 3*@gridColumnWidth + 4*@gridGutterWidth + 5;    
270 271
    }
......
428 429
        position: relative;
429 430
        &.submit {
430 431
            margin-top: 1.5*@verticalSpacing;
431
            z-index: 10;
432 432
        }
433 433

  
434 434
        .extra-link {
......
453 453
    }
454 454

  
455 455
    &.innerlabels p {
456
        display: table;
456 457
        position: relative;    
457 458
    }
458 459

  
......
553 554
        &.error { background-color: @red; color: @white }
554 555
        &.warning { background-color: #AF6906; color: @black }
555 556
    }
556
    
557

  
557 558
    .warning {
558 559
        color: @white !important;   
559 560
        a {
......
564 565

  
565 566
}
566 567

  
568
form.innerlabels label.checkbox-label {
569
    position: relative !important; 
570
    margin-left: 10px !important;
571
    padding-top: 1em !important;
572
    top:7px !important; 
573
    left:10px;
574
    cursor: pointer;
575
}
576

  
577

  
578

  
567 579
// accounts specific styles
568 580
.service-desc {
569 581
    margin-top: 4em;    
......
760 772
}
761 773

  
762 774

  
763
.initial_hidden {
775
.initially-hidden {
764 776
    display: none;    
765 777
}
766 778

  
......
798 810
}
799 811

  
800 812

  
813
// generic headings
814
@hColor: @blue;
815
.textcontent, .terms-content {
816
    h1 {
817
        font-size: 1.9em;    
818
        margin-bottom: 0.2em;
819
        margin-top: 1.2em;
820
        color: @hColor;
821

  
822
        &:first-child {
823
            margin-top: 0;    
824
        }
825
    }
826

  
827
    h2 {
828
        font-size: 1.6em;
829
        margin-bottom: 1.1em;
830
        margin-top: 1.1em;
831

  
832
        &:first-child {
833
            margin-top: 0;    
834
        }
835
        color: lighten(@hColor, 5%);
836
    }
837

  
838
    h3 {
839
        font-size: 1.3em;
840
        margin-bottom: 1em;
841
        margin-top: 1em;
842

  
843
        &:first-child {
844
            margin-top: 0;    
845
        }
846
        color: lighten(@hColor, 5%);
847
    }
848

  
849
    p {
850
        margin-bottom: 1em;    
851
        line-height: 1.5em;
852
    }
853

  
854
    .date {
855
        margin: 1em 0;
856
        font-size: 0.9em;
857
        margin-bottom: 2em;
858
        color: @gray;
859
    }
860
}
801 861

  

Also available in: Unified diff