Skip to content

Commit

Permalink
Imported Working Version of Project
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgabz committed Mar 14, 2017
1 parent 14bc976 commit 379f571
Show file tree
Hide file tree
Showing 6 changed files with 1,077 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
css/skeleton.css linguist-vendored
css/normalize.css linguist-vendored
64 changes: 64 additions & 0 deletions css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* Custom CSS stylesheet for TalkingAlphabet's elements
* By Aaron Gaba
*/


.container {
max-width: 800px; }

.header {
margin-top: 6rem;
text-align: center; }

.keyboard {
text-align: center;
}



button.keyboard-key:active {
color: #FFF;
background-color: #33C3F0;
border-color: #33C3F0;
}

/* The active-style class is used by jQuery
to simulate CSS's ":active" pseudo-class.
*/
button.active-style {
color: #FFF;
background-color: #33C3F0;
border-color: #33C3F0;
}

/* Dynamically adjusts the size of the keyboard's buttons. */
@media (min-width: 300px) {
button.keyboard-key {
padding: 0px 10px;
}
}

@media (min-width: 520px) {
button.keyboard-key {
padding: 0px 15px;
}
}

@media (min-width: 700px) {
button.keyboard-key {
padding: 0px 20px;
}
}

@media (min-width: 800px) {
button.keyboard-key {
padding: 0px 25px;
}
}

@media (min-width: 930px) {
button.keyboard-key {
padding: 0px 30px;
}
}
Loading

0 comments on commit 379f571

Please sign in to comment.