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

feat: Modified requirements page (#383) #1

Merged
merged 1 commit into from
Apr 12, 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
14 changes: 8 additions & 6 deletions you-may-like/song-suggestion/requirements.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css">
<title>Requirements</title>
</head>
<body>
<h1>
<h1 class="requirements-heading">
The requirements for a song to be in the You May Like page is as follows:
</h1>
<p>
- Song to be a Christmas Song, it shouldn't only have Christmas in the
song name, but the song should be about Christmas.
</p>
<p>- Song to not have bad words</p>
<ul class="requirements-list">
<li class="requirements-list-items">Song should be a Christmas Song, it shouldn't only have Christmas in the
song name, but the song should also be about Christmas.</li>
<li class="requirements-list-items">Song should not have bad words</li>
</ul>
<!-- <img src="./artboard-studio-B40ztSGQTZY-unsplash.jpg" alt=""> -->
</body>
</html>
17 changes: 17 additions & 0 deletions you-may-like/song-suggestion/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,20 @@ button {
flex-direction: column;
align-items: center;
}

.requirements-heading{
color: rgb(167, 36, 36);
text-align: center;
}
.requirements-list{
margin-inline: 15%;
list-style-type:disc;
color: rgb(22, 22, 16);
display: block;
padding: 2%;
}
.requirements-list-items{
margin-top: 1%;
padding: 1%;
font-size: large;
}