FIX: Add support for published pages

This commit is contained in:
Jordan Vidrine 2021-08-16 11:33:29 -05:00
parent ef984ab663
commit 391a7142ba

View File

@ -460,4 +460,33 @@ td.num.views, th.num.views {
.navigation-container {
margin-top: 2em;
}
// published page additions
.published-page-content-wrapper {
max-width: 1000px;
margin-top: 30px;
margin-bottom: 50px;
background: var(--secondary);
border-radius: 1em;
padding: 3em 3em 5%;
box-shadow: 0 24px 40px rgba(0,0,0,0.07),0 10.8529px 24.1177px rgba(0,0,0,0.0456112),0 4.50776px 10.0172px rgba(0,0,0,0.035),0 1.63037px 3.62304px rgba(0,0,0,0.0243888);
z-index: 1;
position: relative;
}
.published-page {
.background-container {
display: none;
}
&::before {
background: linear-gradient(90deg, var(--tertiary-hover) 0%, var(--tertiary) 100%);
clip-path: ellipse(148% 70% at 91% -14%);
content: "";
width: 100%;
height: 100%;
display: block;
position: fixed;
z-index: 0;
}
}