mirror of
https://github.com/ivabus/www
synced 2024-11-23 05:05:07 +03:00
Separate CSS file for package display
This commit is contained in:
parent
53c56064b4
commit
fbbb80262f
3 changed files with 28 additions and 28 deletions
|
@ -53,6 +53,7 @@
|
||||||
<link rel="stylesheet" href="/css/navbar.css">
|
<link rel="stylesheet" href="/css/navbar.css">
|
||||||
<link rel="stylesheet" href="/css/generative-art.css">
|
<link rel="stylesheet" href="/css/generative-art.css">
|
||||||
<link rel="stylesheet" href="/css/footer.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://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap" rel="stylesheet">
|
||||||
<link href="https://file.myfontastic.com/Fd33ifaooDVpESwnDXETgR/icons.css" rel="stylesheet">
|
<link href="https://file.myfontastic.com/Fd33ifaooDVpESwnDXETgR/icons.css" rel="stylesheet">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
|
27
src/static/css/package-grid.css
Normal file
27
src/static/css/package-grid.css
Normal 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;
|
||||||
|
}
|
|
@ -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;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue