Separate CSS file for package display

This commit is contained in:
Thomas Smith 2022-09-22 15:29:09 -04:00
parent 53c56064b4
commit fbbb80262f
3 changed files with 28 additions and 28 deletions

View file

@ -53,6 +53,7 @@
<link rel="stylesheet" href="/css/navbar.css">
<link rel="stylesheet" href="/css/generative-art.css">
<link rel="stylesheet" href="/css/footer.css">
<link rel="stylesheet" href="/css/package-grid.css">
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap" rel="stylesheet">
<link href="https://file.myfontastic.com/Fd33ifaooDVpESwnDXETgR/icons.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">

View file

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

View file

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