diff --git a/src/layouts/partials/head.html b/src/layouts/partials/head.html index c289063..6a414ac 100644 --- a/src/layouts/partials/head.html +++ b/src/layouts/partials/head.html @@ -53,6 +53,7 @@ + diff --git a/src/static/css/package-grid.css b/src/static/css/package-grid.css new file mode 100644 index 0000000..df51104 --- /dev/null +++ b/src/static/css/package-grid.css @@ -0,0 +1,27 @@ +/* Package Display Section */ + +.grid-square{ + margin-bottom: 1.116vw; + height: 17.857vw; + background-color: gray; + width: 100%; +} + +.package-label{ + font-size: 0.781vw; + float:left; + padding: 0.558vw 0vw; +} + +.detail-btn{ + float:right; +} + +.package-grid{ + padding-top: 0vw !important; + padding-bottom: 0vw !important; + background-image: url("/Images/x-large-grid.svg"); + background-attachment: fixed; + background-repeat: repeat-y; + background-size: cover; +} diff --git a/src/static/css/style.css b/src/static/css/style.css index 9086629..2e11790 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -107,31 +107,3 @@ hr{ } } - -/* Package Display Section */ - -.grid-square{ - margin-bottom: 1.116vw; - height: 17.857vw; - background-color: gray; - width: 100%; -} - -.package-label{ - font-size: 0.781vw; - float:left; - padding: 0.558vw 0vw; -} - -.detail-btn{ - float:right; -} - -.package-grid{ - padding-top: 0vw !important; - padding-bottom: 0vw !important; - background-image: url("/Images/x-large-grid.svg"); - background-attachment: fixed; - background-repeat: repeat-y; - background-size: cover; -}