Jump to content
  • 0

Как избавиться от переопределения стилей?


fooxy96
 Share

Question

В медиа запросах в стилях стоят переопределенные стили под разные экраны, путём уменьшения экрана подключается эти медиа запросы. Видел ролик, что так нельзя делать. если в инспекторе закрыт стиль черточкой то это плохо, но не знаю почему. Стоит ли так делать или стоит всё переделать!?

 image.thumb.png.a0c356452dc8355716c397503d470e23.png

image.thumb.png.2bf420ff52b0d818a1b5c52b8375b546.png

Мой сайт

<!DOCTYPE html>
<html lang="ru">
   <head>
      <meta name="viewport" content="width=device-width">
      <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
	   <link rel="stylesheet" href="css/clear_css.css">
      <link rel="stylesheet" href="css/style.css">
	   <link rel="stylesheet" href="css/slider.css">
      <meta charset="UTF-8">
      <title>GoSport</title>
   </head>
   <body>
      <header class="header">
         <div class="header-logo">
            <img class="header-logo__img" src="img/logo.svg" alt="logo">
            <div class="header-logo__logo-title">
               <div class="header-logo__title-top">GoSport</div>
               <div class="header-logo__title-bottom">Магазин спортивных товаров</div>
            </div>
         </div>
         <div class="call">
            <a class="call__number" href="tel:+7(495)746-86-48">+7(495)746-86-48</a>
            <button class="call__btn">Заказать звонок</button>
         </div>
      </header>
      <div class="header-menu">
         <nav class="menu">
            <a class="menu__link menu__link_none" href="#">Тренажеры</a>
            <a class="menu__link" href="#">Фитнес</a>
            <a class="menu__link" href="#">Инвентарь</a>
            <a class="menu__link" href="#">Массажное оборудование</a>
            <a class="menu__link" href="#">Другое</a>
         </nav>
      </div>
	   <div class="lk-box">
         <form class="form-search">
            <input class="form-search__input-search" type="search" name="q" id="gsearch" placeholder="Поиск среди 7000 товаров">
            <button class="form-search__find-button" type="submit"></button>
         </form>
         <div class="panel">
            <button id="panel__exit">Войти</button>
            <button id="panel__basket">Корзина</button>
         </div>
      </div>
	  <div class="description">
	  	 <div class="top-directory">
			 <h1 class="description__title">
				 Начните вести здоровый образ жизни вместе с GoSport!
			 </h1>
			 <p class="description__text">
				 Все товары вы сможете найти у нас в каталоге, на некоторые из них действуют сезонные скидки и спец предложения.  У нас в наличии множество товаров как для новичков так и для профи.
			 </p>
			 <button class="description__btn">
			 	 Смотреть каталог
			 </button>
		 </div>
	  	 <div class="top-slider">
			 Слайдер
		 </div>
	  </div>
   </body>
