intia-theme 0.1.16 → 0.1.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29b89930dd6eb39693bee037d177d7e6c01f6210f57b019b745bd41e5619c527
4
- data.tar.gz: 2a44934b710dc03f53e77bcedf20d58b144f7b47cbd4eef0c472c89675002cd3
3
+ metadata.gz: 53296ddda845d66fa5916507b301141a35e3eabd5bcd02e44b1b96830192b1a4
4
+ data.tar.gz: '090e60815310dad0439bc027988ae48b9bf653a4ce8dfe63227f865952f6ed5c'
5
5
  SHA512:
6
- metadata.gz: 8b9b527d719ec52c5bda8f94652d0f9f7d559376ffe268abeb799cbfd8644e20be942e70315a198d8637345384da31fa5ece2ad9bd00552eead1424764b83d22
7
- data.tar.gz: f5bfdfaab597667c9892c759fba7f66e802cad3fced9bb9939fad7124e59f548e2d87b1fd470c2cec21abc405df3aced7b72dd52a8d4e7923aea892ebc9035ba
6
+ metadata.gz: 88c769261767a6388d356a7752160c75665808e806d0b77aff3c8e6ab9fb0846df0922fd0bf06ac42229db3c447eb2049ceabf7e342c7fc691c87bd74c5e5b51
7
+ data.tar.gz: 439342205624ceb041d7be888fd9ee0d2ca20490eab0d2f43cdf2f1f0d94a60b406f3786075e56fb967365e4ed2631cc3ecec43fd4966eed125c5b48f30a1467
@@ -1,6 +1,5 @@
1
1
  {% if page.contact %}
2
- <div class="green contact">
3
- <div class="container">
2
+ <div class="container contact">
4
3
  <h1>{{ site.data.contact.title }}</h1>
5
4
  {{ site.data.contact.introduction }}
6
5
  <form action="{{ site.data.contact.action }}" class="columns">
@@ -58,7 +57,7 @@
58
57
  oninput="this.setCustomValidity('')">
59
58
  </div>
60
59
 
61
- <div class="column">
60
+ <div class="column contact-agree">
62
61
  <label for="agree">{{ site.data.contact.checkbox }}</label><br><br>
63
62
  <button class="button is-rounded is-dark" type="submit">Abschicken</button>
64
63
  </div>
@@ -66,5 +65,4 @@
66
65
  </div>
67
66
  </form>
68
67
  </div>
69
- </div>
70
68
  {% endif %}
@@ -4,7 +4,7 @@
4
4
  <div class="navbar-brand column is-full">
5
5
  <a href="{{ site.baseurl }}/" class="columns navbar-item">
6
6
  <img class="column" src="{{ site.baseurl }}/assets/img/logo-white.png">
7
- <p class="calumn brand-title">Inklusiv für alle</p>
7
+ <p class="calumn brand-title"></p>
8
8
  </a>
9
9
  </div>
10
10
  <div class="column is-2">
@@ -54,12 +54,12 @@
54
54
  <div class="columns content is-small has-text-centered footer-logos">
55
55
  <div class="column has-text-right"><div class="page-owner">
56
56
  <p class="has-text-left">Eine Seite von</p>
57
- <img src="https://upload.wikimedia.org/wikipedia/commons/0/0e/TH_Koeln_Logo.svg">
58
- <img src="{{ site.baseurl }}/assets/img/logo-dites.png">
57
+ <img src="{{ site.baseurl }}/assets/img/logos/INTIA_Plattform_Logos_TH_weiss.png">
58
+ <img src="{{ site.baseurl }}/assets/img/logos/INTIA_Plattform_Logos_Dites_weiss.png">
59
59
  </div></div>
60
60
  <div class="column has-text-left"><div class="page-sponsor">
61
61
  <p class="has-text-left">Gefördert von</p>
62
- <img src="https://www.bmbf.de/SiteGlobals/Frontend/Images/icons/_common/logo.svg;jsessionid=73771066A725D13D2D34C4D38E4A181D.live382?__blob=normal&v=3">
62
+ <img src="{{ site.baseurl }}/assets/img/logos/INTIA_Plattform_Logos_BMBF_weiss.png">
63
63
  </div></div>
64
64
  </div>
65
65
  <div class="content is-small has-text-centered">
@@ -17,20 +17,25 @@
17
17
  {% for item in site.data.navigation %}
