-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from grahambancroft/migration
Initial template setup
- Loading branch information
Showing
1,347 changed files
with
44,402 additions
and
25,267 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
@import "../core-constants"; | ||
|
||
html.lt-ie7 { | ||
.row-box { overflow: hidden; } | ||
font-size: 16px; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
@import "../core-constants"; | ||
|
||
html.lt-ie8 { | ||
* { zoom: 1; } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* This stylesheet is used to override the core styles until the monthly merge. | ||
* | ||
* Please comment your changes to help documentation. | ||
CONTENTS: | ||
----------------------------------------------------------------- | ||
*/ | ||
|
||
// additional helper class for shouty text | ||
.caps { | ||
text-transform: uppercase; | ||
} | ||
|
||
@media only screen and (max-width : 768px) { | ||
// helper class for small | ||
.small-align-center { | ||
text-align: center; | ||
} | ||
} | ||
|
||
/* Chinese Social links */ | ||
|
||
.list--social__item { | ||
height: 37px; | ||
margin-right: 20px; | ||
padding: 0; | ||
text-indent: -999em; | ||
width: 37px; | ||
float: left; | ||
display: inline-block; | ||
|
||
&:after { | ||
content: " " !important; | ||
} | ||
|
||
a { | ||
display: block; | ||
height: 37px; | ||
width: 37px; | ||
margin: 0; | ||
overflow: hidden; | ||
} | ||
|
||
&.active a { | ||
background-image: | ||
url('../img/icons/icon-wechat.svg'), | ||
url('../img/homepage/kylin/qr-code-wechat.png'); | ||
background-repeat: no-repeat; | ||
background-position: left top, right top; | ||
background-size: 37px 37px, auto; | ||
width: 140px; | ||
height: 116px; | ||
} | ||
} // &__item | ||
|
||
.list--social__item--wechat a { | ||
background: url('../img/icons/icon-wechat.svg') no-repeat; | ||
} | ||
|
||
.list--social__item--weibo a { | ||
background: url('../img/icons/icon-weibo.svg') no-repeat; | ||
} | ||
|
||
main section .strip-inner-wrapper { | ||
|
||
} | ||
|
||
main .list--social { | ||
display: inline; | ||
} | ||
|
||
.china-mobile { | ||
float: left; | ||
margin-right: 40px; | ||
} | ||
|
||
.homepage footer .list--social { | ||
display: none; | ||
} |
Oops, something went wrong.