</html>
@charset "utf-8";
/* CSS Document */
 .header {
     display: flex;
	 justify-content: space-between;
     height: 91px;
     background-color: #2B3D2F;
     flex-wrap: nowrap;
}
 .header-logo{
     display: flex;
     align-items: center;
     align-self: center;
     flex: 0 0 auto;
     padding-left: 21px;
}
 .header-logo__img{
     width: 50px;
     height: 50px;
}
 .header-logo__logo-title{
     padding-left: 15px;
}
 .header-logo__title-top{
     font-family: Roboto;
     font-style: normal;
     font-weight: bold;
     font-size: 18px;
     line-height: 21px;
     color: #FFFFFF;
}
 .header-logo__title-bottom{
     font-family: Roboto;
     font-style: normal;
     font-weight: normal;
     font-size: 14px;
     line-height: 16px;
     color: #FFFFFF;
}
 .call{
     display: flex;
     justify-content: flex-end;
     align-items: center;
     align-self: center;
     flex: 0 0 auto;
	 flex-wrap: wrap;
}
 .call__number{
     font-family: Roboto;
     font-style: normal;
     font-weight: bold;
     font-size: 14px;
     line-height: 16px;
     color: #FFFFFF;
}
 .call__btn{
     font-family: Roboto;
     font-style: normal;
     font-weight: normal;
     font-size: 13px;
     line-height: 15px;
     color: #FFFFFF;
     border: 1px solid rgba(255, 255, 255, 0.6);
     border-radius: 5px;
     padding: 15px;
     background: #2B3D2F;
     margin: 0px 80px 0px 38px;
     transition-duration: 2s;
     transition-property: border-color, color;
}
 .call__btn:hover {
     border-color: chartreuse;
     color: chartreuse;
}
 .header-menu {
     display: flex;
     align-items: center;
     height: 28px;
     background: rgba(22, 30, 25, 0.97);
}
 .lk-box{
     display: flex;
     justify-content: space-between;
     margin: 25px 0px 0px 0px;
     padding: 0px 70px;
}
 @media screen and (max-width : 786px ){
	 .call__btn{
		 margin: 0px 10px 0px 10px;
	 }
     .lk-box{
         display: none;
    }
     nav.menu{
         font-size: 10px;
         margin-left: 15px;
    }
     .call{
         display: flex;
	     margin: 0px;
    }
     .header-logo{
         display: flex;
         justify-content: flex-start;
         padding: 0px 0px 0px 12px;
    }
     .header{
         padding-top: 10px;
         height: 115px;
    }
     .header-menu{
         height: 25px;
    }
}
 @media screen and (max-width : 435px ){
     nav.menu{
         display: none;
    }
     .call__btn{
         padding: 8px;
    }
     .header-logo{
		 padding: 0px;
    }
     .header-logo__logo-title{
         padding-left: 5px;
    }
     .call{
		 padding-bottom: 5px;
    }
     .header{
         flex-direction: column;
		 justify-content: space-around;
    }
     .call__number{
         display: none;
    }
     .header-menu{
         height: 17px;
    }
}

 .menu {
     display: flex;
     font-family: Roboto;
     margin-left: 71px;
}
 .menu__link {
     display: flex;
     color: #FFFFFF;
     margin-left: 25px;
     flex: 0 1 auto;
     transition-duration: 0.7s;
     transition-property: color;
}
 .menu__link_none {
     margin: 0;
}
 .menu__link:hover {
     color: lightskyblue;
}
 .form-search{
     display: flex;
     flex: 0 1 auto;
	 margin-left: -50px;
}
 .form-search__input-search{
     width: 345px;
     padding: 0px 15px;
	 border: 1px solid #E6E6E6;
	 border-radius: 3px;
}
 .form-search__find-button{
     background: url("../img/search-icon.svg") no-repeat 50% 50%;
    /* Параметры фона */
     background-size: 25px;
     background-color: #FF8E25;
     border-radius: 0px 5px 5px 0px;
     width: 50px;
     height: 45px;
     flex: 0 0 auto;
}
 .form-search__find-button:hover{
     background-color: rgba(255,127,8,1.00);
     transition-duration: 0.9s;
     transition-property: background-color;
}
 .form-search__input-search:hover{
     border-color: dodgerblue;
     transition-duration: 1.2s;
     transition-property: border-color;
}
 .panel{
     display: flex;
	 justify-content: space-between;
}
 #panel__exit{
	 display: flex;
	 justify-content: center;
	 align-items: center;
     min-width: 100px;
     min-height: 45px;
     font-family: Roboto;
     font-style: normal;
     font-weight: normal;
     font-size: 14px;
     color: #FF8E25;
     transition-duration: 0.9s;
     transition-property: color, background-color;
     background-color: white;
     border: 1px solid #E6E6E6;
     border-radius: 3px;
}
 #panel__exit:hover{
     color: white;
     background: #FF8E25;
}
 #panel__basket{
     display: flex;
	 justify-content: flex-start;
	 align-items: center;
     width: 168px;
     height: 45px;
     background-color: #FF8E25;
     border-radius: 3px;
     font-family: Roboto;
     padding-left: 20px;
     font-style: normal;
     font-weight: normal;
     font-size: 14px;
     color: #FFFFFF;
     transition-duration: 0.9s;
     transition-property: background-color;
     margin-left: 20px;
}
 #panel__basket:hover{
     background-color: rgba(255,127,8,1.00);
}
 .form-search__input-search:-ms-input-placeholder{
     color: #DDDDDD;
     font-family: Roboto;
     font-style: normal;
     font-weight: normal;
     font-size: 14px;
}
 .form-search__input-search::placeholder{
     color: #DDDDDD;
     font-family: Roboto;
     font-style: normal;
     font-weight: normal;
     font-size: 14px;
}

@media screen and (max-width : 550px ){
	.call__number{
		display: none;
	}
}

.description{
	display: flex;
	padding: 24px 81px 0px 80px
}

.top-directory{
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
    width: 40%;
	padding-top: 50px;
	margin-right: 77px;
}

.description__title{
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	font-size: 36px;
	line-height: 42px;
	color: #161E19;
}

.description__text{
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 16px;
	color: #161616;
	margin-top: 18px;
}

.description__btn{
	width: 205px;
	height: 50px;
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #FFFFFF;
	background-color: #FF8E25;
	border-radius: 5px;
	margin: 35px 0px 0px 35px;
}

.description__btn:hover{
	background: red;
}

.top-slider{
	width: 60%;
}

