This commit is contained in:
JT 2014-07-22 21:16:26 -07:00
parent 0406f6c8b5
commit 169b1b911d
7 changed files with 52 additions and 60 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -53,7 +53,7 @@
.li-under a:hover::after,
.li-under a:focus::after {
opacity: 1;
-webkit-transform: skewY(15deg) translateY(10px);
-moz-transform: skewY(15deg) translateY(10px);
transform: skewY(15deg) translateY(10px);
-webkit-transform: skewY(15deg) translateY(15px);
-moz-transform: skewY(15deg) translateY(15px);
transform: skewY(15deg) translateY(15px);
}

View File

@ -83,6 +83,7 @@ body.page-sub{
.main-links.navbar-nav{
margin-top: 26px;
li + li::before {
content: "";
position: absolute;
@ -90,8 +91,6 @@ body.page-sub{
top: 35px;
width: 4px;
height: 23px;
background: url(../images/nav-dotpipes.png) 0 0 no-repeat;
.img-retina("../images/nav-dotpipes.png", "../images/nav-dotpipes@2x.png", 4px, 23px);
padding-right: 15px;
}
@ -100,8 +99,10 @@ body.page-sub{
}*/
li > a {
line-height: 30px;
padding: 0 15px;
border-bottom: 1px solid #fff;
line-height: 26px;
margin: 0 15px;
padding: 0;
}
}
@ -118,28 +119,28 @@ body.page-sub{
&.download{
a{
padding-left: 28px;
background: url(../images/header-download-icon.png) 8px 6px no-repeat;
.img-retina("../images/header-download-icon.png", "../images/header-download-icon@2x.png", 12px, 16px);
background: url(../images/header-download-icon.png) 10px 7px no-repeat;
.img-retina("../images/header-download-icon.png", "../images/header-download-icon@2x.png", 12px, 13px);
}
}
&.github{
a{
background: url(../images/header-github-icon.png) 8px 5px no-repeat;
.img-retina("../images/header-github-icon.png", "../images/header-github-icon@2x.png", 16px, 17px);
background: url(../images/header-github-icon.png) 10px 6px no-repeat;
.img-retina("../images/header-github-icon.png", "../images/header-github-icon@2x.png", 12px, 13px);
}
}
}
li > a {
color: black;
padding-top: 4px;
padding-bottom: 4px;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 30px;
padding-right: 6px;
padding-right: 10px;
letter-spacing: 0.09em;
&::before{
/*&::before{
content: "";
position: absolute;
top: 0;
@ -157,7 +158,7 @@ body.page-sub{
width: 8px;
height: 100%;
background: linear-gradient(to right bottom, white 50%,transparent 50%) !important;
}
}*/
}
}
}

View File

@ -188,22 +188,14 @@ body.page-sub #header {
top: 35px;
width: 4px;
height: 23px;
background: url(../images/nav-dotpipes.png) 0 0 no-repeat;
background-image: url("../images/nav-dotpipes.png");
background-size: 4px 23px;
padding-right: 15px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
#footer .main-links.navbar-nav li + li::before,
#header .main-links.navbar-nav li + li::before {
background-image: url("../images/nav-dotpipes@2x.png");
background-size: 4px 23px;
}
}
#footer .main-links.navbar-nav li > a,
#header .main-links.navbar-nav li > a {
line-height: 30px;
padding: 0 15px;
border-bottom: 1px solid #fff;
line-height: 26px;
margin: 0 15px;
padding: 0;
}
#footer .buttons.navbar-nav,
#header .buttons.navbar-nav {
@ -217,58 +209,57 @@ body.page-sub #header {
#footer .buttons.navbar-nav li.download a,
#header .buttons.navbar-nav li.download a {
padding-left: 28px;
background: url(../images/header-download-icon.png) 8px 6px no-repeat;
background: url(../images/header-download-icon.png) 10px 7px no-repeat;
background-image: url("../images/header-download-icon.png");
background-size: 12px 16px;
background-size: 12px 13px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
#footer .buttons.navbar-nav li.download a,
#header .buttons.navbar-nav li.download a {
background-image: url("../images/header-download-icon@2x.png");
background-size: 12px 16px;
background-size: 12px 13px;
}
}
#footer .buttons.navbar-nav li.github a,
#header .buttons.navbar-nav li.github a {
background: url(../images/header-github-icon.png) 8px 5px no-repeat;
background: url(../images/header-github-icon.png) 10px 6px no-repeat;
background-image: url("../images/header-github-icon.png");
background-size: 16px 17px;
background-size: 12px 13px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
#footer .buttons.navbar-nav li.github a,
#header .buttons.navbar-nav li.github a {
background-image: url("../images/header-github-icon@2x.png");
background-size: 16px 17px;
background-size: 12px 13px;
}
}
#footer .buttons.navbar-nav li > a,
#header .buttons.navbar-nav li > a {
color: black;
padding-top: 4px;
padding-bottom: 4px;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 30px;
padding-right: 6px;
padding-right: 10px;
letter-spacing: 0.09em;
}
#footer .buttons.navbar-nav li > a::before,
#header .buttons.navbar-nav li > a::before {
content: "";
position: absolute;
top: 0;
left: -8px;
width: 8px;
height: 100%;
background: linear-gradient(to right bottom, transparent 50%, #ffffff 50%) !important;
}
#footer .buttons.navbar-nav li > a::after,
#header .buttons.navbar-nav li > a::after {
content: "";
position: absolute;
top: 0;
right: -8px;
width: 8px;
height: 100%;
background: linear-gradient(to right bottom, #ffffff 50%, transparent 50%) !important;
/*&::before{
content: "";
position: absolute;
top: 0;
left: -8px;
width: 8px;
height: 100%;
background: linear-gradient(to right bottom, transparent 50%, white 50%) !important;
}
&::after{
content: "";
position: absolute;
top: 0;
right: -8px;
width: 8px;
height: 100%;
background: linear-gradient(to right bottom, white 50%,transparent 50%) !important;
}*/
}
#footer {
height: 650px;
@ -549,9 +540,9 @@ body.page-sub #header {
.li-under a:hover::after,
.li-under a:focus::after {
opacity: 1;
-webkit-transform: skewY(15deg) translateY(10px);
-moz-transform: skewY(15deg) translateY(10px);
transform: skewY(15deg) translateY(10px);
-webkit-transform: skewY(15deg) translateY(15px);
-moz-transform: skewY(15deg) translateY(15px);
transform: skewY(15deg) translateY(15px);
}
/*body.page-home{
background-color: #f8f8f8;