Skip to content

Commit

Permalink
Update index.html and style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
mansi066 committed Nov 10, 2024
1 parent cae0d2e commit 89e86f8
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 59 deletions.
70 changes: 18 additions & 52 deletions .github/ISSUE_TEMPLATE/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,71 +1,37 @@
name: 📝 Documentation Update
description: Improve Documentation
title: "[Doc]: "
labels: [documentation]
name: "📝 Documentation Update"
description: "Propose an update or correction to the documentation"
title: "DOC UPDATE:"
labels: ["Documentation"]
body:
- type: checkboxes
id: existing-issue
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the updates you want to make.
options:
- label: I have searched the existing issues
required: true

- type: textarea
id: issue-description
attributes:
label: Issue Description
description: Please provide a clear description of the documentation update you are suggesting.
placeholder: Describe the improvement or correction you'd like to see in the documentation.
label: "Documentation Page"
description: "Which page or section of the documentation needs to be updated?"
validations:
required: true

- type: textarea
id: suggested-change
attributes:
label: Suggested Change
description: Provide details of the proposed change to the documentation.
placeholder: Explain how the documentation should be updated or corrected.
label: "Description of Changes"
description: "Describe the changes you propose for the documentation."
validations:
required: true

- type: textarea
id: rationale
attributes:
label: Rationale
description: Why is this documentation update necessary or beneficial?
placeholder: Explain the importance or reasoning behind the suggested change.
label: "Reason for Update"
description: "Explain why these changes are necessary or beneficial."
validations:
required: false

- type: dropdown
id: urgency
- type: textarea
attributes:
label: Urgency
description: How urgently do you believe this documentation update is needed?
options:
- High
- Medium
- Low
default: 0
label: "Screenshots/Logs"
description: "If applicable, add screenshots or logs that can help us understand the issue better."
validations:
required: true

required: false
- type: checkboxes
id: terms
attributes:
label: Acknowledgements
description: Ensure you have read and agree to the project's guidelines.
label: "Additional Information"
options:
- label: I have read the [Contributing Guidelines](https://github.com/alo7lika/master-web-development/blob/test/CONTRIBUTING.md)*
required: true
- label: I'm a GSSOC'24-Extd contributor
- label: I'm a Hacktoberfest contributor
- label: I have starred the repository
- label: "I have checked the documentation for accuracy"
required: true
- label: 'I am willing to work on this issue (optional)'
required: false



- label: "I am willing to help with this update"
- label: "I can provide further clarification if needed"
11 changes: 8 additions & 3 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -739,9 +739,14 @@ body {
}

.icon {
position: fixed;
top: 1rem;
right: 1rem;
position: absolute;
right: 0rem;
display: flex;
flex-direction: row-reverse;
flex-wrap: wrap;
align-content: center;
justify-content: flex-end;
align-items: flex-end;
}

#toggle-mode-btn {
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@

</style>
<!-- Navbar Component with Centered Links and Title Update -->
<!DOCTYPE html>
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
Expand All @@ -176,7 +176,7 @@
</head>
<body>
<header>
<nav class="navbar">
<nav class="navbar">
<a href="#" class="logo">
Master-Web<br>
<span>Development</span>
Expand All @@ -192,10 +192,10 @@
<li><a href="#">Projects</a></li>
<li><a href="./feedback.html">Feedback</a></li>
</ul>
</nav>
</nav>
</header>
</body>
</html>
</html> -->

<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remix.css" rel="stylesheet" />
<link rel="stylesheet" href="styles.css">
Expand Down
2 changes: 2 additions & 0 deletions navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,9 @@ body {
align-items: center;
justify-content: center;
border-bottom: 1px solid var(--accent-color);
margin-top: -18px;
}

/* Navbar list */
.navbar ul {
list-style: none;
Expand Down
1 change: 1 addition & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid var(--accent-color);
margin-top: -18px;
}
/* Navbar list */
.navbar ul {
Expand Down

0 comments on commit 89e86f8

Please sign in to comment.