Skip to content

Commit

Permalink
Faff with the styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
mudge committed Mar 3, 2010
1 parent 6a70e14 commit 081c945
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions index.html
Expand Up @@ -6,17 +6,17 @@
<link rel="stylesheet" type="text/css" href="st.css">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="apple-touch-startup-image" href="loading.png">
<meta name="viewport" content="width=device-width; initial-scale=1.0;">
<meta name="viewport" content="user-scalable=no, width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
</head>
<body>
<form onsubmit="return addSpend()">
<p>
&pound;
<input type="number" id="amount" placeholder="0.00" size="5">
<input type="number" id="amount" placeholder="0.00" size="4">
on
<input type="text" autosave="descriptions" id="description" placeholder="Lunch" size="10">
<input type="text" autosave="descriptions" id="description" placeholder="Lunch" size="9">
</p>
<p>
<input type="submit" value="Add Spend">
Expand Down
2 changes: 1 addition & 1 deletion spendthrift.manifest
Expand Up @@ -4,4 +4,4 @@ stc.js
st.css
bg.png

# 79845e4ccdb697038dd87346d0505a401bf4afea
# 6a70e14150e99d938864e3eb38dd52e69120c7b6
6 changes: 5 additions & 1 deletion st.css
Expand Up @@ -22,14 +22,18 @@ input {
font-size: x-large;
-webkit-border-radius: 5px;
border: 1px solid #000;
padding: 5px;
padding: 3px 5px;
}
input[type=submit] {
font-size: large;
padding: 5px 10px;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffe), to(#bba));
text-shadow: 0 1px 0 #fff;
}
input[type=submit]:active {
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#998), to(#ddc));
text-shadow: 0 1px 0 #ddd;
}
table {
background: rgba(255, 255, 255, 0.2);
width: 100%;
Expand Down

0 comments on commit 081c945

Please sign in to comment.