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 a bunch of accessibility issues! #53

Open
wants to merge 1 commit 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
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jekyll-archives:

# Owner/author information
author:
name:
name: WeAllJS
picture:
email: [email protected]
# Use the coder's toolbox at http://coderstoolbox.net/string/#!encoding=xml&action=encode&charset=us_ascii to encode your description into XML string
Expand Down
6 changes: 3 additions & 3 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ul class="social-icons">
{% if site.author.twitter %}
<li>
<a href="http://twitter.com/{{ site.author.twitter }}" data-toggle="tooltip" title="{{ site.author.name}} on Twitter" target="_blank">
<a href="http://twitter.com/{{ site.author.twitter }}" title="{{ site.author.name }} on Twitter" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
Expand Down Expand Up @@ -63,9 +63,9 @@
{% for link in site.links %}
<li>
{% if link.external %}
<a href="{{ link.url }}">{% if link.icon %}<i class="fa fa-{{ link.icon }}"></i> {% else %} {{ link.title }}{% endif %} </a>&nbsp;&bull;
<a href="{{ link.url }}" title="{{ link.title }}">{% if link.icon %}<i class="fa fa-{{ link.icon }}"></i> {% else %} {{ link.title }}{% endif %} </a>&nbsp;&bull;
{% else %}
<a href="{{ site.url }}{{ link.url }}">{% if link.icon %}<i class="fa fa-{{ link.icon }}"></i>{% else %}{{ link.title }}{% endif %}</a>&nbsp;&bull;
<a href="{{ site.url }}{{ link.url }}" title="{{ link.title }}">{% if link.icon %}<i class="fa fa-{{ link.icon }}"></i>{% else %}{{ link.title }}{% endif %}</a>&nbsp;&bull;
{% endif %}
</li>
{% endfor %}
Expand Down
3 changes: 1 addition & 2 deletions _posts/2000-01-01-join-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ shortly after.
<label><span>Email: </span><input name="email" required type="email" class="input-field"></label>
<label><span>Twitter (optional): </span><input name="twitter" type="text" class="input-field"></label>
<label><span>GitHub (optional): </span><input name="github" type="text" class="input-field"></label>
<label><span>About You</span></label>
<textarea name="about" placeholder="Tell us a bit about yourself! Anything or nothing is fine!" class="textarea-field"></textarea>
<label><span>About You</span><textarea name="about" placeholder="Tell us a bit about yourself! Anything or nothing is fine!" class="textarea-field"></textarea></label>
<label><span>&nbsp;</span><input type="checkbox" name="coc" required class="input-field"> I agree to the <a href="/code-of-conduct.html">Code of Conduct</a>
</label>
<input type="hidden" name="redirect_uri" value="https://wealljs.org/postsignup">
Expand Down
32 changes: 5 additions & 27 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ h6 {
}
/* - Links - */
a {
text-decoration: none;
transition: color 0.2s;
}

Expand Down Expand Up @@ -276,7 +275,7 @@ input[type=number]::-webkit-outer-spin-button {
.form-style-2 button{
border: none;
padding: 8px 15px 8px 15px;
background: #FF8500;
background: #b85e00;
color: #fff;
box-shadow: 1px 1px 4px #DADADA;
-moz-box-shadow: 1px 1px 4px #DADADA;
Expand Down Expand Up @@ -525,8 +524,8 @@ h6,
}

a {
color: #807f83;
border-color: #807f83;
color: #595959;
border-color: #595959;
}

a:hover {
Expand All @@ -539,7 +538,7 @@ blockquote:before {
}

.post-title {
color: #807f83;
color: #595959;
}

.post-info {
Expand Down Expand Up @@ -703,7 +702,7 @@ html {
margin-bottom: 24px;
}

.post-body a {
.post-body a, .page-body a {
border-bottom: 1px dotted;
}

Expand Down Expand Up @@ -1960,27 +1959,6 @@ img.mfp-img {
opacity: 0;
}

::-webkit-scrollbar {
width: 4px;
height: 6px;
}

::-webkit-scrollbar-track {
-webkit-border-radius: 10px;
border-radius: 10px;
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
background: rgba(0,0,0,0.5);
-webkit-border-radius: 0px;
border-radius: 0px;
}

::-webkit-scrollbar-thumb:window-inactive {
background: rgba(0,0,0,0.2);
}
/* - Menu - */
.menu-items {
margin: 0;
Expand Down