123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <style>
- body {
- margin: 0;
- }
- #mainContainer {
- display: flex;
- }
- header {
- display: flex;
- background-color:blue;
- justify-content: space-between ;
- }
-
- #cartIcon {
- width: 100%;
- height: 70px;
- display: flex;
-
- }
-
- #head{
- display: flex;
- align-items: center;
- }
- input {
- height: 20px;
- width: 100px;
- margin-right: 10px;
- border-radius: 10%;
- }
- #batton{
- width: 65px;
- height: 25px;
- margin: 0;
- padding: 0;
- margin-right: 10px;
- }
- #battonchik {
- width: 65px;
- height: 25px;
- margin: 0;
- padding: 0;
- }
- #mainContainer{
- background-color: yellow;
-
- }
-
- #aside {
- width: 16.7%;
- padding-left: 10px;
- background-color:lawngreen;
- }
- #aside>a {
- display: flex;
- padding-top: 5px;
- text-decoration: none;
- color: black;
- }
- #main {
- padding-left: 10px;
- }
- #main>a {
- display: block;
- padding-top: 5px;
- text-decoration: none;
- color: black;
- }
- #main>div>img{
- max-width: 200px;
- }
-
- #main>h1 {
- margin-top: 5px;
- }
- #main>p{
- margin: 0;
- margin-bottom: 5px;
- }
- a>img {
- width: 250px;
- height: 70px;
- }
- main>div{
- border: blue solid 2px;
- margin-bottom: 10px;
- }
- #korzina{
- width: 65px;
- height: 25px;
- margin: 0;
- padding: 0;
- margin-right: 10px;
- }
- #purchaseHistory{
- width: 65px;
- height: 25px;
- margin: 0;
- padding: 0;
- margin-right: 10px;
- }
- #battonSMakom{
- width: 65px;
- height: 25px;
- margin: 0;
- padding: 0;
- margin-right: 10px;
- }
- #accaunt{
- margin-right: 20px;
- color: yellow;
- }
- .b-container {
- width: 200px;
- height: 150px;
- background-color: #ccc;
- margin: 0px auto;
- padding: 10px;
- font-size: 30px;
- color: #fff;
- }
- .b-popup {
- width: 100%;
- min-height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- overflow: hidden;
- position: fixed;
- top: 0px;
- }
- .b-popup .b-popup-content {
- margin: 40px auto 0px auto;
- width: 1000px;
- min-height: 500px;
- padding: 10px;
- background-color: yellow;
- border-radius: 5px;
- box-shadow: 0px 0px 10px #000;
- }
- .b-popup-content {
- padding: 300px;
- display: flex;
- flex-direction: column;
- }
- #buttonCloseCartId{
- width: 30px;
- display: flex;
- justify-content: center;
- align-items: flex-end;
- margin-left: 96%;
-
- }
- #tovar{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20px;
- }
- footer{
- background:skyblue;
- width: 100%;
- height: 100px;
- }
- </style>
- </head>
- <body>
- <header id="header">
- <div id='cartIcon'>
- <a href="#"><img src="img/Logo_METRO.png" alt=""></a>
-
- </div>
- <div id="head">
- <h1 id="accaunt"></h1>
- <button id="korzina">Кошик</button>
- <button id ="purchaseHistory">Історія покупок</button>
- <input type="text" id="login">
- <input type="password" id="password">
- <button id="batton">Вхід</button>
- <button id="battonSMakom">Вихід</button>
- <button id = "battonchik">Реєстрація</button>
- </div>
- </header>
- <div id='mainContainer'>
- <aside id='aside'>
- Категории
- </aside>
- <main id='main'>
- Контент
- </main>
-
-
- </div>
- <footer id="footer"></footer>
- <script src='index.js'></script>
- </body>
- </html>
|