18
18
  {% if item.dropdown %}
19
19
  <div
20
- class="navbar-item has-text-left button is-rounded is-dark has-dropdown is-hoverable {% if site.fixed_navbar == 'bottom' %} has-dropdown-up {% endif %}">
21
- <a href="{{ item.link | relative_url }}"
22
- class="navbar-link {% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
20
+ class="navbar-item has-text-left button is-rounded is-dark has-dropdown is-hoverable {% if site.fixed_navbar == 'bottom' %} has-dropdown-up {% endif %} {% for subitem in item.dropdown %} {% if subitem.link == page.url %} is-active-header {% endif %} {% endfor %}">
21
+
22
+ {% if item.selectable %}
23
+ <a href="{{ item.link | relative_url }}"
24
+ class="navbar-link {% if item.link == page.url %} is-active {% endif %}">{{ item.name }}</a>
25
+ {% else %}
26
+ <a for="navbar-click" class="navbar-link">{{ item.name }}</a>
27
+ {% endif %}
23
28
  <div class="navbar-dropdown">
24
29
  {% for subitem in item.dropdown %}
25
30
  <a href="{{ subitem.link | relative_url }}"
26
- class="navbar-item button is-rounded is-dark {% if subitem.link == page.url %}is-active{% endif %}">{{ subitem.name
31
+ class="navbar-item button is-rounded is-dark {% if subitem.link == page.url %} is-active {% endif %}">{{ subitem.name
27
32
  }}</a>
28
33
  {% endfor %}
29
34
  </div>
30
35
  </div>
31
36
  {% else %}
32
37
  <a href="{{ item.link | relative_url }}"
33
- class="navbar-item button is-rounded is-dark {% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
38
+ class="navbar-item has-text-left button is-rounded is-dark {% if item.link == page.url %}is-active{% endif %}">{{ item.name }}</a>
34
39
  {% endif %}
35
40
  {% endfor %}
36
41
  {% endif %}
data/_sass/_layout.scss CHANGED
@@ -46,7 +46,7 @@ div.highlight {
46
46
  top: 30px;
47
47
  }
48
48
 
49
- .green {
49
+ .green {
50
50
  width: 100%;
51
51
  background-color: $light;
52
52
  padding-left: 5%;
@@ -78,9 +78,12 @@ div.highlight {
78
78
  img.is-rounded {
79
79
  border-radius: 65px;
80
80
  }
81
+ .hidden {
82
+ display: none;
83
+ }
81
84
  .arrow-image {
82
85
  z-index: 10;
83
- top: calc(50% - 68px);
86
+ top: calc(50% - 68px);
84
87
  left: 4vw;
85
88
  position: sticky;
86
89
  width: 64px;
@@ -161,7 +164,17 @@ a .tooltip-popup {
161
164
  .navbar-link {
162
165
  background-color: transparent;
163
166
  }
164
-
167
+ a.navbar-item:focus,
168
+ a.navbar-item:focus-within,
169
+ a.navbar-item:hover,
170
+ a.navbar-item.is-active,
171
+ .navbar-link:focus,
172
+ .navbar-link:focus-within,
173
+ .navbar-link:hover,
174
+ .navbar-link.is-active {
175
+ background-color: $primary-dark;
176
+ color: white;
177
+ }
165
178
  .button.is-rounded {
166
179
  padding-right: 0em !important;
167
180
  }
@@ -468,19 +481,20 @@ a .tooltip-popup {
468
481
  display: flex;
469
482
  background-color: white;
470
483
  border-radius: 1000px;
471
- padding: 3rem;
484
+ padding: 2rem;
472
485
  float: none;
473
486
  overflow: hidden;
474
487
  height: 300px;
475
- width: 300px;
488
+ width: 300px;
476
489
  }
477
490
  .highlighter .is-round img {
478
491
  background-color: white;
479
492
  padding-left: 0;
480
493
  padding-right: 0;
481
- object-fit: contain;
482
- height: auto;
494
+ object-fit: cover;
495
+ //height: auto;
483
496
  width: auto;
497
+ aspect-ratio: 1 / 1;
484
498
  }
485
499
 
486
500
  // Footer
@@ -496,8 +510,12 @@ a .tooltip-popup {
496
510
  flex-grow: 0;
497
511
  }
498
512
  .footer-logos img {
499
- height: 75px;
513
+ height: 80px;
500
514
  margin-right: 15px;
515
+ image-rendering: -webkit-optimize-contrast;
516
+ }
517
+ .footer-logos p {
518
+ padding-bottom: 5px;
501
519
  }
502
520
  .footer .title {
503
521
  color: white;
@@ -534,8 +552,6 @@ footer .columns {
534
552
  font-weight: 600;
535
553
  }
536
554
 
537
-
538
-
539
555
  // Tool-Tip
540
556
 
541
557
  .tooltip-popup {
@@ -563,13 +579,24 @@ a:hover .tooltip-popup,
563
579
  .input,
564
580
  .textarea,
565
581
  #thema {
582
+ background-color: $light;
566
583
  border: 3px solid $primary-dark;
567
584
  border-radius: 45px;
568
585
  padding-left: 2.5em;
569
586
  padding-right: 2.5em;
570
587
  }
571
- .input,
572
- #thema {
588
+ .input:hover,
589
+ .textarea:hover,
590
+ #thema:hover {
591
+ border: 3px solid $dark;
592
+ }
593
+ .input:focus,
594
+ .textarea:focus {
595
+ //border: 2px solid $primary-dark;
596
+ border: 3px solid $dark;
597
+ box-shadow: none;
598
+ }
599
+ .input {
573
600
  height: 2.75em;
574
601
  }
575
602
 
@@ -581,7 +608,7 @@ a:hover .tooltip-popup,
581
608
  .label {
582
609
  color: $primary-dark;
583
610
  font-weight: 600;
584
- padding-left: 1rem;
611
+ padding-left: 0.5rem;
585
612
  margin-bottom: 0 !important;
586
613
  }
587
614
  .contact .column {
@@ -589,10 +616,13 @@ a:hover .tooltip-popup,
589
616
  padding-bottom: 0;
590
617
  padding-left: 0;
591
618
  }
592
- .contact .contact-box {
619
+ .contact .contact-box {
593
620
  flex-grow: 0;
594
621
  padding-right: 50px;
595
622
  }
623
+ .contact-agree {
624
+ padding-right: 0 !important;
625
+ }
596
626
  .select:not(.is-multiple):not(.is-loading)::after {
597
627
  border-color: $primary-dark;
598
628
  right: 2.3em;
@@ -622,10 +652,11 @@ a:hover .tooltip-popup,
622
652
  height: 25px;
623
653
  border-radius: 8px;
624
654
  border: 2px solid $primary-dark;
625
- background-color: #fff;
655
+ background-color: $light;
626
656
  display: block;
627
657
  content: "";
628
658
  float: left;
659
+ left: 12px;
629
660
  //margin-top: 5px;
630
661
  //margin-right: 5px;
631
662
  z-index: 5;
@@ -636,7 +667,6 @@ a:hover .tooltip-popup,
636
667
  background-color: $primary-dark;
637
668
  }
638
669
 
639
-
640
670
  // newss
641
671
  .news {
642
672
  box-shadow: none;
@@ -690,36 +720,41 @@ a:hover .tooltip-popup,
690
720
  // Mobil
691
721
 
692
722
  @include mobile {
693
- body, .highlighter {
723
+ body,
724
+ .highlighter {
694
725
  font-size: 0.9rem;
695
726
  line-height: 1.5rem;
696
- }
697
- .arrow-image {
698
- display: none;
699
- }
700
- h1, h2, h3, p {
701
- padding-bottom: 0px;
702
- }
727
+ }
728
+ .arrow-image {
729
+ display: none;
730
+ }
731
+ h1,
732
+ h2,
733
+ h3,
734
+ p {
735
+ padding-bottom: 0px;
736
+ }
703
737
  h1,
704
738
  h1 p {
705
739
  font-size: 1.875rem; //30px
706
740
  }
707
741
  .home .hero-body h1 {
708
742
  max-width: none;
709
- }
710
- .subtitle {
711
- padding: 35px;
712
- padding-top: 0;
713
- }
714
- .title.is-1 {
715
- font-size: 1.3rem;
716
- font-weight: 600;
717
- }
718
- .subtitle.is-4 {
719
- font-size: 1.1rem;
720
- }
743
+ }
744
+ .subtitle {
745
+ padding: 35px;
746
+ padding-top: 0;
747
+ }
748
+ .title.is-1 {
749
+ font-size: 1.3rem;
750
+ font-weight: 600;
751
+ }
752
+ .subtitle.is-4 {
753
+ font-size: 1.1rem;
754
+ }
721
755
  h2,
722
- h2 p, .highlighter h2 {
756
+ h2 p,
757
+ .highlighter h2 {
723
758
  font-size: 1.2rem;
724
759
  }
725
760
 
@@ -738,41 +773,42 @@ h1, h2, h3, p {
738
773
  .navbar {
739
774
  padding-top: 0.6rem;
740
775
  padding-bottom: 0.6rem;
741
- }
776
+ }
742
777
  .navbar-brand img {
743
778
  margin: 1rem;
744
- }
745
- .hero.is-primary .title {
746
- padding-top: 35px;
747
- }
748
- .navbar-menu .button.is-dark {
749
- background-color: transparent;
750
- border-radius: 0;
751
- width: 100vw;
752
- }
753
- .navbar-menu {
754
- background-color: transparent;
755
- }
756
- a.navbar-link {
757
- background-color: $primary-dark;
758
- }
759
- a.navbar-item {
760
- background-color: $primary-dark !important;
761
- margin-left: 50px;
762
- }
763
- .navbar-item, .navbar-link {
764
- color: #fff;
765
- display: block;
766
- line-height: 2.5;
767
- padding: 0.9rem;
768
- position: relative;
769
- }
770
- .navbar-link:not(.is-arrowless)::after {
771
- border-color: #fff;
772
- }
773
- .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
774
- background-color: #09443e !important;
775
- }
779
+ }
780
+ .hero.is-primary .title {
781
+ padding-top: 35px;
782
+ }
783
+ .navbar-menu .button.is-dark {
784
+ background-color: transparent;
785
+ border-radius: 0;
786
+ width: 100vw;
787
+ }
788
+ .navbar-menu {
789
+ background-color: transparent;
790
+ }
791
+ a.navbar-link {
792
+ background-color: $primary-dark;
793
+ }
794
+ a.navbar-item {
795
+ background-color: $primary-dark !important;
796
+ margin-left: 50px;
797
+ }
798
+ .navbar-item,
799
+ .navbar-link {
800
+ color: #fff;
801
+ display: block;
802
+ line-height: 2.5;
803
+ padding: 0.9rem;
804
+ position: relative;
805
+ }
806
+ .navbar-link:not(.is-arrowless)::after {
807
+ border-color: #fff;
808
+ }
809
+ .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
810
+ background-color: #09443e !important;
811
+ }
776
812
  .button {
777
813
  height: auto;
778
814
  }
@@ -781,14 +817,15 @@ a.navbar-item {
781
817
  font-size: 0.8rem !important;
782
818
  font-weight: 600;
783
819
  }
784
- .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
820
+ .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
785
821
  background-color: #09443e;
786
822
  color: #fff;
787
- }
823
+ }
788
824
  .buttons {
789
- // display: table-caption;
825
+ // display: table-caption;
790
826
  }
791
- .hero-body .button, .content-wrapper .button {
827
+ .hero-body .button,
828
+ .content-wrapper .button {
792
829
  padding: 0.5rem !important;
793
830
  }
794
831
  .hero.is-medium .hero-body {
@@ -798,15 +835,17 @@ a.navbar-item {
798
835
  // Buttongröße aus Figma
799
836
  height: auto;
800
837
  }
801
- .story-slider, .content-wrapper img {
838
+ .story-slider,
839
+ .content-wrapper img {
802
840
  border-radius: 25px !important;
803
- }
804
- .column.slider-image img {
805
- border-top-right-radius: 25px !important;
806
- border-bottom-left-radius: 0 !important;
807
- border-bottom-right-radius: 0 !important;
808
- }
809
- .slider-navigation-next, .slider-navigation-previous {
841
+ }
842
+ .column.slider-image img {
843
+ border-top-right-radius: 25px !important;
844
+ border-bottom-left-radius: 0 !important;
845
+ border-bottom-right-radius: 0 !important;
846
+ }
847
+ .slider-navigation-next,
848
+ .slider-navigation-previous {
810
849
  top: 100% !important;
811
850
  width: 20px !important;
812
851
  height: 20px !important;
@@ -815,30 +854,30 @@ a.navbar-item {
815
854
  }
816
855
  .card-content p {
817
856
  padding-left: 3rem;
818
- }
819
- .card {
820
- margin-top: 0;
821
- }
822
- .card-content {
823
- padding: 2.5rem;
824
- }
825
- .left.card-image {
826
- padding-left: 2.5rem;
827
- padding-right: 2.5rem;
828
- }
829
- .right.card-image {
830
- padding-bottom: 2.5rem;
831
- }
832
- .columns {
833
- margin-left: 0;
834
- margin-right: 0;
835
- margin-top: 0;
836
- }
837
- .two-columns p {
838
- column-count: 1;
839
- column-gap: 1rem;
840
- }
857
+ }
858
+ .card {
859
+ margin-top: 0;
860
+ }
861
+ .card-content {
862
+ padding: 2.5rem;
863
+ }
864
+ .left.card-image {
865
+ padding-left: 2.5rem;
866
+ padding-right: 2.5rem;
867
+ }
868
+ .right.card-image {
869
+ padding-bottom: 2.5rem;
870
+ }
871
+ .columns {
872
+ margin-left: 0;
873
+ margin-right: 0;
874
+ margin-top: 0;
875
+ }
876
+ .two-columns p {
877
+ column-count: 1;
878
+ column-gap: 1rem;
879
+ }
841
880
  .footer-logos .column {
842
881
  text-align: left !important;
843
882
  }
844
- }
883
+ }
data/_sass/_main.scss CHANGED
@@ -132,7 +132,20 @@ h5 {
132
132
  border-color: transparent;
133
133
  color: white;
134
134
  }
135
-
135
+ @include desktop {
136
+ .navbar-menu .button.is-dark:hover.has-dropdown,
137
+ .navbar-menu .button.is-dark.is-hovered.has-dropdown {
138
+ background-color: $primary-dark;
139
+ }
140
+ }
141
+ .is-active-header {
142
+ background-color: $dark !important;
143
+ }
144
+ @include mobile {
145
+ .is-active-header {
146
+ background-color: transparent !important;
147
+ }
148
+ }
136
149
  // Dropdownmenüelemente
137
150
  .navbar-dropdown,
138
151
  .navbar-item:focus,
@@ -142,6 +155,11 @@ h5 {
142
155
  border-width: 2px;
143
156
  color: white;
144
157
  }
158
+ .navbar.is-primary .navbar-start .navbar-item:hover .navbar-link::after,
159
+ .navbar.is-primary .navbar-end .navbar-item:hover .navbar-link::after {
160
+ transform: rotate(135deg);
161
+ margin-top: 0;
162
+ }
145
163
 
146
164
  // Dropdownmenühintergrund und Rand
147
165
  .navbar-dropdown {
@@ -159,6 +177,13 @@ h5 {
159
177
  .navbar-item {
160
178
  //padding-top: 21px;
161
179
  }
180
+ .navbar-dropdown {
181
+ display: none;
182
+ }
183
+ .button.is-dark.has-dropdown:hover .navbar-dropdown,
184
+ .button.is-dark.is-hovered.has-dropdown .navbar-dropdown {
185
+ display: block;
186
+ }
162
187
 
163
188
  .footer {
164
189
  background-color: $primary-dark;
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: intia-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marc Schmidt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-18 00:00:00.000000000 Z
11
+ date: 2021-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -69,6 +69,16 @@ files:
69
69
  - assets/img/logo-white-old.png
70
70
  - assets/img/logo-white.png
71
71
  - assets/img/logo.png
72
+ - assets/img/logos/BMBF-01.png
73
+ - assets/img/logos/DiTes_Single.png
74
+ - assets/img/logos/Diakonie_Logo.png
75
+ - assets/img/logos/EvJugendhilfe_Logo.png
76
+ - assets/img/logos/FJMK_Logo.png
77
+ - assets/img/logos/INTIA_Plattform_Logos_BMBF_weiss.png
78
+ - assets/img/logos/INTIA_Plattform_Logos_Dites_weiss.png
79
+ - assets/img/logos/INTIA_Plattform_Logos_TH_weiss.png
80
+ - assets/img/logos/StadtGrenzenlos_Logo.png
81
+ - assets/img/logos/TH_Single.png
72
82
  - assets/img/posts/escape-game.jpg
73
83
  - assets/img/posts/messenger.jpg
74
84
  - assets/img/posts/photoprobe.jpg