Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made homepage responsive #44

Merged
merged 3 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ body:
description: A brief description of the issue or bug you are facing, also include what you tried and what didn't work.
validations:
required: false

- type: textarea
attributes:
label: Screenshots
Expand All @@ -26,7 +26,7 @@ body:
description: Any additional information or Is there anything we should know about this bug?
validations:
required: false

- type: checkboxes
id: no-duplicate-issues
attributes:
Expand All @@ -42,4 +42,4 @@ body:
required: false

- label: "I am a Hacktoberfest 2023 contributor"
required: false
required: false
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/doc_report.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Documentation request 📃
description: Change regarding improving the docs to be more accessible
title: '[docs]'
labels: ['documentation']
title: "[docs]"
labels: ["documentation"]
body:
- type: textarea
attributes:
Expand All @@ -10,7 +10,7 @@ body:
What category does this change fall under. For example Typo error, New category addition, Rephrasing the sentences, fixing broken links etc.
validations:
required: true

- type: textarea
attributes:
label: Describe the change you think might work
Expand All @@ -34,11 +34,11 @@ body:

- label: "I am a Hacktoberfest 2023 contributor"
required: false

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our Code of Conduct
options:
- label: I agree to follow this project's Code of Conduct
- label: I agree to follow this project's Code of Conduct
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ body:
description: Please add screenshots if applicable
validations:
required: false

- type: checkboxes
id: no-duplicate-issues
attributes:
Expand All @@ -34,4 +34,4 @@ body:
required: false

- label: "I am a Hacktoberfest 2023 contributor"
required: false
required: false
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ body:
- type: markdown
attributes:
value: "# Other issue"

- type: textarea
id: issuedescription
attributes:
Expand Down Expand Up @@ -39,11 +39,11 @@ body:

- label: "I am a Hacktoberfest 2023 contributor"
required: false

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our Code of Conduct
options:
- label: I agree to follow this project's Code of Conduct
- label: I agree to follow this project's Code of Conduct
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/styles.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 👯‍♂️ Style Changing Request
description: Suggest a style designs
title: '[style]'
title: "[style]"
labels: ["enhancement"]

body:
Expand All @@ -14,9 +14,9 @@ body:
attributes:
label: What's the style idea?
placeholder: Add descriptions
value: 'We need to improve'
value: "We need to improve"
validations:
required: true
required: true

- type: checkboxes
id: no-duplicate-issues
Expand All @@ -34,11 +34,11 @@ body:

- label: "I am a Hacktoberfest 2023 contributor"
required: false

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our Code of Conduct
options:
- label: I agree to follow this project's Code of Conduct
- label: I agree to follow this project's Code of Conduct
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<!doctype html>
<html>
<<<<<<< HEAD
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
=======
<head>
>>>>>>> 70042b4142bf5e93bead6155b4d282c3a7a62439
<title>Profile Card Generator</title>
<link rel="stylesheet" href="./stylesheets/styles.css" />
<link
Expand Down
27 changes: 26 additions & 1 deletion stylesheets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ body {
}

.container {
padding-top: 200px;
display: flex;
/* padding-top: 200px; */
text-align: center;
max-width: 800px;
margin: 20px;
height: 100vh;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
}

h1 {
Expand All @@ -55,6 +61,14 @@ h1 {
}

p {
<<<<<<< HEAD
display: flex;
font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size: 15px;
color: #EEEEEE;
flex-direction: row;
justify-content: space-around;
=======
font-family:
ui-sans-serif,
system-ui,
Expand All @@ -72,6 +86,7 @@ p {
"Noto Color Emoji";
font-size: 15px;
color: #eeeeee;
>>>>>>> 70042b4142bf5e93bead6155b4d282c3a7a62439
}

.form-button,
Expand Down Expand Up @@ -186,3 +201,13 @@ button {
color: white;
transition: background-color 0.3s ease;
}

@media (max-width: 768px){
.container h1{
font-size: 1.7rem;
}

.topnav{
font-size: 1rem !important;
}
}