1
0
mirror of synced 2024-11-24 07:30:14 +01:00

Merge pull request #20 from orderedlist/design-tweaks

Design tweaks
This commit is contained in:
Steve Smith 2015-10-27 12:03:03 -04:00
commit 423744a9a3

View File

@ -1,10 +1,10 @@
@import url(https://fonts.googleapis.com/css?family=Lato:400italic,700italic,400,700);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,400italic,700italic,700);
body {
background-color: #fff;
padding:50px;
font: 14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
color:#666;
font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
color:#727272;
font-weight:400;
}
@ -35,7 +35,6 @@ h3, h4, h5, h6 {
a {
color:#39c;
font-weight:400;
text-decoration:none;
}
@ -46,7 +45,7 @@ a:hover {
a small {
font-size:11px;
color:#777;
margin-top:-0.6em;
margin-top:-0.3em;
display:block;
}
@ -108,32 +107,23 @@ header {
width:270px;
float:left;
position:fixed;
-webkit-font-smoothing:subpixel-antialiased;
}
header ul {
list-style:none;
height:40px;
padding:0;
background: #eee;
background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd));
background: -webkit-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
background: -o-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
background: -ms-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
background: linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
background: #f4f4f4;
border-radius:5px;
border:1px solid #d2d2d2;
box-shadow:inset #fff 0 1px 0, inset rgba(0,0,0,0.03) 0 -1px 0;
border:1px solid #e0e0e0;
width:270px;
}
header li {
width:89px;
float:left;
border-right:1px solid #d2d2d2;
border-right:1px solid #e0e0e0;
height:40px;
}
@ -157,18 +147,10 @@ header ul a {
header ul a:hover {
color:#999;
background: -moz-linear-gradient(top, #fff 0%, #ddd 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#ddd));
background: -webkit-linear-gradient(top, #fff 0%,#ddd 100%);
background: -o-linear-gradient(top, #fff 0%,#ddd 100%);
background: -ms-linear-gradient(top, #fff 0%,#ddd 100%);
background: linear-gradient(top, #fff 0%,#ddd 100%);
}
header ul a:active {
-webkit-box-shadow: inset 0px 2px 2px 0px #ddd;
-moz-box-shadow: inset 0px 2px 2px 0px #ddd;
box-shadow: inset 0px 2px 2px 0px #ddd;
background-color:#f0f0f0;
}
strong {
@ -176,11 +158,6 @@ strong {
font-weight:700;
}
header ul li + li {
width:88px;
border-left:1px solid #fff;
}
header ul li + li + li {
border-right:none;
width:89px;
@ -214,6 +191,7 @@ footer {
float:left;
position:fixed;
bottom:50px;
-webkit-font-smoothing:subpixel-antialiased;
}
@media print, screen and (max-width: 960px) {