mirror of
https://github.com/Nikotro/First.git
synced 2024-12-23 14:42:58 +03:00
Add files via upload
This commit is contained in:
parent
f27dea7b8a
commit
dc4bad0461
469
css/style.css
469
css/style.css
@ -1,387 +1,104 @@
|
|||||||
body{
|
body {
|
||||||
background-color: #fff;
|
margin: 0;
|
||||||
padding: 0;
|
font-family: 'Montserrat', sans-serif;
|
||||||
margin:0;
|
background-color: rgba(0, 0, 0, 0.014);
|
||||||
font-family: 'Lato', sans-serif;
|
|
||||||
font-size:14pt;
|
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a{
|
h1, h2,h3, h4, h5, h6{
|
||||||
color: #000;
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*:after,
|
||||||
|
*:before {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*intro*/
|
||||||
|
.intro {
|
||||||
|
height: 100vh;
|
||||||
|
width:100%;
|
||||||
|
background: url("../images/intro.jpg") center no-repeat ;
|
||||||
|
background-size: cover;
|
||||||
|
-webkit-background-size:cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.intro_title{
|
||||||
|
font-size: 150px;
|
||||||
|
font-weight:700;
|
||||||
|
text-transform: uppercase;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*header*/
|
||||||
|
.header{
|
||||||
|
padding-top: 30px;
|
||||||
|
width: 100%;
|
||||||
|
position:absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right:0;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_inner{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_logo {
|
||||||
|
font-size: 30px;
|
||||||
|
font-weight:700;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav{
|
||||||
|
font-size: 14px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav_link{
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
margin: 0 15px;
|
||||||
|
position: relative;
|
||||||
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
transition: color 0.2s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav_link:after{
|
||||||
|
content:"";
|
||||||
|
display:block;
|
||||||
|
width: 100%;
|
||||||
|
height: 3px;
|
||||||
|
opacity: 0;
|
||||||
|
background-color:#fce38a;
|
||||||
|
position: absolute;
|
||||||
|
top:100%;
|
||||||
|
left:0;
|
||||||
|
z-index: 1;
|
||||||
|
transition: opacity .2s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav_link:hover
|
||||||
|
{
|
||||||
|
color: #fce38a;
|
||||||
|
}
|
||||||
|
.nav_link:hover::after{
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 1150px;
|
max-width: 1200px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.welcome
|
|
||||||
{
|
|
||||||
width: 100%;
|
|
||||||
height: 30px;
|
|
||||||
background-color: #d9e1e6;
|
|
||||||
color: #868f93;
|
|
||||||
}
|
|
||||||
.close {
|
|
||||||
float: right;
|
|
||||||
padding-right: 5px;
|
|
||||||
font-size: 100%;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
.welcome_msg
|
|
||||||
{
|
|
||||||
line-height: 30px;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 10pt;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*logo line*/
|
|
||||||
|
|
||||||
.logo_line
|
|
||||||
{
|
|
||||||
height: 97px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: #000;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.val{
|
|
||||||
width: 100%;
|
|
||||||
max-width: 128px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo
|
|
||||||
{
|
|
||||||
font-size: 24px;
|
|
||||||
font-family: 'Intro demo';
|
|
||||||
}
|
|
||||||
|
|
||||||
.cart{
|
|
||||||
line-height: 40px ;
|
|
||||||
border: 2px solid;
|
|
||||||
font-size: 12px;
|
|
||||||
border-color: #ded3aa;
|
|
||||||
text-align: center;
|
|
||||||
height:40px;
|
|
||||||
width: 124px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*link line*/
|
|
||||||
.link_line{
|
|
||||||
line-height: 68px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
border-top: 2px solid #ded3aa;
|
|
||||||
border-bottom: 2px solid #ded3aa;
|
|
||||||
}
|
|
||||||
|
|
||||||
.link_content
|
|
||||||
{
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav_group
|
|
||||||
{
|
|
||||||
max-width: 545px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between ;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav_link
|
|
||||||
{
|
|
||||||
font-size: 12px;
|
|
||||||
margin: 0 25px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.link_content div{
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icons
|
|
||||||
{
|
|
||||||
line-height: 28px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.heart
|
|
||||||
{
|
|
||||||
content: "";
|
|
||||||
border-right: 1px dashed #999999;
|
|
||||||
border-right-width: 1px;
|
|
||||||
padding: 0 14px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.search
|
|
||||||
{
|
|
||||||
padding: 0 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*main content*/
|
|
||||||
.main_content
|
|
||||||
{
|
|
||||||
padding-top: 48px;
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.main_image
|
|
||||||
{
|
|
||||||
height: 683px;
|
|
||||||
width: 657px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.alt_images
|
|
||||||
{
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
width: 146px;
|
|
||||||
padding-top: 21px;
|
|
||||||
padding-bottom: 101px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.alt_image
|
|
||||||
{
|
|
||||||
width: 146px;
|
|
||||||
height: 170px;
|
|
||||||
margin-right: 24px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.alt_image:hover
|
|
||||||
{
|
|
||||||
box-shadow: 1px 1px 1px #cbcdce;
|
|
||||||
}
|
|
||||||
|
|
||||||
.exit
|
|
||||||
{
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text
|
|
||||||
{
|
|
||||||
margin-left: 29px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.product_name h2
|
|
||||||
{
|
|
||||||
line-height: 36px;
|
|
||||||
font-size: 24px;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.review
|
|
||||||
{
|
|
||||||
|
|
||||||
line-height: 25px;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #555555;
|
|
||||||
}
|
|
||||||
|
|
||||||
.review a
|
|
||||||
{
|
|
||||||
font-size: 12px;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.price
|
|
||||||
{
|
|
||||||
margin-top: 15px;
|
|
||||||
font-size: 24px;
|
|
||||||
color:#68899a;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inform
|
|
||||||
{
|
|
||||||
font-size:14px;
|
|
||||||
line-height: 24px;
|
|
||||||
margin-top:18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inform p
|
|
||||||
{
|
|
||||||
margin: 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inform a
|
|
||||||
{
|
|
||||||
color:#68899a;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about
|
|
||||||
{
|
|
||||||
margin-top: 30px;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #555555;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about ul
|
|
||||||
{
|
|
||||||
padding-left: 0;
|
|
||||||
list-style-position: inside;
|
|
||||||
}
|
|
||||||
|
|
||||||
.selectors
|
|
||||||
{
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
background-color: #fff;
|
|
||||||
border-color: #e1e1e1;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-size: 14px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.color
|
|
||||||
{
|
|
||||||
width: 196px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.size
|
|
||||||
{
|
|
||||||
width: 196px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.selectors select
|
|
||||||
{
|
|
||||||
font-size: 13px;
|
|
||||||
color: #707070;
|
|
||||||
width: 168px;
|
|
||||||
height: 35px;
|
|
||||||
border-radius: 0%;
|
|
||||||
border-color: #e1e1e1;
|
|
||||||
padding-left: 12px;
|
|
||||||
font: inherit;
|
|
||||||
letter-spacing: inherit;
|
|
||||||
word-spacing: inherit;
|
|
||||||
-moz-appearance: none;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
select:not([multiple]) {
|
|
||||||
padding-right: 1.2em;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: calc(100% - 0.25em) 0.8499999999999932em;
|
|
||||||
background-size: 1.2499999999999991em auto;
|
|
||||||
background-image: url("../images/icon.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type="number"]
|
|
||||||
{
|
|
||||||
-webkit-appearance: textfield;
|
|
||||||
-moz-appearance: textfield;
|
|
||||||
appearance: textfield;
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button
|
|
||||||
{
|
|
||||||
-webkit-appearance: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
input
|
|
||||||
{
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.qty_counter
|
|
||||||
{
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.buttons
|
|
||||||
{
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
border-radius: 0;
|
|
||||||
border: 1px solid #e1e1e1;
|
|
||||||
border-left: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.buttons button
|
|
||||||
{
|
|
||||||
border-radius: 0;
|
|
||||||
border: 0px ;
|
|
||||||
background-color: #fff;
|
|
||||||
height: 16.5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.buttons button:first-child
|
|
||||||
{
|
|
||||||
|
|
||||||
border-bottom: 0.5px solid #e1e1e1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.buttons button:last-child
|
|
||||||
{
|
|
||||||
|
|
||||||
border-top: 0.5px solid #e1e1e1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.count_up {
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
border-left: 3px solid transparent;
|
|
||||||
border-right: 3px solid transparent;
|
|
||||||
|
|
||||||
border-bottom: 2px solid #cccccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.count_down {
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
border-left: 3px solid transparent;
|
|
||||||
border-right: 3px solid transparent;
|
|
||||||
|
|
||||||
border-top: 2px solid #cccccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.selectors .qty input
|
|
||||||
{
|
|
||||||
padding: 5px;
|
|
||||||
font-size: 13px;
|
|
||||||
color: #707070;
|
|
||||||
width: 34px;
|
|
||||||
height: 33px;
|
|
||||||
padding: 0;
|
|
||||||
border-radius: 0;
|
|
||||||
border: 1px solid #e1e1e1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
footer
|
|
||||||
{
|
|
||||||
border-top: 1px solid #e1e1e1;
|
|
||||||
line-height: 75px;
|
|
||||||
text-align: center;
|
|
||||||
color: #b5b5b5;
|
|
||||||
font-size: 13pt;
|
|
||||||
font-family: 'Lato';
|
|
||||||
}
|
|
BIN
images/intro.jpg
Normal file
BIN
images/intro.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
131
index.html
131
index.html
@ -1,123 +1,38 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en ">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<script src="https://kit.fontawesome.com/1559834886.js" crossorigin="anonymous"></script>
|
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Montserrat:wght@400;700&family=Roboto&display=swap" rel="stylesheet">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<title>Document</title>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
|
|
||||||
<link href="http://fonts.cdnfonts.com/css/intro" rel="stylesheet">
|
|
||||||
<title>Sale</title>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<header class="header">
|
<header class="header">
|
||||||
<div class="welcome">
|
<div class="container">
|
||||||
<div class="container">
|
<div class="header_inner">
|
||||||
<div class="welcome_msg">
|
<div class="header_logo">MoGo</div>
|
||||||
start selling your products or buy them from anywhere! <span class="close">×</span>
|
|
||||||
</div>
|
<nav class="nav">
|
||||||
|
<a class="nav_link" href="#">About</a>
|
||||||
|
<a class="nav_link" href="#">Service</a>
|
||||||
|
<a class="nav_link" href="#">work</a>
|
||||||
|
<a class="nav_link" href="#">blog</a>
|
||||||
|
<a class="nav_link" href="#">contact </a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</header>
|
||||||
|
<div class="intro">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="logo_line">
|
<div class="intro_inner">
|
||||||
<div class="val">USD</div>
|
<h1 class="intro_title">Welcome
|
||||||
<div class="logo"><h1><b>bonfire</b></h1></div>
|
to MoGo</h1>
|
||||||
<a href="#" class="cart"><b>cart(3)</b></a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="link_line">
|
</div>
|
||||||
<div class="container">
|
|
||||||
<div class="link_content">
|
|
||||||
<div class="menu"><i class="fa-solid fa-bars"></i></div>
|
|
||||||
<nav class="nav_group">
|
|
||||||
<a class="nav_link" href="#">home</a>
|
|
||||||
<a class="nav_link" href="#">men</a>
|
|
||||||
<a class="nav_link" href="#">women</a>
|
|
||||||
<a class="nav_link" href="#">lookbook</a>
|
|
||||||
<a class="nav_link" href="#">about</a>
|
|
||||||
<a class="nav_link" href="#">blog</a>
|
|
||||||
</nav>
|
|
||||||
<div class="icons">
|
|
||||||
<div class="heart"><i class="fa-regular fa-heart"></i></div>
|
|
||||||
<div class="search"><i class="fa-solid fa-magnifying-glass"></i></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<div class="container">
|
|
||||||
<div class="main_content">
|
|
||||||
<div class="photos">
|
|
||||||
<img src="https://d13qso5xfejx18.cloudfront.net/product-media/57Y3/1000/1000/IMG6939.jpg" alt="" class="main_image">
|
|
||||||
<div class="alt_images">
|
|
||||||
<img src="https://d13qso5xfejx18.cloudfront.net/product-media/57Y3/1000/1000/IMG6939.jpg" alt="" class="alt_image">
|
|
||||||
<img src="https://image1.superdry.com/static/images/optimised/zoom/upload9223368955665604291.jpg" alt="" class="alt_image">
|
|
||||||
<img src="https://image1.superdry.com/static/images/optimised/zoom/upload9223368955665604289.jpg" alt="" class="alt_image">
|
|
||||||
<img src="https://image1.superdry.com/static/images/optimised/zoom/upload9223368955665604287.jpg" alt="" class="alt_image">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="text">
|
|
||||||
<a href="#" class="exit">Back to Woman</a>
|
|
||||||
<div class="product_name"><h2>The Atelier Tailored Coat</h2></div>
|
|
||||||
<div class="review">Star 3 Review(s) | <b><u><a href="#">ADD A REVIEV</a></u></b></div>
|
|
||||||
<div class="price"><b>$499.00</b></div>
|
|
||||||
<div class="inform">
|
|
||||||
<p><b>Availability :</b> <a href="#">In stock</a></p>
|
|
||||||
<p><b>Product Code :</b> <a href="#">#4657</a></p>
|
|
||||||
<p><b>Tags :</b> <a href="#">Fashion, Hood, Classic</a></p>
|
|
||||||
<div class="about">Sleek, polished, and boasting an impeccably modern fit, this blue, 2-but-
|
|
||||||
ton Lazio suit features a notch lapel, flap pockets, and accompanying flat
|
|
||||||
front trousers—all in pure wool by Vitale Barberis Canonico.
|
|
||||||
<ul>
|
|
||||||
<li>Dark blue suit for a tone-on-tone look</li>
|
|
||||||
<li>Regular fit</li>
|
|
||||||
<li>100% Cotton</li>
|
|
||||||
<li>Free shipping with 4 days delivery</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="selectors">
|
|
||||||
|
|
||||||
<div class="color"><b>color</b>
|
|
||||||
<p><select name="color">
|
|
||||||
<option value="" selected hidden>Select Color</option>
|
|
||||||
<option value="gray">Gray</option>
|
|
||||||
<option value="black">Black</option>
|
|
||||||
<option value="yellow">Yellow</option>
|
|
||||||
</select></p>
|
|
||||||
</div>
|
|
||||||
<div class="size"><b>size</b>
|
|
||||||
<p><select name="size">
|
|
||||||
<option selected hidden value="">Select Size</option>
|
|
||||||
<option value="51">51</option>
|
|
||||||
<option value="54">54</option>
|
|
||||||
<option value="60">60</option>
|
|
||||||
</select></p></div>
|
|
||||||
<div class="qty"><b>qty</b>
|
|
||||||
<div class="qty_counter">
|
|
||||||
<p><input type="number" name="qty" min="1" max="10" value="1">
|
|
||||||
<div class="buttons">
|
|
||||||
<button><div class="count_up"></div></button>
|
|
||||||
<button><div class="count_down"></div></button>
|
|
||||||
</div>
|
|
||||||
</p></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="product_buttons"></div>
|
|
||||||
<div class="share"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
<footer>
|
|
||||||
Made with Love & Coffee © 2015 Design Lazy. All Rights Reserved.
|
|
||||||
</footer>
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user