Improve typography
This commit is contained in:
parent
f161948750
commit
c088d244cc
11 changed files with 4221 additions and 606 deletions
1828
assets/css/ie.css
1828
assets/css/ie.css
File diff suppressed because it is too large
Load diff
2886
assets/css/main.css
2886
assets/css/main.css
File diff suppressed because it is too large
Load diff
|
@ -3,6 +3,14 @@
|
||||||
// TEXTURE ====================================================
|
// TEXTURE ====================================================
|
||||||
// ELEMENTS ===================================================
|
// ELEMENTS ===================================================
|
||||||
// LAYOUT =====================================================
|
// LAYOUT =====================================================
|
||||||
|
.article-author-top,
|
||||||
|
.article-author-bottom {
|
||||||
|
.transition(all .2s ease);
|
||||||
|
.opacity(.7);
|
||||||
|
&:hover {
|
||||||
|
.opacity(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
.image-grid {
|
.image-grid {
|
||||||
li {
|
li {
|
||||||
width: 33.333333%;
|
width: 33.333333%;
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
// ROOT =======================================================
|
// ROOT =======================================================
|
||||||
html {
|
|
||||||
font-size: 95%;
|
|
||||||
}
|
|
||||||
// TYPOGRAPHY =================================================
|
// TYPOGRAPHY =================================================
|
||||||
// TEXTURE ====================================================
|
// TEXTURE ====================================================
|
||||||
// ELEMENTS ===================================================
|
// ELEMENTS ===================================================
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
// ROOT =======================================================
|
// ROOT =======================================================
|
||||||
html {
|
|
||||||
font-size: 100%;
|
|
||||||
}
|
|
||||||
// TYPOGRAPHY =================================================
|
// TYPOGRAPHY =================================================
|
||||||
// TEXTURE ====================================================
|
// TEXTURE ====================================================
|
||||||
// ELEMENTS ===================================================
|
// ELEMENTS ===================================================
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
// ROOT =======================================================
|
// ROOT =======================================================
|
||||||
html {
|
|
||||||
font-size: 112.5%;
|
|
||||||
}
|
|
||||||
// TYPOGRAPHY =================================================
|
// TYPOGRAPHY =================================================
|
||||||
// TEXTURE ====================================================
|
// TEXTURE ====================================================
|
||||||
// ELEMENTS ===================================================
|
// ELEMENTS ===================================================
|
||||||
// LAYOUT =====================================================
|
// LAYOUT =====================================================
|
||||||
|
.article-author-top,
|
||||||
|
.article-author-bottom {
|
||||||
|
img.bio-photo {
|
||||||
|
width: 150px;
|
||||||
|
height: 150px;
|
||||||
|
.rounded(150px);
|
||||||
|
}
|
||||||
|
}
|
||||||
/* Image Grid ============================================== */
|
/* Image Grid ============================================== */
|
||||||
.image-grid {
|
.image-grid {
|
||||||
li {
|
li {
|
||||||
|
|
|
@ -38,49 +38,41 @@ svg:not(:root) {
|
||||||
.grid(12,12);
|
.grid(12,12);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Buttons =============================================== */
|
/* Buttons ============================================== */
|
||||||
.btn {
|
.btn {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
*display: inline;
|
margin-bottom: 20px;
|
||||||
/* IE7 inline-block hack */
|
padding: 8px 20px;
|
||||||
*zoom: 1;
|
.font-rem(14);
|
||||||
padding: 12px 24px;
|
|
||||||
margin-bottom: 2em;
|
|
||||||
line-height: 1;
|
|
||||||
text-align: center;
|
|
||||||
text-transform: uppercase;
|
|
||||||
vertical-align: middle;
|
|
||||||
border: 4px double @textcolor;
|
|
||||||
.rounded(50px);
|
|
||||||
cursor: pointer;
|
|
||||||
*margin-left: .3em;
|
|
||||||
.transition(.4s linear);
|
|
||||||
&:visited {
|
|
||||||
border: 4px double @linkcolorvisited;
|
|
||||||
}
|
|
||||||
&:hover {
|
|
||||||
border: 4px double @linkcolorhover;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.btn:first-child {
|
|
||||||
*margin-left: 0;
|
|
||||||
}
|
|
||||||
.btn-inverse {
|
|
||||||
border: 4px double @white;
|
|
||||||
color: @white;
|
|
||||||
background-color: @black;
|
background-color: @black;
|
||||||
|
color: @white;
|
||||||
|
border: 2px solid @black !important;
|
||||||
|
.rounded(20px);
|
||||||
&:visited {
|
&:visited {
|
||||||
color: @white;
|
color: @white;
|
||||||
border-color: @white;
|
|
||||||
}
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
color: @white;
|
background-color: @white;
|
||||||
border-color: @white;
|
color: @black;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
.translate(0, 2px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.btn-small {
|
.author-social {
|
||||||
font-size: 60%;
|
display: block;
|
||||||
padding: 6px 12px;
|
margin-bottom: 5px;
|
||||||
|
.font-rem(14);
|
||||||
|
color: @black;
|
||||||
|
&:visited {
|
||||||
|
color: @black;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
.scale(1.1);
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
.translate(0, 2px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* Well ================================================= */
|
/* Well ================================================= */
|
||||||
.well {
|
.well {
|
||||||
|
|
|
@ -11,8 +11,6 @@
|
||||||
/* Site wide styles (html, body, global classes) =========== */
|
/* Site wide styles (html, body, global classes) =========== */
|
||||||
@import "site.less";
|
@import "site.less";
|
||||||
// TYPOGRAPHY =================================================
|
// TYPOGRAPHY =================================================
|
||||||
/* Typeplate.com typographic starter pack ================== */
|
|
||||||
// @import "typeplate.less";
|
|
||||||
@import "typography.less";
|
@import "typography.less";
|
||||||
/* Pygments Syntax highlighting ============================= */
|
/* Pygments Syntax highlighting ============================= */
|
||||||
@import "pygments.less";
|
@import "pygments.less";
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
html {
|
body {
|
||||||
background-color: @bodycolor;
|
background-color: @bodycolor;
|
||||||
font-family: @base-font;
|
font-family: @base-font;
|
||||||
font-color: @textcolor;
|
font-color: @textcolor;
|
||||||
font-size: 90%;
|
|
||||||
}
|
}
|
||||||
.navigation-wrapper {
|
.navigation-wrapper {
|
||||||
.container();
|
.container();
|
||||||
|
@ -121,8 +120,8 @@ html {
|
||||||
}
|
}
|
||||||
.article-author-top,
|
.article-author-top,
|
||||||
.article-author-bottom {
|
.article-author-bottom {
|
||||||
h4 {
|
h3 {
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
|
@ -132,6 +131,8 @@ html {
|
||||||
border-bottom: 0 solid transparent;
|
border-bottom: 0 solid transparent;
|
||||||
}
|
}
|
||||||
img.bio-photo {
|
img.bio-photo {
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
.rounded(100px);
|
.rounded(100px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -331,7 +332,7 @@ html {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.chrome-frame {
|
.browser-upgrade {
|
||||||
background: #000;
|
background: #000;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 0 0 2em 0;
|
margin: 0 0 2em 0;
|
||||||
|
|
|
@ -11,7 +11,7 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: @heading-font;
|
font-family: @heading-font;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
.font-rem(32);
|
.font-size(32);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Links
|
// Links
|
||||||
|
@ -98,6 +98,17 @@ blockquote {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Paragraphs
|
||||||
|
// --------------------------------------------------
|
||||||
|
p {
|
||||||
|
margin: 0 0 @indent-var;
|
||||||
|
& + p {
|
||||||
|
//siblings indentation
|
||||||
|
text-indent: @indent-var;
|
||||||
|
margin-top: -(@indent-var);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Code
|
// Code
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
tt, code, kbd, samp, pre {
|
tt, code, kbd, samp, pre {
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
@compcolor : spin(@basecolor, 180);
|
@compcolor : spin(@basecolor, 180);
|
||||||
@bordercolor : @basecolor;
|
@bordercolor : @basecolor;
|
||||||
@white : #fff;
|
@white : #fff;
|
||||||
@black : #000;
|
@black : #111;
|
||||||
@accentcolor : @black;
|
@accentcolor : @black;
|
||||||
/* Links ================================================= */
|
/* Links ================================================= */
|
||||||
@linkcolor : #343434;
|
@linkcolor : #343434;
|
||||||
|
|
Loading…
Reference in a new issue