-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add container styling and dynamic content placeholders
Introduced a styled container for improved layout and readability. Added placeholders for dynamic content and a "Load More" button to facilitate future enhancements. Signed-off-by: Gregory <[email protected]>
- Loading branch information
1 parent
5a259f1
commit f95fc60
Showing
1 changed file
with
45 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,15 @@ | |
padding: 20px; | ||
} | ||
|
||
.container { | ||
max-width: 800px; | ||
margin: auto; | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
h1 { | ||
color: #343a40; | ||
text-align: center; | ||
|
@@ -35,19 +44,45 @@ | |
a:hover { | ||
color: #0056b3; | ||
} | ||
|
||
/* Additional styling for dynamic content */ | ||
.placeholder { | ||
background: #e9ecef; | ||
border-radius: 4px; | ||
height: 20px; | ||
width: 70%; | ||
margin: 20px 0; | ||
} | ||
|
||
.btn-primary { | ||
background-color: #007bff; | ||
border: none; | ||
} | ||
|
||
.btn-primary:hover { | ||
background-color: #0056b3; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Unpublished Docs</h1> | ||
<ul> | ||
<!-- Assuming files in "unpublished docs" and dynamically listing them --> | ||
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc1.md</a></li> | ||
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc2.md</a></li> | ||
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc3.md</a></li> | ||
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc4.md</a></li> | ||
<li><a href="Unpublished%20docs/DEV ENGINE INI LOW PERFORMANCE.md">doc5.md</a></li> | ||
<!-- Add more links as needed --> | ||
</ul> | ||
<div class="container"> | ||
<h1>Unpublished Docs</h1> | ||
<ul> | ||
<!-- Assuming files in "unpublished docs" and dynamically listing them --> | ||
<li><a href="Unpublished%20docs/doc1.md">Document 1</a></li> | ||
<li><a href="Unpublished%20docs/doc2.md">Document 2</a></li> | ||
<li><a href="Unpublished%20docs/doc3.md">Document 3</a></li> | ||
<li><a href="Unpublished%20docs/doc4.md">Document 4</a></li> | ||
<li><a href="Unpublished%20docs/doc5.md">Document 5</a></li> | ||
<!-- Placeholder for additional docs to be dynamically added --> | ||
<div class="placeholder"></div> | ||
<div class="placeholder"></div> | ||
</ul> | ||
<!-- Placeholder for future button or additional actions --> | ||
<div class="text-center mt-4"> | ||
<button class="btn btn-primary">Load More</button> | ||
</div> | ||
</div> | ||
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</body> | ||
|