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

fix h3 new collection tag #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions CSS/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ span {
font-family: "Playfair Display";
}

.newCollection{
font-size: 16px;
}
@media screen and (min-width: 600px) {
p {

Expand Down
5 changes: 5 additions & 0 deletions CSS/subscribe.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ form input {
font-size: 14px;
text-indent: 10px;
}

.screenTextReaderEmail {
position: absolute;
left:-1000px;
}
form input[type="email"] {
padding-left: 20px;
font-size: 17px;
Expand Down
43 changes: 43 additions & 0 deletions JS/tota11y.min.js

Large diffs are not rendered by default.

18 changes: 12 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@

<div class="nav">
<ul>
<li><a href="#_aboutAloha" id="ABOUT">ABOUT</a></li>
<li><a href="#_shop" id="Shop">SHOP</a></li>
<li><a href="#feature_items" id="FEATURED">FEATURED</a></li>
<li><a href="#subscribe_update" id="UPDATE">UPDATE</a></li>
<li><a href="#_aboutAloha" id="ABOUT" aria-label="navigation-item-about">ABOUT</a></li>
<li><a href="#_shop" id="Shop" aria-label="navigation-item-shop">SHOP</a></li>
<li><a href="#feature_items" id="FEATURED" aria-label="navigation-item-featured">FEATURED</a></li>
<li><a href="#subscribe_update" id="UPDATE" aria-label="navigation-item-update" >UPDATE</a></li>
</ul>
</div>

Expand All @@ -56,7 +56,7 @@
<section class="banner" id="_banner">

<div class="new_collection_text">
<h3> New Collection</h3>
<span class="newCollection"> New Collection</span>
</div>

<div class="Spring_summer_head" id="Spring_summer_head">
Expand Down Expand Up @@ -199,8 +199,13 @@ <h1><span>Sign-up for</span> Updates</h1>
<p>Stay updated on our latest prodcut releases, be first to find out about upcoming sales, and get free style
tips from our blog, Unsubscribe any time.</p>
<form>
<input type="emailTextField" placeholder="Your Email" id="emailTextField">
<label for="emailTextField" class="screenTextReaderEmail">
Enter email address
</label>
<input type="emailTextField" placeholder="Your Email" id="emailTextField">

<input type="button" class="subscribeButton" id="subscribeButton" value="Subscribe">

</form>

</section>
Expand Down Expand Up @@ -268,6 +273,7 @@ <h1><span>Sign-up for</span> Updates</h1>
</div>
</footer>
<!------------------------------- jQuery_Files ---------------------------------->
<script src="JS/tota11y.min.js"></script>
<script src="JS/jquery-3.3.1.min.js"></script>
<script src="JS/flickity.pkgd.min.js"></script>
<script src="JS/sweetalert2.all.min.js"></script>
Expand Down