-
Notifications
You must be signed in to change notification settings - Fork 5
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
Issue 47leftalign #73
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,3 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
.env | ||
# Ignore artifacts: | ||
build | ||
coverage |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
{ | ||
"plugins": ["prettier-plugin-tailwindcss"] | ||
} | ||
{} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove this file (leftalign.html), the page has already been made for you. the issue requires you to fix a file. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the page you are looking for is the user applications page. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Document</title> | ||
</head> | ||
<style> | ||
body { | ||
height: 50%; | ||
position: fixed; | ||
} | ||
|
||
.inside_container { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.block { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
p { | ||
margin: 0; | ||
line-height: 1.5; | ||
} | ||
|
||
#next { | ||
display: inline; | ||
width: 60px; | ||
padding: 5px 10px 5px 10px; | ||
border-radius: 5px; | ||
background-color: black; | ||
color: white; | ||
} | ||
|
||
#tailwind { | ||
display: inline; | ||
width: 90px; | ||
padding: 5px 10px 5px 10px; | ||
border-radius: 5px; | ||
background-color: #38bdf9; | ||
color: white; | ||
} | ||
|
||
#type { | ||
display: inline; | ||
width: 80px; | ||
padding: 5px 10px 5px 10px; | ||
border-radius: 5px; | ||
background-color: #3078c6; | ||
color: white; | ||
} | ||
|
||
h4 { | ||
display: flex; | ||
justify-content: center; | ||
color: #173967; | ||
} | ||
</style> | ||
|
||
<body> | ||
<h4>ACM Ignite Fall 2024</h4> | ||
<p> | ||
ACM Ignite Fall 2024 Lorem Ipsum is simply dummy text of the printing and | ||
typesetting industry. Lorem Ipsum has been the industry's standard dummy | ||
text ever since the 1500s, when an unknown printer took a galley of type | ||
and scrambled it to make a type specimen book. It has survived not only | ||
five centuries, but also the leap into electronic typesetting, remaining | ||
essentially unchanged. It was popularised in the 1960s with the release of | ||
Letraset sheets containing Lorem Ipsum passages, and more recently with | ||
desktop publishing software like Aldus PageMaker including versions of | ||
Lorem Ipsum. | ||
</p> | ||
|
||
<br /> | ||
|
||
<div class="outside_contianer"> | ||
<div class="inside_container"> | ||
<div id="block"> | ||
<p>Organization 1</p> | ||
<div class="box_containers"> | ||
<p id="next">Next.js</p> | ||
<p id="tailwind">TailwindCSS</p> | ||
<p id="type">Typescript</p> | ||
</div> | ||
<p>This is a very cool organization</p> | ||
</div> | ||
</div> | ||
|
||
<div class="inside_container"> | ||
<div id="block"> | ||
<p>Organization 1</p> | ||
<div class="box_containers"> | ||
<p id="next">Next.js</p> | ||
<p id="tailwind">TailwindCSS</p> | ||
<p id="type">Typescript</p> | ||
</div> | ||
<p>This is a very cool organization</p> | ||
</div> | ||
</div> | ||
|
||
<div class="inside_container"> | ||
<div id="block"> | ||
<p>Organization 1</p> | ||
<div class="box_containers"> | ||
<p id="next">Next.js</p> | ||
<p id="tailwind">TailwindCSS</p> | ||
<p id="type">Typescript</p> | ||
</div> | ||
<p>This is a very cool organization</p> | ||
</div> | ||
</div> | ||
|
||
<div class="inside_container"> | ||
<div id="block"> | ||
<p>Organization 1</p> | ||
<div class="box_containers"> | ||
<p id="next">Next.js</p> | ||
<p id="tailwind">TailwindCSS</p> | ||
<p id="type">Typescript</p> | ||
</div> | ||
<p>This is a very cool organization</p> | ||
</div> | ||
</div> | ||
|
||
<div class="inside_container"> | ||
<div id="block"> | ||
<p>Organization 1</p> | ||
<div class="box_containers"> | ||
<p id="next">Next.js</p> | ||
<p id="tailwind">TailwindCSS</p> | ||
<p id="type">Typescript</p> | ||
</div> | ||
<p>This is a very cool organization</p> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert this (.prettierignore), these are needed.