refactor: Reduce code duplication by using the section element for general styling

- Fix indentation in index.html
This commit is contained in:
Marco Kaiser 2024-11-17 08:26:36 +01:00
parent 002e945bbe
commit be8c44ab7d
Signed by: kaiserkiwi
GPG key ID: 664DEC0325FA5EAC
2 changed files with 146 additions and 163 deletions

View file

@ -87,14 +87,19 @@ main {
padding-inline: var(--spacing-sm);
max-width: 1000px;
margin: 0 auto;
}
.form-section {
section:not(.output-section) {
text-align: left;
background-color: #102f2a;
padding: var(--spacing-md);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
color: var(--cyber-font-color);
&:not(:last-child) {
margin-bottom: 40px;
}
}
}
.input-group, .radio-group, button {
@ -207,27 +212,12 @@ button:active {
display: block;
}
.output-section {
margin-top: 40px;
}
#outDiv {
display: none;
margin-top: 30px;
text-align: center;
}
/* FAQ Section */
.faq-section {
background-color: var(--cyber-faq-bg-color);
padding: var(--spacing-md);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
color: var(--cyber-font-color);
margin-top: 40px;
text-align: left;
}
.faq-section h3 {
font-size: 2rem;
margin-bottom: 20px;
@ -317,16 +307,6 @@ button:active {
.faq-answer li::marker {
color: var(--cyber-highlight-color);
}
/* Credits Section */
.credits-section {
background-color: var(--cyber-faq-bg-color);
padding: var(--spacing-md);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
color: var(--cyber-font-color);
margin-top: 40px;
text-align: left;
}
.credits-section h3 {
font-size: 2rem;

View file

@ -24,7 +24,7 @@
<meta name="author" content="Ramses Revengeday">
<meta name="theme-color" content="#1bec99">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta property="fediverse:creator" content="@revengeday@corteximplant.com" />
<meta property="fediverse:creator" content="@revengeday@corteximplant.com"/>
</head>
<body>
@ -34,7 +34,7 @@
<img src="img/logo.png" alt="Logo">
</div>
</section>
<main>
<main>
<section class="form-section">
<div class="form-container">
<form id="generateForm" onsubmit="(async () => await circleMain())(); return false;">
@ -53,12 +53,12 @@
<label for="countSlider">Cyber Score:</label>
<input type="range" id="countSlider" name="count" min="1" max="1000" value="250" step="1">
<span id="sliderValueDisplay">250</span>
</div>
</div>
<button type="submit" id="generateButton">⟨ Generate ⟩</button>
</form>
</div>
</section>
<section class="output-section"> <span id="outInfo"></span>
<section class="output-section"><span id="outInfo"></span>
<div class="canvas-container">
<canvas alt="A central profile picture surrounded by numerous smaller circular images, mostly profile pictures of various styles and subjects, linked by lines. The background is black with green text saying Cyber Circle Creator in the top left corner." id="canvas" width="1000" height="1000" style="
background-image: url('img/circle.jpg');
@ -75,7 +75,7 @@
</div>
</div>
</section>
<section class="faq-section">
<section class="faq-section">
<h3>Frequently Asked Questions</h3>
<div class="faq-item">
@ -130,25 +130,28 @@
<input type="checkbox" id="faq7" class="faq-checkbox">
<label for="faq7" class="faq-question">Is it possible to directly link to my account?</label>
<div class="faq-answer">
<p>Yes, it is possible. Simply change the URL to <i>https://ccc.cyber.to/?@revengeday@corteximplant.com</i>, replacing <i>@revengeday@corteximplant.com</i> with your own account details.</p>
<p>Yes, it is possible. Simply change the URL to<i>https://ccc.cyber.to/?@revengeday@corteximplant.com</i>, replacing <i>@revengeday@corteximplant.com</i>with your own account details.</p>
</div>
<div class="faq-item">
<div class="faq-item">
<input type="checkbox" id="faq8" class="faq-checkbox">
<label for="faq8" class="faq-question">Hey, how do I tell Cyber Circle Creator to buzz off and stop using my data? Where's the opt-out?!</label>
<div class="faq-answer">
<p>We understand some users have concerns about data usage by Cyber Circle Creator. This tool is based on a fork of AMNatty/Mastodon-Circles, and user feedback suggests a demand for opt-out capabilities. Here's what we're doing to address these concerns:</p>
<ol>
<li><strong>User Control:</strong> Cyber Circle Creator operates entirely within your browser, ensuring that no data is stored on external servers. This design choice was made to enhance user privacy and control, and there's no data analysis performed.</li>
<li><strong>Initial Measures:</strong> We've added a user-agent to our create-circle.js file. This allows Fediverse administrators to block Cyber Circle Creator if desired. Guidelines on implementing this measure can be found in our wiki under <a href="https://git.cyberwa.re/revengeday/cyber-circle-creator/wiki/Opt-Out%3A+Guide+for+Fediverse+Administrators">Opt-Out: Guide for Fediverse Administrators</a>.</li>
<li><strong>Future Plans:</strong> We are evaluating ways to implement an opt-out feature to offer more control over data interaction. For more details or to contribute to this effort, please see our <a href="https://git.cyberwa.re/revengeday/cyber-circle-creator/issues/6">Feature Request: Opt-Out from Cyber Circle Creator #6</a>. We are actively seeking collaborators to help develop this feature, despite the technical complexities due to our codebase.</li>
<li><strong>User Control:</strong> Cyber Circle Creator operates entirely within your browser, ensuring that no data is stored on external servers. This design choice was made to enhance user privacy and control, and there's no data analysis performed.
</li>
<li><strong>Initial Measures:</strong> We've added a user-agent to our create-circle.js file. This allows Fediverse administrators to block Cyber Circle Creator if desired. Guidelines on implementing this measure can be found in our wiki under <a href="https://git.cyberwa.re/revengeday/cyber-circle-creator/wiki/Opt-Out%3A+Guide+for+Fediverse+Administrators">Opt-Out: Guide for Fediverse Administrators</a>.
</li>
<li><strong>Future Plans:</strong> We are evaluating ways to implement an opt-out feature to offer more control over data interaction. For more details or to contribute to this effort, please see our <a href="https://git.cyberwa.re/revengeday/cyber-circle-creator/issues/6">Feature Request: Opt-Out from Cyber Circle Creator #6</a>. We are actively seeking collaborators to help develop this feature, despite the technical complexities due to our codebase.
</li>
</ol>
<p>If you have further questions or would like to contribute to this effort, please reach out. We appreciate your patience and feedback as we work to enhance user privacy and satisfaction.</p>
</div>
</div>
</div>
</section>
<section class="credits-section">
</div>
</section>
<section class="credits-section">
<h3>Credits</h3>
<div class="credits-content">
<p>
@ -161,15 +164,15 @@
</p>
<p>Moreover, the design employs the <a href="https://github.com/rektdeckard/departure-mono" target="_blank" rel="nofollow">departure-mono</a> typeface, crafted by rektdeckard and available under the <a href="https://opensource.org/licenses/MIT" target="_blank" rel="nofollow">MIT License</a>.</p>
</div>
</section>
</main>
<footer id="footer">
</section>
</main>
<footer id="footer">
<p class="footer-note">Created by revengeday → <a href="https://corteximplant.com/@revengeday">@revengeday@corteximplant.com</a></p>
</footer>
<script src="js/create-circle.js"></script>
<script src="js/image.js"></script>
<script src="js/url.js"></script>
<script src="js/slider.js"></script>
<script>initializeSlider();</script>
</footer>
<script src="js/create-circle.js"></script>
<script src="js/image.js"></script>
<script src="js/url.js"></script>
<script src="js/slider.js"></script>
<script>initializeSlider();</script>
</body>
</html>