This commit is contained in:
2023-01-20 14:56:08 +05:30
rodzic cac18aed87
commit 34b451c0b6
16 zmienionych plików z 55 dodań i 1572 usunięć
Vendored
BIN
Wyświetl plik
Plik binarny nie jest wyświetlany.
Wyświetl plik
+16 -2
Wyświetl plik
@@ -80,6 +80,9 @@ body {
.fw-600 {
font-weight: 600; }
.h-200p {
height: 200px; }
.button_dark {
clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
padding-right: 1.7rem;
@@ -91,7 +94,8 @@ body {
width: 40rem; }
.price_footer {
background-color: #52cba5; }
background-color: #52cba5;
border: 2px solid; }
.boxImgContainer {
width: 4rem; }
@@ -114,4 +118,14 @@ body {
min-height: 500px;
width: 100%;
background: white;
background: linear-gradient(180deg, white 7%, #ff8e9e4d 52%, #eb869478 100%); }
background: linear-gradient(180deg, white 7%, #ff8e9e4d 52%, #eb869478 100%);
position: relative; }
.PO_galleryContainer .PO_gallery_display .PO_gallery_display_img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); }
.PO_galleryContainer .PO_gallery_box_inner {
padding: 2rem;
background-color: #EEEEEE; }
+39 -5
Wyświetl plik
@@ -13,7 +13,7 @@
<body>
<header class=" bg-green">
<header class=" bg-green vh-100">
<!-- navbar -->
<div id="navbar-head"></div>
@@ -80,15 +80,49 @@
<div class="container PO_galleryContainer">
<div class="p-6 pt-0">
<div class="PO_gallery_display">
<img src="./../../assets/" />
<img class="PO_gallery_display_img" src="./../../assets/laptop_display.png" />
</div>
<div>
box
<div class="d-flex h-200p pt-5 justify-content-between align-items-center">
<span class="PO_gallery_box h-100">
<div class="PO_gallery_box_inner h-100">
<img class="w-100 h-100" src="./../../assets/laptop_display.png" alt="photo">
</div>
</span>
<span class="PO_gallery_box h-100">
<div class="PO_gallery_box_inner h-100">
<img class="w-100 h-100" src="./../../assets/laptop_display.png" alt="photo">
</div>
</span>
<span class="PO_gallery_box h-100">
<div class="PO_gallery_box_inner h-100">
<img class="w-100 h-100" src="./../../assets/laptop_display.png" alt="photo">
</div>
</span>
<span class="PO_gallery_box h-100">
<div class="PO_gallery_box_inner h-100">
<img class="w-100 h-100" src="./../../assets/laptop_display.png" alt="photo">
</div>
</span>
<span class="PO_gallery_box h-100">
<div class="PO_gallery_box_inner h-100">
<img class="w-100 h-100" src="./../../assets/laptop_display.png" alt="photo">
</div>
</span>
<span class="PO_gallery_box h-100">
<div class="PO_gallery_box_inner h-100">
<img class="w-100 h-100" src="./../../assets/laptop_display.png" alt="photo">
</div>
</span>
</div>
</div>
</div>
<!-- photos display end -->
<!-- specs -->
<!-- specs end -->
<!-- footer -->
<div id="footer-head"></div>
<!-- end-footer -->
-17
Wyświetl plik
@@ -1,17 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./../../libs/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="./../../css/main.css" />
<title>project</title>
</head>
<body>
<div class="bg-primary">hello</div>
<script src="../../libs/bootstrap/js/bootstrap.bundle.js"></script>
</body>
</html>
wygenerowano
-1310
Wyświetl plik
Plik diff jest za duży Load Diff
-15
Wyświetl plik
@@ -1,15 +0,0 @@
{
"name": "sass_sandbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node-sass -w scss/ -o dist/css/ --recursive"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"node-sass": "^4.11.0"
}
}
-15
Wyświetl plik
@@ -1,15 +0,0 @@
// Set Text Color
@function set-text-color($color) {
@if (lightness($color) > 50) {
@return #000;
} @else {
@return #fff;
}
}
// Transform mixin
@mixin transform($property) {
--webkit-transform: $property;
-ms-transform: $property;
transform: $property;
}
-41
Wyświetl plik
@@ -1,41 +0,0 @@
@mixin absCenter {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
// MEDIA QUERY MANAGER
/*
0 - 600px: Phone
600 - 900px: Tablet portrait
900 - 1200px: Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + : Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop
ORDER: Base + typography > general layout + grid > page layout > components
1em = 16px
*/
@mixin respond($breakpoint) {
@if $breakpoint == phone {
@media only screen and (max-width: 37.5em) { @content }; //600px
}
@if $breakpoint == tab-port {
@media only screen and (max-width: 56.25em) { @content }; //900px
}
@if $breakpoint == tab-land {
@media only screen and (max-width: 75em) { @content }; //1200px
}
@if $breakpoint == big-desktop {
@media only screen and (min-width: 112.5em) { @content }; //1800
}
}
-2
Wyświetl plik
@@ -1,2 +0,0 @@
// $primary-color: steelblue;
-21
Wyświetl plik
@@ -1,21 +0,0 @@
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 100%;
}
body {
box-sizing: border-box;
@include respond(tab-port) {
padding: 0;
}
}
Wyświetl plik
-78
Wyświetl plik
@@ -1,78 +0,0 @@
// colors
.bg-green {
background-color: #3bb78f;
background: linear-gradient(90deg, #3bb78f 0%, rgba(11, 171, 100, 1) 35%, rgba(59, 183, 143, 1) 100%);
}
// font size
.font-3 {
font-size: 3rem;
}
.font-1_5 {
font-size: 2rem;
}
.font-1_7{
font-size: 1.7rem;
}
.font-2{
font-size: 2.2rem;
}
.font-2_2{
font-size: 2.2rem;
}
.subtitle_1 {
font-size: 1.5rem;
}
.gap-1 {
gap: 0.7rem;
}
.banner_heading_4 {
font-size: 3rem;
}
// padding
.padding_top_14 {
padding-top: 14rem;
}
.p-6{
padding:5rem;
}
// heights
.vh_60{
height: 60vh;
}
.vh-77{
height: 77vh;
}
.vh-85 {
height: 85vh;
}
.vh-15 {
height: 15vh;
}
// font weight
.fw-600{
font-weight: 600;
}
-8
Wyświetl plik
@@ -1,8 +0,0 @@
// button
.button_dark{
clip-path: polygon(75% 0, 86% 30%, 99% 66%, 100% 100%, 0 100%, 0 61%, 0 0);
padding-right: 1.7rem;
padding-bottom: 0.6rem;
padding-top: 0.6rem;
border-radius: 10px;
}
-14
Wyświetl plik
@@ -1,14 +0,0 @@
@import "abstracts/functions";
@import "abstracts/mixins";
@import "abstracts/variables";
@import "base/base";
@import "base/typography";
@import "base/utilities";
// components
@import "components/_button";
// pages
@import "pages/productOverview.scss";
-44
Wyświetl plik
@@ -1,44 +0,0 @@
.photo_dual{
width:40rem;
}
.price_footer{
background-color:#52cba5;
}
.boxImgContainer{
width: 4rem;
}
.priceCut_multi{
font-size: .7rem;
}
.productOverview{
.overviewProductHeading{
font-size: 2.1rem;
}
.overviewProductFullTitle{
padding: 2rem 13rem;
font-size: 3rem;
}
.overviewProductDes{
padding: 0 2rem;
font-size: 1.5rem;
}
}
.PO_galleryContainer{
.PO_gallery_display{
min-height: 500px;
width: 100%;
background: rgb(255,255,255);
background: linear-gradient(180deg, white 7%, #ff8e9e4d 52%, #eb869478 100%);
}
}