Skip to content

Commit

Permalink
fix directory
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasthaddeus committed Aug 15, 2023
1 parent 0adba79 commit 2531a24
Show file tree
Hide file tree
Showing 7 changed files with 433 additions and 371 deletions.
6 changes: 3 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"python.analysis.extraPaths": [
"./modules",
"./src/modules"
"./src/app",
"./src/app/modules"
],
"python.testing.pytestArgs": [
"src"
"src/app/tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
Expand Down
36 changes: 36 additions & 0 deletions _index.html → docs/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,39 @@ <h1>Welcome to Our Site</h1>
<div class="video-box">
<iframe src="https://www.youtube.com/embed/VIDEO_ID" frameborder="0" allowfullscreen></iframe>
</div>


<!-- Tooltips -->
<!-- Element with a tooltip -->
<div class="tooltip">
Hover over me
<span class="tooltip-text">Tooltip text</span>
</div>
<!-- Accordions -->
<button class="accordion">Accordion 1</button>
<div class="accordion-content">
<p>This is the content for Accordion 1.</p>
</div>
<button class="accordion">Accordion 2</button>
<div class="accordion-content">
<p>This is the content for Accordion 2.</p>
</div>
<!-- HTML Implementations -->
<!-- List Boxes -->
<div class="list-box">
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
<!-- Picture Boxes -->
<figure class="picture-box">
<img src="path-to-image.jpg" alt="Description">
<figcaption>Caption for the image</figcaption>
</figure>
<!-- Video Boxes -->
<!-- Replace `VIDEO_ID` with the actual ID of the YouTube video you want to embed. -->
<div class="video-box">
<iframe src="https://www.youtube.com/embed/VIDEO_ID" frameborder="0" allowfullscreen></iframe>
</div>
47 changes: 31 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,41 +4,43 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Musical Chairs</title>
<link rel="stylesheet" href="/src/css/styles2.css">
<link rel="stylesheet" href="./src/css/styles.css">
</head>
<body>
<header>
<h1>Welcome to Musical Chairs</h1>
</header>
<main>
<section>
<h2>About</h2>
<p>This is a project by Thomasthaddeus. You can find more details in the <a href="/README.md">README</a>.</p>
<div class="hero">
<h2>About</h2>
<p>This is a project by Thomasthaddeus. You can find more details in the <a href="./README.md">README</a>.</p>
</div>
</section>
<section>
<h2>Directory Structure</h2>
<div class="dropdown">
<span>src</span>
<div class="dropdown-content">
<a href="/src/_decorators_main.py">_decorators_main.py</a>
<a href="/src/_functions_main.py">_functions_main.py</a>
<a href="/src/main.py">main.py</a>
<a href="./src/app/_decorators_main.py">_decorators_main.py</a>
<a href="./src/app/_functions_main.py">_functions_main.py</a>
<a href="./src/app/main.py">main.py</a>
<div class="dropdown">
<span>tests</span>
<div class="dropdown-content">
<a href="/src/tests/test_with_classes.py">test_with_classes.py</a>
<a href="/src/tests/test_with_heapq.py">test_with_heapq.py</a>
<a href="/src/tests/test_with_standalone.py">test_with_standalone.py</a>
<a href="/src/tests/test_with_zip_sorted.py">test_with_zip_sorted.py</a>
<a href="./src/app/tests/test_with_classes.py">test_with_classes.py</a>
<a href="./src/app/tests/test_with_heapq.py">test_with_heapq.py</a>
<a href="./src/app/tests/test_with_standalone.py">test_with_standalone.py</a>
<a href="./src/app/tests/test_with_zip_sorted.py">test_with_zip_sorted.py</a>
</div>
</div>
<div class="dropdown">
<span>modules</span>
<div class="dropdown-content">
<a href="/src/modules/with_classes.py">with_classes.py</a>
<a href="/src/modules/with_heapq.py">with_heapq.py</a>
<a href="/src/modules/with_standalone.py">with_standalone.py</a>
<a href="/src/modules/with_zip_sorted.py">with_zip_sorted.py</a>
<a href="./src/app/modules/with_classes.py">with_classes.py</a>
<a href="./src/app/modules/with_heapq.py">with_heapq.py</a>
<a href="./src/app/modules/with_standalone.py">with_standalone.py</a>
<a href="./src/app/modules/with_zip_sorted.py">with_zip_sorted.py</a>
</div>
</div>
</div>
Expand All @@ -50,12 +52,25 @@ <h2>Directory Structure</h2>
</div>
</div>
</section>
<section>
<button id="openModal">Open Modal</button>
<div class="modal" id="myModal">
<div class="modal-content">
<button class="modal-close" id="closeModal">&times;</button>
<h2>Contributing</h2>
<p>Contributions are welcome! Please read <a href="./CONTRIBUTING.md">CONTRIBUTING.md</a> for details on our code of conduct, and the process for submitting pull requests to us.</p>
</div>
</div>
</section>
</main>
<footer>
<p>Copyright &copy; 2023 Thaddeus Thomas. All rights reserved.</p>
<p><a href="/" target="_blank">Back to Home Site</a></p>
</footer>
<script src="/js/dropdown_enhancements.js"></script>
<script src="/js/smooth_scrolling.js"></script>
<script src="./src/js/dropdown_enhancements.js"></script>
<script src="./src/js/smooth_scrolling.js"></script>
<script src="./src/js/accordion.js"></script>
<script src="./src/js/fetch.js"></script>
<script src="./src/js/myModal.js"></script>
</body>
</html>
99 changes: 99 additions & 0 deletions src/css/old_styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
/* Base Styles */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}

a {
color: #007BFF;
text-decoration: none;
transition: color 0.3s;
}

a:hover {
color: #0056b3;
}

h1, h2, h3, h4, h5, h6 {
margin-top: 0;
}

/* Header Styles */
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
}

/* Main Content Styles */
main {
padding: 20px;
max-width: 1200px;
margin: 20px auto;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
margin-bottom: 20px;
}

/* Dropdown Menu Styles */
.dropdown {
position: relative;
display: inline-block;
margin-right: 20px;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border: 1px solid #ddd;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown-content a:hover {
background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
display: block;
}

/* Footer Styles */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
margin-top: 20px;
}


footer a {
color: #fff;
padding: 5px 10px;
border: 1px solid #fff;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}

footer a:hover {
background-color: #fff;
color: #333;
}
Loading

0 comments on commit 2531a24

Please sign in to comment.