-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
3,031 additions
and
1 deletion.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,93 @@ | ||
.post { | ||
margin: 0 0 80px; | ||
} | ||
|
||
.post-title { | ||
line-height: 1.4; | ||
font-size: 22px; | ||
color: #111; | ||
margin: 0; | ||
} | ||
|
||
.post-header { | ||
margin: 0 0 15px; | ||
} | ||
|
||
.post-meta { | ||
font-size: 11px; | ||
color: #aaa; | ||
} | ||
|
||
.post-entry { | ||
border-top: 1px dotted #c2c2c2; | ||
padding-top: 20px; | ||
margin-top: 10px; | ||
} | ||
|
||
.post-images-slider { | ||
position: relative; | ||
} | ||
|
||
.post-images-slider .flex-control-nav { | ||
bottom: 0; | ||
} | ||
|
||
.post-thumbnail, | ||
.post-images-slider, | ||
.post-video { | ||
margin: 0 0 20px; | ||
} | ||
|
||
.post-quote { | ||
background: #f5f5f5; | ||
text-align: center; | ||
padding: 20px; | ||
} | ||
|
||
/* Post columns */ | ||
|
||
.post-columns .post { | ||
margin: 0 0 60px; | ||
} | ||
|
||
.post-columns .post-header { | ||
margin: 0 0 10px; | ||
} | ||
|
||
.post-columns .post-title { | ||
line-height: 1.8; | ||
font-size: 14px; | ||
} | ||
|
||
.post-columns .post-entry { | ||
padding: 10px 0 0; | ||
margin: 0 0 10px; | ||
} | ||
|
||
.post-columns.wo-border .post-entry { | ||
border: 0; | ||
padding: 0; | ||
} | ||
|
||
.post-columns .post-entry p:last-child { | ||
margin: 0; | ||
} | ||
|
||
.more-link:after { | ||
content: "\00BB"; | ||
color: #666666; | ||
padding-left: 5px; | ||
} | ||
|
||
.pagination a { | ||
border: 1px solid #eaeaea; | ||
display: inline-block; | ||
text-transform: uppercase; | ||
text-align: center; | ||
color: #999; | ||
padding: 4px 12px; | ||
} | ||
|
||
.pagination a.active { | ||
border-color: #CACACA; | ||
} |
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,149 @@ | ||
.btn { | ||
border-radius: 0; | ||
font-family: "Roboto Condensed", sans-serif; | ||
text-transform: uppercase; | ||
letter-spacing: 2px; | ||
font-size: 11px; | ||
padding: 8px 37px; | ||
} | ||
|
||
.btn.active.focus, | ||
.btn.active:focus, | ||
.btn.focus, | ||
.btn:active.focus, | ||
.btn:active:focus, | ||
.btn:focus { | ||
outline: 0; | ||
} | ||
|
||
.btn.btn-round { | ||
-webkit-border-radius: 2px; | ||
-moz-border-radius: 2px; | ||
border-radius: 2px; | ||
} | ||
|
||
.btn.btn-circle { | ||
-webkit-border-radius: 30px; | ||
-moz-border-radius: 30px; | ||
border-radius: 30px; | ||
} | ||
|
||
.btn.btn-w { | ||
background: rgba(255, 255, 255, .8); | ||
color: #111; | ||
} | ||
|
||
.btn.btn-w:hover, | ||
.btn.btn-w:focus { | ||
background: rgba(255, 255, 255, 1); | ||
color: #111; | ||
} | ||
|
||
.btn.btn-g { | ||
background: #e5e5e5; | ||
color: #111; | ||
} | ||
|
||
.btn.btn-g:hover, | ||
.btn.btn-g:focus { | ||
background: #d8d8d8; | ||
color: #111; | ||
} | ||
|
||
.btn.btn-border-w { | ||
background: transparent; | ||
border: 1px solid rgba(255, 255, 255, .75); | ||
color: #fff; | ||
} | ||
|
||
.btn.btn-border-w:hover, | ||
.btn.btn-border-w:focus { | ||
background: #fff; | ||
border-color: transparent; | ||
color: #111; | ||
} | ||
|
||
.btn.btn-d { | ||
background: rgba(17, 17, 17, .8); | ||
color: #fff; | ||
} | ||
|
||
.btn.btn-d:hover, | ||
.btn.btn-d:focus { | ||
background: rgba(17, 17, 17, 1); | ||
} | ||
|
||
.btn.btn-b { | ||
background: rgba(17, 17, 17, 1); | ||
color: #fff; | ||
} | ||
|
||
.btn.btn-b:hover, | ||
.btn.btn-b:focus { | ||
background: rgba(17, 17, 17, .8); | ||
} | ||
|
||
.btn-border-d { | ||
background: transparent; | ||
border: 1px solid rgba(17, 17, 17, 1); | ||
color: #111; | ||
} | ||
|
||
.btn.btn-border-d:hover, | ||
.btn.btn-border-d:focus { | ||
background: rgba(17, 17, 17, 1); | ||
color: #fff; | ||
} | ||
|
||
|
||
.btn.btn-font-w { | ||
background: rgba(255, 255, 255, .8); | ||
color: #fff; | ||
} | ||
.btn.btn-font-w:hover { | ||
background: #fff; | ||
color: #111; | ||
} | ||
|
||
/* Buttons size */ | ||
|
||
.btn.btn-lg { | ||
padding: 12px 45px; | ||
font-size: 13px; | ||
} | ||
|
||
.btn.btn-sm { | ||
padding: 6px 25px; | ||
font-size: 10px; | ||
letter-spacing: 1px; | ||
} | ||
|
||
.btn.btn-xs { | ||
padding: 4px 19px; | ||
font-size: 10px; | ||
letter-spacing: 0; | ||
} | ||
|
||
.btn-list .btn { | ||
margin: 5px 0; | ||
} | ||
|
||
.search-btn { | ||
position: absolute; | ||
background: transparent; | ||
border: none; | ||
overflow: hidden; | ||
top: 50%; | ||
right: 1px; | ||
width: 42px; | ||
height: 40px; | ||
line-height: 38px; | ||
font-size: 14px; | ||
outline: none; | ||
color: #999; | ||
margin-top: -20px; | ||
} | ||
|
||
.image-button { | ||
margin: 0px 5px; | ||
} |
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,7 @@ | ||
.client-logo { | ||
opacity: .5; | ||
} | ||
|
||
.client-logo:hover { | ||
opacity: 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,42 @@ | ||
.comments, | ||
.comment-form { | ||
margin: 80px 0 0; | ||
} | ||
|
||
.comments .comment-title, | ||
.comment-form .comment-form-title { | ||
border-bottom: 1px dotted #c2c2c2; | ||
font-size: 16px; | ||
color: #111; | ||
padding-bottom: 15px; | ||
margin: 0 0 20px; | ||
} | ||
|
||
.comment-author { | ||
font-size: 14px; | ||
margin: 0 0 10px; | ||
} | ||
|
||
.comment-avatar { | ||
width: 55px; | ||
float: left; | ||
margin-top: 10px; | ||
} | ||
|
||
.comment-avatar img { | ||
-webkit-border-radius: 50%; | ||
-moz-border-radius: 50%; | ||
border-radius: 50%; | ||
} | ||
|
||
.comment-content { | ||
padding-top: 5px; | ||
margin-left: 75px; | ||
margin-bottom: 30px; | ||
} | ||
|
||
@media (min-width: 768px) { | ||
.comment .comment { | ||
margin-left: 75px; | ||
} | ||
} |
Oops, something went wrong.