Skip to content

Commit

Permalink
improve style
Browse files Browse the repository at this point in the history
  • Loading branch information
gmonnerat committed Apr 14, 2012
1 parent abf1aa2 commit 1544861
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions static/base.css
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,52 @@
p#title{
font-size: 30px;
text-shadow: 2px 2px 2px rgba(148, 150, 150, 0.71);
}

body {
font-weight: bold;
background-image: linear-gradient(bottom, rgb(189,189,189) 4%, rgb(238,238,238) 63%);
background-image: -o-linear-gradient(bottom, rgb(189,189,189) 4%, rgb(238,238,238) 63%);
background-image: -moz-linear-gradient(bottom, rgb(189,189,189) 4%, rgb(238,238,238) 63%);
background-image: -webkit-linear-gradient(bottom, rgb(189,189,189) 4%, rgb(238,238,238) 63%);
background-image: -ms-linear-gradient(bottom, rgb(189,189,189) 4%, rgb(238,238,238) 63%);

background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.04, rgb(189,189,189)),
color-stop(0.63, rgb(238,238,238))
);
}

div.upload_area {
text-align: center;
margin-left: auto;
margin-right: auto;
width: 50%;
height: 130px;
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
box-shadow: 0px 0px 10px rgba(0,0,0,.8);
z-index: 100;
}

div.upload_area form{
padding-top: 24px;
}

.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 10px 20px;
background: -moz-linear-gradient(top, #42aaff 0%, #003366);
background: -webkit-gradient(linear, left top, left bottom, from(#42aaff), to(#003366));
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border: 1px solid #618db8;
-moz-box-shadow: 0px 1px 3px rgba(000,000,000,0.5), inset 0px 0px 1px rgba(077,008,077,0.9);
text-shadow: 0px -1px 0px rgba(000,000,000,0.7), 0px 1px 0px rgba(255,255,255,0.3);
}

0 comments on commit 1544861

Please sign in to comment.