css header
This commit is contained in:
		@@ -148,7 +148,6 @@ svg.ext {
 | 
				
			|||||||
header {
 | 
					header {
 | 
				
			||||||
  display: grid;
 | 
					  display: grid;
 | 
				
			||||||
  grid-template-columns: repeat(12, 1fr);
 | 
					  grid-template-columns: repeat(12, 1fr);
 | 
				
			||||||
  grid-gap: 10px;
 | 
					 | 
				
			||||||
  grid-template-rows: repeat(3, 1fr);
 | 
					  grid-template-rows: repeat(3, 1fr);
 | 
				
			||||||
  height: 150px;
 | 
					  height: 150px;
 | 
				
			||||||
  background-color: white;
 | 
					  background-color: white;
 | 
				
			||||||
@@ -206,10 +205,12 @@ header {
 | 
				
			|||||||
        header .header_left_container img {
 | 
					        header .header_left_container img {
 | 
				
			||||||
          height: 50px; } }
 | 
					          height: 50px; } }
 | 
				
			||||||
  header .header_right_container {
 | 
					  header .header_right_container {
 | 
				
			||||||
    padding-right: 10px; }
 | 
					    padding-left: calc(100% /4); }
 | 
				
			||||||
    @media (max-width: 660px) {
 | 
					    @media (max-width: 660px) {
 | 
				
			||||||
      header .header_right_container {
 | 
					      header .header_right_container {
 | 
				
			||||||
        padding-right: 0; } }
 | 
					        padding-right: 0; } }
 | 
				
			||||||
 | 
					    header .header_right_container .language-switcher-language-url {
 | 
				
			||||||
 | 
					      text-transform: uppercase; }
 | 
				
			||||||
      header .header_right_container .language-switcher-language-url ul {
 | 
					      header .header_right_container .language-switcher-language-url ul {
 | 
				
			||||||
        display: flex;
 | 
					        display: flex;
 | 
				
			||||||
        flex-direction: row;
 | 
					        flex-direction: row;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -43,20 +43,20 @@
 | 
				
			|||||||
// //// ancre dans texte au click parragraphe correspondant arrive en dessous du header 
 | 
					// //// ancre dans texte au click parragraphe correspondant arrive en dessous du header 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(function($, window) {
 | 
					// (function($, window) {
 | 
				
			||||||
  var adjustAnchor = function() {
 | 
					//   var adjustAnchor = function() {
 | 
				
			||||||
      var $anchor = $('.sidebar_first_container'),
 | 
					//       var $anchor = $('.sidebar_first_container'),
 | 
				
			||||||
              fixedElementHeight = 350;
 | 
					//               fixedElementHeight = 350;
 | 
				
			||||||
      if ($anchor.length > 0) {
 | 
					//       if ($anchor.length > 0) {
 | 
				
			||||||
          $('html, body').stop().animate({scrollTop: $anchor.offset().top - fixedElementHeight }, 0);
 | 
					//           $('html, body').stop().animate({scrollTop: $anchor.offset().top - fixedElementHeight }, 0);
 | 
				
			||||||
      }
 | 
					//       }
 | 
				
			||||||
  };
 | 
					//   };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  $(window).on('hashchange', function() {
 | 
					//   $(window).on('hashchange', function() {
 | 
				
			||||||
      adjustAnchor();
 | 
					//       adjustAnchor();
 | 
				
			||||||
  });
 | 
					//   });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
})(jQuery, window);
 | 
					// })(jQuery, window);
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
header{
 | 
					header{
 | 
				
			||||||
    display: grid;
 | 
					    display: grid;
 | 
				
			||||||
    grid-template-columns: repeat(12, 1fr);
 | 
					    grid-template-columns: repeat(12, 1fr);
 | 
				
			||||||
    grid-gap: 10px;
 | 
					    // grid-gap: 10px;
 | 
				
			||||||
    grid-template-rows: repeat(3, 1fr);
 | 
					    grid-template-rows: repeat(3, 1fr);
 | 
				
			||||||
    height: $header-height;
 | 
					    height: $header-height;
 | 
				
			||||||
    background-color: $white-header;
 | 
					    background-color: $white-header;
 | 
				
			||||||
@@ -70,11 +70,14 @@ header{
 | 
				
			|||||||
         }
 | 
					         }
 | 
				
			||||||
     }
 | 
					     }
 | 
				
			||||||
     .header_right_container{
 | 
					     .header_right_container{
 | 
				
			||||||
        padding-right: 10px;
 | 
					        // padding-right: 30%;
 | 
				
			||||||
 | 
					        padding-left: calc(100% /4);
 | 
				
			||||||
        @media(max-width: 660px){
 | 
					        @media(max-width: 660px){
 | 
				
			||||||
            padding-right: 0;
 | 
					            padding-right: 0;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        .language-switcher-language-url{
 | 
					        .language-switcher-language-url{
 | 
				
			||||||
 | 
					            // padding-left: 30%;
 | 
				
			||||||
 | 
					            text-transform: uppercase;
 | 
				
			||||||
            ul{
 | 
					            ul{
 | 
				
			||||||
                display: flex;
 | 
					                display: flex;
 | 
				
			||||||
                flex-direction: row;   
 | 
					                flex-direction: row;   
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user