summaryrefslogtreecommitdiffstats
path: root/assets/css/application.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/application.css')
-rw-r--r--assets/css/application.css120
1 files changed, 119 insertions, 1 deletions
diff --git a/assets/css/application.css b/assets/css/application.css
index 255ff68..0de3a55 100644
--- a/assets/css/application.css
+++ b/assets/css/application.css
@@ -1,6 +1,124 @@
/* Application */
/* General global styles */
+
+/* . Layout . */
+body {
+ background: url('../images/background.png') repeat;
+ padding: 0 2.8em;
+ font-family: Helvetica, sans-serif;
+}
+
+
+header {
+ font-family: neoretrodrawregular, znikomitno24regular, seasideresortnfregular, itsadzokes01regular, sans-serif;
+ font-size: 80px;
+ margin: 0.2em 0 0.4em;
+}
+
+
#samples {
- margin: 3em 2em;
+ margin: 3em 0;
+}
+
+
+
+/* . Inputs . */
+.url-input {
+ width: 80%;
+ padding: 0.3em 0.4em;
+ font-size: 1.5em;
+}
+
+
+.key { /* http://cssdeck.com/labs/apple-keyboard-via-css3 */
+ display: block;
+ color: #aaa;
+ font: bold 18pt Helvetica, sans-serif;
+ text-decoration: none;
+ text-align: center;
+ width: 44px;
+ height: 41px;
+ margin: 5px;
+ background: #eff0f2;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ border-top: 1px solid #f5f5f5;
+ -webkit-box-shadow:
+ inset 0 0 25px #e8e8e8,
+ 0 1px 0 #c3c3c3,
+ 0 2px 0 #c9c9c9,
+ 0 2px 3px #333;
+ -moz-box-shadow:
+ inset 0 0 25px #e8e8e8,
+ 0 1px 0 #c3c3c3,
+ 0 2px 0 #c9c9c9,
+ 0 2px 3px #333;
+ box-shadow:
+ inset 0 0 25px #e8e8e8,
+ 0 1px 0 #c3c3c3,
+ 0 2px 0 #c9c9c9,
+ 0 2px 3px #333;
+ text-shadow: 0px 1px 0px #f5f5f5;
+}
+
+.key-input {
+ border: none;
+}
+
+.key-input:hover {
+ background: #dddee0;
+}
+
+
+
+/* . Buttons . */
+.button {
+ border-width: 1px;
+ border-style: solid;
+ cursor: pointer;
+ padding: 0.05em 0.4em 0.2em;
+ position: relative;
+ top: -0.07em;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+ -webkit-box-shadow: 0px 4px 1px 0px rgba(40, 150, 44, 1);
+ box-shadow: 0px 4px 1px 0px rgba(40, 150, 44, 1);
+ -webkit-transition: all 150ms linear;
+ -moz-transition: all 150ms linear;
+ -o-transition: all 150ms linear;
+ -ms-transition: all 150ms linear;
+ transition: all 150ms linear;
+}
+
+.button:active {
+ top: 0;
+ -webkit-box-shadow: 0px 0px 1px 0px rgba(40, 150, 44, 1);
+ box-shadow: 0px 0px 1px 0px rgba(40, 150, 44, 1);
+}
+
+.button:focus {
+ outline: none;
+}
+
+.button.green {
+ background-color: #34bf39;
+ border-color: #2faf34;
+ color: #eee;
+ text-shadow: 0px 1px 2px rgba(0,0,0,0.9);
+}
+
+.button.green:hover {
+ background-color: #39d740;
+ color: #fff;
+}
+
+.button.green:active {
+ background-color: #2ea732;
+ color: #ddd;
+}
+
+.button.green.large {
+ font-size: 2em;
+ line-height: 1;
} \ No newline at end of file