Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:

Лаба №5 / styles

.css
Скачиваний:
5
Добавлен:
19.06.2025
Размер:
1 Кб
Скачать
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.top-navigation {
  height: 29px;
  width: 100%;
  background: #eee;
}

.header {
  display: flex;
  align-items: center;
  padding: 10px 0;
  width: 980px;
  margin: 0 auto;
}

.logo {
  width: 200px;
  height: 102px;
  background: #ccc;
}

.nav-menu {
  flex-grow: 1;
  height: 102px;
  background: #bbb;
}

.main-banner {
  height: 300px;
  width: 980px;
  background: #aaa;
  margin: 0 auto;
}

.content {
  display: flex;
  width: 980px;
  margin: 0 auto;
}

.left-column {
  width: 350px;
  background: #ddd;
}

.right-column {
  width: 630px;
  background: #eee;
}

.top-right {
  height: 200px;
  background: #ccc;
}

.bottom-right {
  height: 200px;
  background: #bbb;
}

.footer {
  display: flex;
  width: 980px;
  margin: 0 auto;
  height: 296px;
  background: #f5f5f5;
}

.newsletter {
  width: 350px;
  background: #ddd;
}

.why-us {
  width: 200px;
  background: #ccc;
}

.follow-us {
  width: 200px;
  background: #bbb;
}

.address {
  width: 230px;
  background: #aaa;
}

.footer-bar {
  height: 50px;
  width: 100%;
  background: #999;
}
Соседние файлы в папке Лаба №5