@media screen and (max-width: 790px) {
	.description__title{
		 font-size: 24px;
		 line-height: 28px;
	 }
	 .description__text{
		 display: none;
	 }
	 .description{
		 flex-direction: column;
		 padding: 0px;
	 }
	 .top-directory{
		 display: flex;
		 flex-direction: row;
		 align-items: center;
		 width: 100%;
		 padding: 15px;
	 }
	.description__btn{
		margin: 0px 0px 0px 117px;
		padding: 0px 10px;
	}
	.top-slider{
		width: 100%;
	}
}

@media screen and (max-width : 454px ){
     .header-logo{
         padding: 0px 5px;
    }
     .header-logo__logo-title{
         display: none;
    }
	 .description__btn{
		 font-size: 10px;
		 line-height: 12px;
		 margin: 7px 0px 0px 0px;
		 width: 123px;
		 height: 30px;
	 }
	  .description__title{
		 font-size: 14px;
		 line-height: 16px;
		 text-align: center;
	 }
	.top-directory{
		flex-direction: column;
		padding: 20px;
	}
}

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

можете попробовать через js ставить class для корневого элемента и привязываться к нему для переопределения стилей документа:
.rs1080 .header, .rs1080 .content {}
.rs800 .header, .rs800 .content {}
....
возможно получите тот эффект которого ищите

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Similar Content

    • By zeiger2
      Здравствуйте! У меня стоит задача, что при наведении на блок li строка должна поменять цвет, в том числе и картинка. Я меняю картинку с помощью 
      background-image: none;     background: url(../img/check_icon_red.png) left no-repeat;   Но теперь картинка позицианируется не там где должна, её можно поставить на место только вручную, через -100px. Нужно поставить ровно туда, где она была. Должна быть в одном ряду с другими
    • By Mix9
      есть див с 5 img, при уменьшении экрана див выходит за него. Я добавил overflow: auto для этого div в надежде на то, что я смогу прокручивать фотки с помощью скроллбара, однако даже с ним почему-то я не вижу часть фоток которые вышли за границу. Что с этим можно сделать? класс video повторяется 5 раз, я тут оставил только 1 
      .content{ width: 90%; background-color: #333; } .video{ margin: 0px 4px 0px 4px; width: 310; display: flex; flex-direction:column; } .video_button_text{ margin-top: 10px; display: flex; flex-direction: row; font-size: 20px; color: white; } .video_text_div{ display: inline-block; width: 250px; } .video_text{ text-align: justify-all; margin: 0px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .slidan_videos{ margin: 0px 10px 0px 20px; overflow: auto; width: auto; margin-bottom: 50px; display: flex; flex-direction: row; justify-content: space-around; } <div class="content"> <div class = slidan_videos> <div class = video> <div> <a href = 'ссылка'><img class="img" src=""картинка"></a> </div> <div class = video_button_text> <div class = avatarka_div> <a href="ссылка" target="_blank"><img class = avatarka src="картинка"></a> </div> <div class = video_text_div> <p class = video_text><a href="ссылка">текст</a></p> </div> </div> </div>
    • By Марко
      Добрый день. Начинающий программист, столкнулся с проблемой. Селектор .class не работает должным образом. Несмотря на правильное, я надеюсь, описание, на web-странице не отображается ни одно изображение. С чем может быть связано? Заранее спасибо за помощь. 



    • By Kaido
      Использую готовый плагин для модальных окон(от MaxGraph). Проблема в том, что когда у меня открыто два модальных окна, для примера Форма + Политика конфендициальности, и мне нужно закрыть политику вместе с ней закрывается и другое модальное окно. В JS я не сильно разбираюсь(собственно из за этого и использую готовый плагин), можете помочь кто работал с этим плагином? Я примерно понимаю как он работает, но реализовать чтобы закрывалось только одно не получается.
       
        <div class="content"> <button class="modal-btn" data-path="first" data-animation="fadeInUp" data-speed="1500">Открыть окно 1</button> </div> <div class="modal"> <div class="modal__wrapp" data-target="first"> <div class="modal__content"> <button class="modal__close">Закрыть</button> модальное окно <button data-path="policy">Политика</button> </div> </div> <div class="modal__wrapp" data-target="policy"> <div class="modal__content"> <button class="modal__close">Закрыть</button> политика </div> </div> </div> .modal { --transition-time: 0.3s; position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 1000; cursor: pointer; overflow-y: auto; overflow-x: hidden; text-align: center; opacity: 0; visibility: hidden; transition: opacity var(--transition-time), visibility var(--transition-time); } .modal__wrapp { display: none; cursor: default; width: fit-content; height: fit-content; } .modal__content{ position: absolute; left: 500px; width: 500px; height: 500px; display: flex; color: white; flex-direction: column; text-align: left; background-color: #000; } .modal__content button{ width: 200px; height: 50px; margin: 50px 0; } .modal.is-open { opacity: 1; visibility: visible; transition: opacity var(--transition-time), visibility var(--transition-time); } .modal__wrapp.modal-open { display: flex; } .disable-scroll { position: relative; overflow: hidden; height: 100vh; position: fixed; left: 0; top: 0; width: 100%; } .fade { opacity: 0; transition: opacity var(--transition-time); } .fade.animate-open { opacity: 1; transition: opacity var(--transition-time); } .fadeInUp { opacity: 0; transform: translateY(vw(-100)); transition: opacity var(--transition-time), transform var(--transition-time); } .fadeInUp.animate-open { opacity: 1; transform: translateY(0); transition: opacity var(--transition-time), transform var(--transition-time); } .modal__wrapp[data-target="policy"] .modal__content{ left: 1050px; background-color: #000; opacity: .5; } class Modal { constructor(options) { let defaultOptions = { isOpen: () => {}, isClose: () => {}, } this.options = Object.assign(defaultOptions, options); this.modal = document.querySelector('.modal'); this.speed = false; this.animation = false; this.isOpen = false; this.modalContainer = false; this.previousActiveElement = false; this.fixBlocks = document.querySelectorAll('.fix-block'); this.focusElements = [ 'a[href]', 'input', 'button', 'select', 'textarea', '[tabindex]' ]; this.events(); } events() { if (this.modal) { document.addEventListener('click', function(e){ const clickedElement = e.target.closest('[data-path]'); if (clickedElement) { let target = clickedElement.dataset.path; let animation = clickedElement.dataset.animation; if (clickedElement.classList.contains('modal-close')) { this.close(); } let speed = clickedElement.dataset.speed; this.animation = animation ? animation : 'fade'; this.speed = speed ? parseInt(speed) : 300; this.modalContainer = document.querySelector(`[data-target="${target}"]`); this.open(); return; } if (e.target.closest('.modal__close')) { this.close(); return; } }.bind(this)); window.addEventListener('keydown', function(e) { if (e.keyCode == 27) { if (this.isOpen) { this.close(); } } if (e.keyCode == 9 && this.isOpen) { this.focusCatch(e); return; } }.bind(this)); this.modal.addEventListener('click', function(e) { if (!e.target.classList.contains('modal__wrapp') && !e.target.closest('.modal__wrapp') && this.isOpen) { this.close(); } }.bind(this)); } } open() { this.previousActiveElement = document.activeElement; this.modal.style.setProperty('--transition-time', `${this.speed / 1000}s`); this.modal.classList.add('is-open'); this.disableScroll(); this.modalContainer.classList.add('modal-open'); this.modalContainer.classList.add(this.animation); setTimeout(() => { this.options.isOpen(this); this.modalContainer.classList.add('animate-open'); this.isOpen = true; this.focusTrap(); }, this.speed); } close() { if (this.modalContainer) { this.modalContainer.classList.remove('animate-open'); this.modalContainer.classList.remove(this.animation); this.modal.classList.remove('is-open'); this.modalContainer.classList.remove('modal-open'); this.enableScroll(); this.options.isClose(this); this.isOpen = false; this.focusTrap(); } } focusCatch(e) { const focusable = this.modalContainer.querySelectorAll(this.focusElements); const focusArray = Array.prototype.slice.call(focusable); const focusedIndex = focusArray.indexOf(document.activeElement); if (e.shiftKey && focusedIndex === 0) { focusArray[focusArray.length - 1].focus(); e.preventDefault(); } if (!e.shiftKey && focusedIndex === focusArray.length - 1) { focusArray[0].focus(); e.preventDefault(); } } focusTrap() { const focusable = this.modalContainer.querySelectorAll(this.focusElements); if (this.isOpen) { focusable[0].focus(); } else { this.previousActiveElement.focus(); } } disableScroll() { let pagePosition = window.scrollY; this.lockPadding(); document.body.classList.add('disable-scroll'); document.body.dataset.position = pagePosition; document.body.style.top = -pagePosition + 'px'; } enableScroll() { let pagePosition = parseInt(document.body.dataset.position, 10); this.unlockPadding(); document.body.style.top = 'auto'; document.body.classList.remove('disable-scroll'); window.scroll({ top: pagePosition, left: 0 }); document.body.removeAttribute('data-position'); } lockPadding() { let paddingOffset = window.innerWidth - document.body.offsetWidth + 'px'; this.fixBlocks.forEach((el) => { el.style.paddingRight = paddingOffset; }); document.body.style.paddingRight = paddingOffset; } unlockPadding() { this.fixBlocks.forEach((el) => { el.style.paddingRight = '0px'; }); document.body.style.paddingRight = '0px'; } } const modal = new Modal({ isOpen: (modal) => { console.log(modal); console.log('opened'); }, isClose: () => { console.log('closed'); }, });  
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy