mirror of
https://github.com/ivabus/www
synced 2024-11-10 20:35:14 +03:00
Revert "Revert "Added spacing ultilities page based on grid box height""
This reverts commit 84abfcb707
.
This commit is contained in:
parent
9e7386e83d
commit
7fe3b4cd9a
|
@ -160,7 +160,7 @@
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<section class="teal-bg">
|
<section class="teal-bg two-boxes">
|
||||||
<div class="container tea-cli-container">
|
<div class="container tea-cli-container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
|
@ -183,7 +183,7 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<div class="container">
|
<div class="container two-boxes">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h3>The new foundation of the internet.</h3>
|
<h3>The new foundation of the internet.</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
|
|
||||||
.modal-image{
|
.modal-image{
|
||||||
background-image: url("/Images/gen-art/abstract-pattern.png");
|
background-image: url("/Images/gen-art/abstract-pattern.png");
|
||||||
background-attachment: fixed;
|
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: repeat;
|
background-repeat: repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
<link rel="stylesheet" href="/css/products.css">
|
<link rel="stylesheet" href="/css/products.css">
|
||||||
<link rel="stylesheet" href="/css/accordion.css">
|
<link rel="stylesheet" href="/css/accordion.css">
|
||||||
<link rel="stylesheet" href="/css/nebraska-man.css">
|
<link rel="stylesheet" href="/css/nebraska-man.css">
|
||||||
|
<link rel="stylesheet" href="/css/spacing.css">
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
|
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
|
||||||
|
|
20
src/static/css/spacing.css
Normal file
20
src/static/css/spacing.css
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/* This file is entirely for spacing utlilities. Spacing is based of the grid-box height/width and various viewer widths. */
|
||||||
|
|
||||||
|
/* Height spacers */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.three-boxes{
|
||||||
|
padding-top: 12.556vw;
|
||||||
|
padding-bottom: 12.556vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.two-boxes{
|
||||||
|
padding-top: 8.371vw;
|
||||||
|
padding-bottom: 8.371vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-box{
|
||||||
|
padding-top: 4.185vw;
|
||||||
|
padding-bottom: 4.185vw;
|
||||||
|
}
|
Loading…
Reference in a new issue