Revert "Revert "Added spacing ultilities page based on grid box height""

This reverts commit 84abfcb707.
This commit is contained in:
Thomas Smith 2022-10-17 22:34:07 -04:00
parent 9e7386e83d
commit 7fe3b4cd9a
4 changed files with 23 additions and 3 deletions

View file

@ -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>

View file

@ -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;

View file

@ -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"

View 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;
}