Compare commits
1 Commits
1e887a95f4
...
lab1
| Author | SHA1 | Date | |
|---|---|---|---|
| 389f858b65 |
282
basket.css
282
basket.css
@@ -4,115 +4,122 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 1200px;
|
||||
font-size: 18px;
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.content {
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
a {
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #dbe2ef;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
a:visited,
|
||||
a:link {
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
height: 90px;
|
||||
background: #112d4e;
|
||||
padding: 0;
|
||||
color: #dbe2ef;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 0 20px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.logo {
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
border-radius: 15px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0 20px;
|
||||
font-size: 1.5em;
|
||||
margin-left: 20px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.menu li {
|
||||
margin-left: 20px;
|
||||
.menu > li {
|
||||
margin-right: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.menu > li:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown > a {
|
||||
cursor: pointer;
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
padding-top: 10px;
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
padding: 10px 0;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
border-bottom: 1px solid #fff;
|
||||
font-size: 0.8em;
|
||||
width: 100%;
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.features-menu li:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.features-menu a {
|
||||
color: #112d4e;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.features-menu li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.sad {
|
||||
flex: 1;
|
||||
.sad{
|
||||
padding-top: 150px;
|
||||
color: #00264d;
|
||||
text-align: center;
|
||||
padding-bottom: 110px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
@@ -141,185 +148,4 @@ a:link {
|
||||
|
||||
.contact-info {
|
||||
text-align: right;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/* Мобильные устройства до 400px */
|
||||
@media (max-width: 400px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.2em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
gap: 5px;
|
||||
padding-left: 10px;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.menu > li {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
z-index: 1000;
|
||||
padding: 10px 0;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sad h1 {
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.sad img {
|
||||
width: 90%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.footer {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
font-size: smaller;
|
||||
padding-bottom: 120px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Устройства от 400px до 767px */
|
||||
@media (min-width: 400px) and (max-width: 767px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin-left: 10px;
|
||||
font-size: 1em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
gap: 8px;
|
||||
font-size: 0.85em;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: static;
|
||||
background: #b2d6ff;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sad img {
|
||||
width: 90%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.footer {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
font-size: smaller;
|
||||
padding-bottom: 120px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Планшеты */
|
||||
@media (min-width: 768px) and (max-width: 1023px) {
|
||||
.text-container h2 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 350px;
|
||||
}
|
||||
|
||||
.sad img {
|
||||
width: 80%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* Маленькие десктопы */
|
||||
@media (min-width: 1024px) and (max-width: 1365px) {
|
||||
.text-container h2 {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
}
|
||||
|
||||
/* Большие экраны */
|
||||
@media (min-width: 1366px) {
|
||||
.text-container h2 {
|
||||
font-size: 3em;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,6 @@
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
||||
<title>cyxaruk shop catalog</title>
|
||||
<link rel="stylesheet" href="basket.css" />
|
||||
</head>
|
||||
@@ -10,8 +9,8 @@
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
<h1>cyxaruk shop</h1>
|
||||
</a>
|
||||
<h1>cyxaruk shop</h1>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
|
||||
260
catalog.css
260
catalog.css
@@ -5,112 +5,120 @@
|
||||
}
|
||||
|
||||
body {
|
||||
height: 1200px;
|
||||
font-size: 18px;
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.content{
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.main{
|
||||
flex: 1 1 auto
|
||||
}
|
||||
|
||||
a {
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #dbe2ef;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
a:visited,
|
||||
a:link {
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
height: 90px;
|
||||
background: #112d4e;
|
||||
padding: 0;
|
||||
color: #dbe2ef;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 0 20px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.logo{
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
border-radius: 15px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0 20px;
|
||||
font-size: 1.5em;
|
||||
margin-left: 20px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.menu li {
|
||||
margin-left: 20px;
|
||||
.menu > li {
|
||||
margin-right: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.menu > li:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown > a {
|
||||
cursor: pointer;
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
padding-top: 10px;
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
padding: 10px 0;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
border-bottom: 1px solid #fff;
|
||||
font-size: 0.8em;
|
||||
width: 100%;
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.features-menu li:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.features-menu a {
|
||||
color: #112d4e;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.features-menu li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.card {
|
||||
padding-top: 100px;
|
||||
padding-top: 50px;
|
||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
|
||||
margin: 20px;
|
||||
width: 350px;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
font-family: arial;
|
||||
}
|
||||
@@ -138,20 +146,20 @@ a:link {
|
||||
|
||||
.cards {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||||
/* Автоматически заполняем на всю ширину grid-контейнера */
|
||||
grid-template-columns: repeat(auto-fill, 400px);
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
justify-items: center;
|
||||
column-gap: 60px;
|
||||
row-gap: 40px;
|
||||
justify-items: center; /* Размещаем карточку по центру */
|
||||
column-gap: 60px; /* Отступ между колонками */
|
||||
row-gap: 40px; /* Отступ между рядами */
|
||||
margin: 0 auto;
|
||||
padding-bottom: 50px;
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
.footer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 20px;
|
||||
@@ -161,7 +169,7 @@ a:link {
|
||||
|
||||
.social-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.social {
|
||||
@@ -170,150 +178,10 @@ a:link {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.social h2, .social h1 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
text-align: right;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.2em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
gap: 5px;
|
||||
padding-left: 10px;
|
||||
font-size: smaller
|
||||
}
|
||||
|
||||
.menu > li {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
z-index: 1000;
|
||||
padding: 10px 0;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 400px) and (max-width: 767px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.2em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
gap: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.menu > li {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
z-index: 1000;
|
||||
padding: 10px 0;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 768px) and (max-width: 1023px) {
|
||||
.text-container h2 {
|
||||
font-size: 2em;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) and (max-width: 1365px) {
|
||||
.text-container h2 {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1366px) {
|
||||
.text-container h2 {
|
||||
font-size: 3em;
|
||||
}
|
||||
}
|
||||
183
catalog.html
183
catalog.html
@@ -2,108 +2,107 @@
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>cyxaruk shop catalog</title>
|
||||
<link rel="stylesheet" href="catalog.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
<h1>cyxaruk shop</h1>
|
||||
</a>
|
||||
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="likes.html">Likes</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
|
||||
</a></li>
|
||||
</ul>
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
</a>
|
||||
<h1>cyxaruk shop</h1>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="likes.html">Likes</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h1 style="text-align:center">Карточка товара</h1>
|
||||
|
||||
<div class="cards">
|
||||
<div class="card">
|
||||
<img src="фотки/stonik.jpg" alt="Стон" style="width:100%">
|
||||
<h1>Stone Island</h1>
|
||||
<p class="price">$1999.99</p>
|
||||
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> патч на месте</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<main class="main">
|
||||
<div class="cards">
|
||||
<div class="card">
|
||||
<img src="фотки/stonik.jpg" alt="Стон" style="width:100%">
|
||||
<h1>Stone Island</h1>
|
||||
<p class="price">$1999.99</p>
|
||||
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> патч на месте</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<img src="фотки/napapisaj.jpg" alt="Напапири" style="width:100%">
|
||||
<h1>Napapisaj</h1>
|
||||
<p class="price">$1499.99</p>
|
||||
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> +rep from brothers</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/adidas.jpg" alt="адиадс" style="width:100%">
|
||||
<h1>Adidas</h1>
|
||||
<p class="price">$19.99</p>
|
||||
<p>sportik, street,<br/> baskemtball, air, <br>old school</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="cards">
|
||||
<div class="card">
|
||||
<img src="фотки/fred perry.jpg" alt="перри" style="width:100%">
|
||||
<h1>Fred Perry</h1>
|
||||
<p class="price">$1299.99</p>
|
||||
<p>style, nice, <br/>mother's modnik, cotton, <br/>the platypus</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/samba.png" alt="самба" style="width:100%">
|
||||
<h1>Adidas Samba</h1>
|
||||
<p class="price">$449.99</p>
|
||||
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> +rep from brothers</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/lacoste.png" alt="лакост" style="width:100%">
|
||||
<h1>Lacoste</h1>
|
||||
<p class="price">$299.99</p>
|
||||
<p>tyle, nice, <br/>mother's modnik, cotton, <br/>krokodil</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/napapisaj.jpg" alt="Напапири" style="width:100%">
|
||||
<h1>Napapisaj</h1>
|
||||
<p class="price">$1499.99</p>
|
||||
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> +rep from brothers</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/adidas.jpg" alt="адиадс" style="width:100%">
|
||||
<h1>Adidas</h1>
|
||||
<p class="price">$19.99</p>
|
||||
<p>sportik, street,<br/> baskemtball, air, <br>old school</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/fred perry.jpg" alt="перри" style="width:100%">
|
||||
<h1>Fred Perry</h1>
|
||||
<p class="price">$1299.99</p>
|
||||
<p>style, nice, <br/>mother's modnik, cotton, <br/>the platypus</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/samba.png" alt="самба" style="width:100%">
|
||||
<h1>Adidas Samba</h1>
|
||||
<p class="price">$449.99</p>
|
||||
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> +rep from brothers</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<img src="фотки/lacoste.png" alt="лакост" style="width:100%">
|
||||
<h1>Lacoste</h1>
|
||||
<p class="price">$299.99</p>
|
||||
<p>style, nice, <br/>mother's modnik, cotton, <br/>krokodil</p>
|
||||
<p><button>Добавить в корзину</button></p>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<div class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</div>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
288
contacts.css
288
contacts.css
@@ -2,212 +2,162 @@
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 1200px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header {
|
||||
}
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 90px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background: #112d4e;
|
||||
padding: 0;
|
||||
color: #dbe2ef;
|
||||
padding: 0 20px;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.logo {
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0 20px;
|
||||
font-size: 1.5em;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.menu {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.menu li {
|
||||
margin-left: 20px;
|
||||
list-style-type: none;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.menu > li {
|
||||
margin-right: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.menu > li:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.features-menu {
|
||||
}
|
||||
|
||||
.dropdown > a {
|
||||
cursor: pointer;
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
padding-top: 10px;
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
border-bottom: 1px solid #fff;
|
||||
font-size: 0.8em;
|
||||
width: 100%;
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.features-menu li:last-child {
|
||||
}
|
||||
|
||||
.features-menu li:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.main {
|
||||
flex: 1;
|
||||
padding: 130px 20px 20px;
|
||||
}
|
||||
|
||||
.table-wrapper {
|
||||
width: 100%;
|
||||
padding: 100px 10px;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
table-layout: fixed;
|
||||
border-collapse: collapse;
|
||||
background-color: #f0f8ff;
|
||||
}
|
||||
|
||||
.features-menu a {
|
||||
color: #112d4e;
|
||||
}
|
||||
|
||||
.numbers{
|
||||
color: #00264d;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
caption {
|
||||
font-weight: bold;
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
th, td {
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 335px;
|
||||
}
|
||||
|
||||
table{
|
||||
color: #00264d;
|
||||
width: 60%;
|
||||
margin: 200px;
|
||||
margin-left: 20%;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 20px;
|
||||
background-color: #00264d;
|
||||
color: #b2d6ff;
|
||||
}
|
||||
|
||||
.social-container {
|
||||
bottom: -10px;
|
||||
}
|
||||
|
||||
.social-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.social {
|
||||
}
|
||||
|
||||
.social {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.social h2, .social h1 {
|
||||
}
|
||||
|
||||
.social h2, .social h1 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
text-align: right;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
height: auto;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
font-size: 1.2em;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.menu {
|
||||
flex-wrap: wrap;
|
||||
gap: 5px;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
table {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
143
contacts.html
143
contacts.html
@@ -1,92 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>cyxaruk shop contacts</title>
|
||||
<link rel="stylesheet" href="contacts.css" />
|
||||
<meta charset="utf-8" />
|
||||
<title>cyxaruk shop contacts</title>
|
||||
<link rel="stylesheet" href="contacts.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<header class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп" />
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
</a>
|
||||
<h1>cyxaruk shop</h1>
|
||||
</a>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="likes.html">Likes</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина" />
|
||||
</a></li>
|
||||
</ul>
|
||||
</header>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="likes.html">Likes</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<main class="main">
|
||||
<div class="table-wrapper">
|
||||
<table>
|
||||
<caption>Контакты (звонить только в поддержку)</caption>
|
||||
<thead>
|
||||
<table border="3">
|
||||
<caption>
|
||||
Контакты(звонить только в поддержку)
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ФИО</th>
|
||||
<th>Должность</th>
|
||||
<th>Телефон</th>
|
||||
<th>Телеграм</th>
|
||||
<th>ФИО</th>
|
||||
<th>Должность</th>
|
||||
<th>Телефон</th>
|
||||
<th>Телеграмм</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Платонов Артемий Михайлович</td>
|
||||
<td>Администрация / продавец</td>
|
||||
<td>89876320523</td>
|
||||
<td>@RBCScyxaruk</td>
|
||||
<td>Платонов Артемий Михайлович</td>
|
||||
<td>Администрация/продавец</td>
|
||||
<td>89876320523</td>
|
||||
<td>@RBCScyxaruk</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ауц Евгений Валерьевич</td>
|
||||
<td>Продавец / поддержка круглосуточная</td>
|
||||
<td>89021263060</td>
|
||||
<td>@yevgenauts</td>
|
||||
<td>Ауц Евгений Валерьевич</td>
|
||||
<td>Продавец/поддержка круглосуточная</td>
|
||||
<td>89021263060</td>
|
||||
<td>@yevgenauts</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Данилюк Анжела</td>
|
||||
<td>Продавец / консультант</td>
|
||||
<td>89176235020</td>
|
||||
<td>@bomzhela</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram" />
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</div>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito" />
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
hello
|
||||
282
likes.css
282
likes.css
@@ -4,115 +4,122 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 1200px;
|
||||
font-size: 18px;
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.content {
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
a {
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #dbe2ef;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
a:visited,
|
||||
a:link {
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
height: 90px;
|
||||
background: #112d4e;
|
||||
padding: 0;
|
||||
color: #dbe2ef;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 0 20px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.logo {
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
border-radius: 15px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0 20px;
|
||||
font-size: 1.5em;
|
||||
margin-left: 20px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.menu li {
|
||||
margin-left: 20px;
|
||||
.menu > li {
|
||||
margin-right: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.menu > li:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown > a {
|
||||
cursor: pointer;
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
padding-top: 10px;
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
padding: 10px 0;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
border-bottom: 1px solid #fff;
|
||||
font-size: 0.8em;
|
||||
width: 100%;
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.features-menu li:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.features-menu a {
|
||||
color: #112d4e;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.features-menu li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.sad {
|
||||
flex: 1;
|
||||
.sad{
|
||||
padding-top: 150px;
|
||||
color: #00264d;
|
||||
text-align: center;
|
||||
padding-bottom: 110px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
@@ -141,185 +148,4 @@ a:link {
|
||||
|
||||
.contact-info {
|
||||
text-align: right;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
/* Мобильные устройства до 400px */
|
||||
@media (max-width: 400px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.2em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
gap: 5px;
|
||||
padding-left: 10px;
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.menu > li {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
z-index: 1000;
|
||||
padding: 10px 0;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sad h1 {
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.sad img {
|
||||
width: 90%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.footer {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
font-size: smaller;
|
||||
padding-bottom: 120px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Устройства от 400px до 767px */
|
||||
@media (min-width: 400px) and (max-width: 767px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin-left: 10px;
|
||||
font-size: 1em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
gap: 8px;
|
||||
font-size: 0.85em;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: static;
|
||||
background: #b2d6ff;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.sad img {
|
||||
width: 90%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.footer {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
font-size: smaller;
|
||||
padding-bottom: 120px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Планшеты */
|
||||
@media (min-width: 768px) and (max-width: 1023px) {
|
||||
.text-container h2 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 350px;
|
||||
}
|
||||
|
||||
.sad img {
|
||||
width: 80%;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* Маленькие десктопы */
|
||||
@media (min-width: 1024px) and (max-width: 1365px) {
|
||||
.text-container h2 {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
}
|
||||
|
||||
/* Большие экраны */
|
||||
@media (min-width: 1366px) {
|
||||
.text-container h2 {
|
||||
font-size: 3em;
|
||||
}
|
||||
}
|
||||
}
|
||||
93
likes.html
93
likes.html
@@ -2,60 +2,57 @@
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>cyxaruk shop catalog</title>
|
||||
<link rel="stylesheet" href="likes.css" />
|
||||
<link rel="stylesheet" href="basket.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
<h1>cyxaruk shop</h1>
|
||||
</a>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="user.html">User</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="sad">
|
||||
<h1>Здесь будут лежать товары, которые тебе понравились, <br/> а пока здесь так пусто...</h1>
|
||||
<img src="фотки/sad2.jpeg" width="500" height="300">
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</div>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
</div>
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
</a>
|
||||
<h1>cyxaruk shop</h1>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="user.html">User</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="sad">
|
||||
<h1>Здесь будут лежать товары, которые тебе понравились, <br/> а пока здесь так пусто...</h1>
|
||||
<img src="фотки/sad2.jpeg" width="500" height="300">
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
340
main.css
340
main.css
@@ -5,129 +5,130 @@
|
||||
}
|
||||
|
||||
body {
|
||||
height: 1200px;
|
||||
font-size: 18px;
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.content{
|
||||
min-height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
a {
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #dbe2ef;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
a:visited,
|
||||
a:link {
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
height: 90px;
|
||||
background: #112d4e;
|
||||
padding: 0;
|
||||
color: #dbe2ef;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 0 20px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.logo{
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
border-radius: 15px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0 20px;
|
||||
font-size: 1.5em;
|
||||
margin-left: 20px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
list-style: none;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
list-style-type: none;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.menu li {
|
||||
margin-left: 20px;
|
||||
.menu > li {
|
||||
margin-right: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.menu > li:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown > a {
|
||||
cursor: pointer;
|
||||
color: #dbe2ef;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
padding-top: 10px;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
top: 40px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
padding: 10px 0;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
border-bottom: 1px solid #fff;
|
||||
font-size: 0.8em;
|
||||
width: 100%;
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.features-menu li:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.features-menu a {
|
||||
color: #112d4e;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.features-menu li {
|
||||
padding: 10px 20px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
.features-menu li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.main{
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.promo-section {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 100px 20px 20px;
|
||||
padding: 20px;
|
||||
background-color: #f9f9f9;
|
||||
border: 1px solid #ddd;
|
||||
margin: 90px 20px 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.image-container,
|
||||
.text-container {
|
||||
flex: 1 1 300px;
|
||||
margin: 10px;
|
||||
text-align: center;
|
||||
color:#00264d
|
||||
.image-container {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.image-container img {
|
||||
@@ -136,8 +137,15 @@ a:link {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.text-container {
|
||||
flex: 1;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
color: #00264d;
|
||||
}
|
||||
|
||||
.text-container h2 {
|
||||
font-size: 2.5em;
|
||||
font-size: 4em;
|
||||
color: #003366;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
@@ -149,49 +157,67 @@ a:link {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-radius: 4px;
|
||||
font-size: 1em;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: #00264d;
|
||||
}
|
||||
|
||||
.page {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
padding-bottom: 20px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.page img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
.section {
|
||||
width: 736px;
|
||||
height: 500px;
|
||||
display:flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.feedback {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
padding: 20px;
|
||||
background: #eef3f9;
|
||||
overflow: hidden;
|
||||
color: #00264d;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.feedback h1 {
|
||||
.feedback h1{
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.column {
|
||||
float: left;
|
||||
width: 31%;
|
||||
margin: 20px 1.15%;
|
||||
height: 160px;
|
||||
background-color: #b2d6ff;
|
||||
border-radius: 8px;
|
||||
padding: 15px;
|
||||
margin: 20px
|
||||
}
|
||||
|
||||
.avatar {
|
||||
float: left;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
margin: 25px;
|
||||
border-radius: 40px;
|
||||
background-color: #d6e9fe;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.username {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.comment {
|
||||
margin: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 20px;
|
||||
@@ -201,7 +227,7 @@ a:link {
|
||||
|
||||
.social-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.social {
|
||||
@@ -210,164 +236,10 @@ a:link {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.social h2, .social h1 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.2em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
gap: 5px;
|
||||
padding-left: 10px;
|
||||
font-size: smaller
|
||||
}
|
||||
|
||||
.menu > li {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
z-index: 1000;
|
||||
padding: 10px 0;
|
||||
min-width: 150px;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.dropdown:hover .features-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.promo-section{
|
||||
padding-top: 150px;
|
||||
}
|
||||
|
||||
footer{
|
||||
font-size: small;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 400px) and (max-width: 767px) {
|
||||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 10px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.2em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
gap: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.menu > li {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: static;
|
||||
background: #b2d6ff;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.dropdown .features-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
background: #b2d6ff;
|
||||
border-radius: 5px;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
z-index: 1000;
|
||||
padding: 10px 0;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
|
||||
.promo-section{
|
||||
padding-top: 150px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 768px) and (max-width: 1023px) {
|
||||
.text-container h2 {
|
||||
font-size: 2em;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) and (max-width: 1365px) {
|
||||
.text-container h2 {
|
||||
font-size: 2.5em;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1366px) {
|
||||
.text-container h2 {
|
||||
font-size: 3em;
|
||||
}
|
||||
}
|
||||
215
main.html
215
main.html
@@ -2,124 +2,121 @@
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>cyxaruk shop</title>
|
||||
<link rel="stylesheet" href="main.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
<h1>cyxaruk shop</h1>
|
||||
</a>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="likes.html">Likes</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
|
||||
</a></li>
|
||||
</ul>
|
||||
<div class="header">
|
||||
<a href="main.html" class="logo">
|
||||
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
|
||||
</a>
|
||||
<h1>cyxaruk shop</h1>
|
||||
<ul class="menu">
|
||||
<li class="dropdown">
|
||||
<a href="catalog.html">Catalog ▾</a>
|
||||
<ul class="features-menu">
|
||||
<li><a href="#">For Men</a></li>
|
||||
<li><a href="#">For Women</a></li>
|
||||
<li><a href="#">For Kids</a></li>
|
||||
<li><a href="#">Order from abroad</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contacts.html">Contacts</a></li>
|
||||
<li><a href="likes.html">Likes</a></li>
|
||||
<li><a href="basket.html">
|
||||
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="promo-section">
|
||||
<div class="image-container">
|
||||
<img src="фотки/шмотки2.jpg" alt="Шмотки">
|
||||
</div>
|
||||
<div class="text-container">
|
||||
<h2> <em>Official cyxaruk shop website</em> </h2>
|
||||
<a href="catalog.html" class="button"> Go shopping </a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<main class="main">
|
||||
<div class="promo-section">
|
||||
<div class="image-container">
|
||||
<img src="фотки/шмотки2.jpg" alt="Шмотки">
|
||||
</div>
|
||||
<div class="text-container">
|
||||
<h2> <em>Official cyxaruk shop website</em> </h2>
|
||||
<a href="catalog.html" class="button"> Go shopping </a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-container">
|
||||
<h1>ONLY THE FATTEST STUFF</h1>
|
||||
</div>
|
||||
|
||||
<div class="page">
|
||||
<div class="section">
|
||||
<img src="фотки/шмотки.jpg" width="736" height="500">
|
||||
</div>
|
||||
<div class="section">
|
||||
<img src="фотки/шмотки3.jpg" width="735" height="500">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="text-container">
|
||||
<h1>ONLY THE FATTEST STUFF</h1>
|
||||
</div>
|
||||
|
||||
<div class="page">
|
||||
<img src="фотки/шмотки.jpg" alt="шмотки1">
|
||||
<div class="feedback">
|
||||
<h1><em>Отзывы</em></h1>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Pistoletov Sasha</h3>
|
||||
<p class="comment">
|
||||
стон 1200 рублей и расход, го можно пж?
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">AUC EVGEN</h3>
|
||||
<p class="comment">
|
||||
Сотрудничаем уже 7 лет, мужик хороший, надежный, цена для размещения вещей адекватная, все четко
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Vupava Kitalya</h3>
|
||||
<p class="comment">
|
||||
Продавец ответственно подходит к своему делу, просил найти его бренд Napapisaj, очень редкая штука, но он справился, 10/10
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Anjela Danil</h3>
|
||||
<p class="comment">
|
||||
Норм продавец, 9/10, пук пук
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Hater228</h3>
|
||||
<p class="comment">
|
||||
Как от ****** отойдешь, цену поменяй, клоун
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Bima Daryshev</h3>
|
||||
<p class="comment">
|
||||
При покупке не возникло никаких проблем, предоставляет огромное кол-во скидок, обязательно еще что нибудь у него закажу
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<img src="фотки/шмотки31.jpg" alt="шмотки2">
|
||||
<div class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</div>
|
||||
|
||||
|
||||
<h1><em>Отзывы</em></h1>
|
||||
<div class="feedback">
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Pistoletov Sasha</h3>
|
||||
<p class="comment">
|
||||
стон 1200 рублей и расход, го можно пж?
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">AUC EVGEN</h3>
|
||||
<p class="comment">
|
||||
Сотрудничаем уже 7 лет, все четко
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Vupava Kitalya</h3>
|
||||
<p class="comment">
|
||||
Просил найти его бренд Napapisaj, очень редкая штука, но он справился, 10/10
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Anjela Danil</h3>
|
||||
<p class="comment">
|
||||
Норм продавец, 9/10, пук пук
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Hater228</h3>
|
||||
<p class="comment">
|
||||
Как от ****** отойдешь, цену поменяй, клоун
|
||||
</p>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="avatar"></div>
|
||||
<h3 class="username">Bima Daryshev</h3>
|
||||
<p class="comment">
|
||||
При покупке не возникло никаких проблем, предоставляет огромное кол-во скидок
|
||||
</p>
|
||||
</div>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/...">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<div class="footer">
|
||||
<div class="social-container">
|
||||
<div class="social">
|
||||
<a href="https://t.me/cyxarukShop">
|
||||
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
|
||||
</a>
|
||||
<h2>← also follow us on tg</h2>
|
||||
</div>
|
||||
<div class="social">
|
||||
<a href="https://www.avito.ru/brands/...">
|
||||
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
|
||||
</a>
|
||||
<h1>← and avito</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="contact-info">
|
||||
<h2>89876320523</h2>
|
||||
<h2>Ulyanovsk, Russia</h2>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 276 KiB |
Reference in New Issue
Block a user