Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 351696d5

Přidáno uživatelem Martin Sebela před asi 4 roky(ů)

Re #7926, finishing controls on map

Zobrazit rozdíly:

website/public/css/style.scss
7 7
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam:wght@400;600;700;800&display=swap');
8 8

  
9 9
html, body {
10
  font-family: 'Be Vietnam', sans-serif;
11
  color: #fff;
10 12
  position: relative;
11 13
  height: 96.2%;
12 14
  background: #242C6B;
13 15

  
14
  @include media-breakpoint-down(sm) {
15
    height: auto;
16
  &.intro {
17
    @include media-breakpoint-down(sm) {
18
      height: auto;
19
    }
16 20
  }
17 21
}
18 22

  
19
body {
20
  font-family: 'Be Vietnam', sans-serif;
21
  color: #fff;
22
}
23

  
24 23
header {
25 24
  height: 70px;
26 25
  background: #0048A9;
......
119 118

  
120 119
  .navbar-button {
121 120
    padding: .5rem 22px;
121
    margin-right: 40px;
122 122
    border: 1px solid #fff;
123 123
    border-radius: 20px;
124 124
    text-decoration: none;
......
219 219
        display: none;
220 220
        border: 0;
221 221

  
222
        /*@include media-breakpoint-down(lg) {
223

  
224
          margin: 0 10px 0 20px;
225
        }*/
226

  
227 222
        @include media-breakpoint-down(md) {
228 223
          display: block;
229 224
          width: 100%;
......
634 629
// SEZNAM LOKACÍ NA MAPĚ
635 630
.map-locations {
636 631
  position: absolute;
632
  top: 105px;
637 633
  right: 50px;
638
  top: 110px;
639 634
  z-index: 1000;
640 635
  border-radius: 22px;
641 636
  background-color: rgba(11, 21, 90, .7);
642 637

  
638
  @include media-breakpoint-down(md) {
639
    top: 90px;
640
    right: 20px;
641
  }
642

  
643 643
  .menu {
644
    display: inline-block;
644 645
    position: relative;
645 646
    padding: 10px 60px 13px 16px;
646
    margin-bottom: 10px;
647
    text-decoration: none;
647 648
    border-radius: 50px;
648 649
    opacity: 1;
649 650
    background: #0B155A;
650 651

  
652
    @include media-breakpoint-down(xs) {
653
      min-width: 280px;
654
      width: 100%;
655
      padding-bottom: 16px;
656
      font-size: 14px;
657
    }
658

  
651 659
    .circle {
652 660
      display: inline-block;
653 661
      width: 40px;
......
672 680
  }
673 681

  
674 682
  .locations {
683
    z-index: 1000;
684

  
675 685
    ul {
686
      margin-top: 10px;
676 687
      padding-left: 36px;
677 688
      padding-right: 20px;
678 689
      font-size: 15px;
679 690
      list-style-image: url($images-dir + 'li-bullet.svg');
691

  
692
      @include media-breakpoint-down(xs) {
693
        font-size: 13.5px;
694
      }
680 695
    }
681 696

  
682 697
    li {
......
699 714
  bottom: -40px;
700 715
  z-index: 1000;
701 716

  
717
  @include media-breakpoint-down(xs) {
718
    bottom: -30px;
719
  }
720

  
702 721
  .next, .prev, .play {
703 722
    display: inline-block;
704
    width: 50px;
705
    height: 50px;
723
    width: 42px;
724
    height: 42px;
706 725
    margin-right: 20px;
707 726
    position: relative;
708 727
    border-radius: 50%;
......
712 731
    background: #0B155A;
713 732
    cursor: pointer;
714 733

  
734
    &:hover {
735
      opacity: 1;
736
    }
737

  
715 738
    &:after {
716 739
      content: "";
717 740
      display: inline-block;
......
724 747
  }
725 748

  
726 749
  .play {
727
    width: 65px;
728
    height: 65px;
750
    width: 57px;
751
    height: 57px;
729 752
    opacity: 1;
730 753

  
754
    &:hover {
755
      opacity: .7;
756
    }
757

  
731 758
    &:after {
732 759
      width: 10px;
733 760
      height: 16px;
......
745 772
    background: url($images-dir + 'btn-prev.svg') no-repeat top right;
746 773
  }
747 774

  
775
  .timeline {
776
    display: flex;
777
    height: 30px;
778
    flex-direction: row;
779
    position: relative;
780
    padding: 0 10px;
781
    border-radius: 100px;
782
    background-color: rgba(11, 21, 90, .7);
783

  
784
    @include media-breakpoint-down(md) {
785
      padding: 0;
786
    }
787

  
788
    .hour {
789
      @include media-breakpoint-down(md) {
790
        display: none;
791
      }
792

  
793
      &:before {
794
        content: "";
795
        display: inline-block;
796
        width: 6px;
797
        height: 6px;
798
        border-radius: 50%;
799
        background: #fff;
800
      }
801

  
802
      &:after {
803
        content: "";
804
        display: inline-block;
805
        position: relative;
806
        top: -2px;
807
        width: 20px;
808
        height: 2px;
809
        background: #fff;
810
      }
811
    }
812

  
813
    .end-dot:before {
814
      content: "";
815
      display: inline-block;
816
      width: 6px;
817
      height: 6px;
818
      border-radius: 50%;
819
      background: #fff;
820

  
821
      @include media-breakpoint-down(md) {
822
        display: none;
823
      }
824
    }
825
  }
826

  
748 827
  .time {
749 828
    display: flex;
750 829
    justify-content: center;
......
752 831
    width: 64px;
753 832
    font-size: 15px;
754 833
    padding: 3px 0 4px 0;
834
    z-index: 1000;
755 835
    border-radius: 15px;
756 836
    background: #0B155A;
837

  
838
    @include media-breakpoint-up(lg) {
839
      position: absolute;
840

  
841
      &.hour-0 {left: 0;}
842
      &.hour-1 {left: 25px;}
843
      &.hour-2 {left: 50px;}
844
      &.hour-3 {left: 75px;}
845
      &.hour-4 {left: 100px;}
846
      &.hour-5 {left: 125px;}
847
      &.hour-6 {left: 150px;}
848
      &.hour-7 {left: 175px;}
849
      &.hour-8 {left: 200px;}
850
      &.hour-9 {left: 225px;}
851
      &.hour-10 {left: 250px;}
852
      &.hour-11 {left: 275px;}
853
      &.hour-12 {left: 300px;}
854
      &.hour-13 {left: 325px;}
855
      &.hour-14 {left: 350px;}
856
      &.hour-15 {left: 375px;}
857
      &.hour-16 {left: 400px;}
858
      &.hour-17 {left: 425px;}
859
      &.hour-18 {left: 450px;}
860
      &.hour-19 {left: 475px;}
861
      &.hour-20 {left: 500px;}
862
      &.hour-21 {left: 525px;}
863
      &.hour-22 {left: 550px;}
864
      &.hour-23 {left: 585px;}
865
    }
757 866
  }
758 867
}
759 868

  

Také k dispozici: Unified diff