mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
added a theme
This commit is contained in:
73
sass/parts/_archive.scss
Normal file
73
sass/parts/_archive.scss
Normal file
@ -0,0 +1,73 @@
|
||||
.archives{
|
||||
position: relative;
|
||||
&:last-of-type{
|
||||
&:before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 200px;
|
||||
border-top: 1px solid $color-gray04;
|
||||
}
|
||||
}
|
||||
.year{
|
||||
line-height: 35px;
|
||||
width: 200px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
padding-top: 15px;
|
||||
border-top: 1px solid #fff;
|
||||
&:before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
width: 100%;
|
||||
border-top: 1px solid $color-gray04;
|
||||
}
|
||||
@media screen and (max-width: 600px){
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
article{
|
||||
margin-left: 200px;
|
||||
padding: 15px 0;
|
||||
@media screen and (max-width: 600px){
|
||||
margin-left: 0;
|
||||
&:first-of-type{
|
||||
border-top: none;
|
||||
padding-top: 30px;
|
||||
}
|
||||
}
|
||||
.title{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.meta{
|
||||
color: $color-gray02;
|
||||
font-size: 0.9em;
|
||||
line-height: 2;
|
||||
margin-top: 15px;
|
||||
@media screen and (max-width: 600px){
|
||||
display: none;
|
||||
}
|
||||
span{
|
||||
margin-right: 30px;
|
||||
@include inline-block;
|
||||
&:before{
|
||||
color: $color-gray03;
|
||||
font: 1.3em $font-icon;
|
||||
padding-right: 10px;
|
||||
}
|
||||
}
|
||||
a{
|
||||
color: $color-gray02;
|
||||
@include transition(0.3s);
|
||||
&:hover{
|
||||
color: $color-gray01;
|
||||
}
|
||||
}
|
||||
.date:before{content: "\f073";}
|
||||
.tags:before{content: "\f02c";}
|
||||
.comments:before{content: "\f075";}
|
||||
}
|
||||
}
|
||||
}
|
||||
140
sass/parts/_article.scss
Normal file
140
sass/parts/_article.scss
Normal file
@ -0,0 +1,140 @@
|
||||
article{
|
||||
border-bottom: 1px solid $color-gray04;
|
||||
border-top: 1px solid $color-gray05;
|
||||
padding: 30px 0;
|
||||
position: relative;
|
||||
@media screen and (max-width: 800px){
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
@media screen and (max-width: 600px){
|
||||
padding: 15px 0;
|
||||
}
|
||||
h1.title{
|
||||
font-weight: 300;
|
||||
line-height: 35px;
|
||||
margin-bottom: 20px;
|
||||
a{
|
||||
color: $color-gray01;
|
||||
}
|
||||
}
|
||||
.entry-content{
|
||||
line-height: 2;
|
||||
text-align: justify;
|
||||
a{
|
||||
&:hover{
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
.more-link{
|
||||
display: block;
|
||||
margin-top: 16px;
|
||||
padding-left: 30px;
|
||||
position: relative;
|
||||
&:before{
|
||||
content: "\f061";
|
||||
font: 1.3em $font-icon;
|
||||
line-height: 1.6em;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
p, blockquote, ul, ol, dl, table, iframe, h1, h2, h3, h4, h5, h6, .video-container{
|
||||
margin-top: 10px;
|
||||
}
|
||||
ul, ol, dl{
|
||||
margin-left: 20px;
|
||||
ul, ol, dl{
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
strong{
|
||||
font-weight: bold;
|
||||
}
|
||||
em{
|
||||
font-style: italic;
|
||||
}
|
||||
p{
|
||||
margin-top: 10px;
|
||||
}
|
||||
h2{
|
||||
font-weight: 300;
|
||||
border-bottom: 1px solid $color-gray04;
|
||||
position: relative;
|
||||
&:before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
border-bottom: 1px solid $color-gray05;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
img, video{
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
blockquote{
|
||||
background: $color-gray04;
|
||||
border-left: 5px solid $color-gray03;
|
||||
padding: 15px 20px;
|
||||
margin-top: 10px;
|
||||
& > p:first-of-type{
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
iframe{
|
||||
border: none;
|
||||
}
|
||||
table{
|
||||
background: $color-gray04;
|
||||
border: 1px solid $color-gray03;
|
||||
border-spacing: 0;
|
||||
margin-top: 10px;
|
||||
th{
|
||||
background: $color-gray03;
|
||||
padding: 0 15px;
|
||||
}
|
||||
td{
|
||||
text-align: center;
|
||||
}
|
||||
tr{
|
||||
&:nth-of-type(2n){
|
||||
background: #d5d5d5;
|
||||
}
|
||||
}
|
||||
}
|
||||
.caption{
|
||||
display: block;
|
||||
font-size: 0.9em;
|
||||
color: $color-gray02;
|
||||
padding-left: 25px;
|
||||
position: relative;
|
||||
&:before{
|
||||
content: "\f040";
|
||||
color: $color-gray03;
|
||||
font: 1.3em $font-icon;
|
||||
line-height: 1.6em;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
.video-container{
|
||||
position: relative;
|
||||
padding-bottom: 56.25%;
|
||||
padding-top: 30px;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
iframe, object, embed{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.share{
|
||||
padding: 15px 0;
|
||||
@include border-shadow();
|
||||
}
|
||||
10
sass/parts/_comment.scss
Normal file
10
sass/parts/_comment.scss
Normal file
@ -0,0 +1,10 @@
|
||||
#comment{
|
||||
padding: 30px 0;
|
||||
@include border-shadow();
|
||||
h1.title{
|
||||
font-size: 25px;
|
||||
font-weight: 300;
|
||||
line-height: 35px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
6
sass/parts/_footer.scss
Normal file
6
sass/parts/_footer.scss
Normal file
@ -0,0 +1,6 @@
|
||||
footer{
|
||||
padding: 15px 0;
|
||||
border-top: 1px solid $color-gray05;
|
||||
text-align: center;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
381
sass/parts/_header.scss
Normal file
381
sass/parts/_header.scss
Normal file
@ -0,0 +1,381 @@
|
||||
$header-height: 30px;
|
||||
|
||||
#header{
|
||||
height: $header-height;
|
||||
padding: 30px 0;
|
||||
border-bottom: 1px solid $color-gray04;
|
||||
line-height: $header-height;
|
||||
@media screen and (max-width: 1040px){
|
||||
height: auto;
|
||||
position: relative;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
a{
|
||||
color: $color-gray01;
|
||||
@include transition(color 0.3s);
|
||||
&:hover{
|
||||
color: $color-main;
|
||||
}
|
||||
}
|
||||
h1{
|
||||
float: left;
|
||||
font-weight: 300;
|
||||
font-size: 30px;
|
||||
@media screen and (max-width: 1040px){
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
#main-nav{
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
@media screen and (max-width: 1040px){
|
||||
float: none;
|
||||
margin-left: 0;
|
||||
margin-top: 15px;
|
||||
}
|
||||
>ul{
|
||||
@media screen and (max-width: 600px){
|
||||
display: none;
|
||||
}
|
||||
>li{
|
||||
margin-left: 50px;
|
||||
@include inline-block;
|
||||
@media screen and (max-width: 1040px){
|
||||
margin-left: 0;
|
||||
margin-right: 50px;
|
||||
&:last-of-type{
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
&:hover{
|
||||
>a{
|
||||
color: $color-main;
|
||||
}
|
||||
}
|
||||
>a{
|
||||
padding: 38px 0;
|
||||
margin-top: -38px;
|
||||
&:after{
|
||||
content: "\f078";
|
||||
color: $color-gray03;
|
||||
font: 12px $font-icon;
|
||||
padding-left: 10px;
|
||||
}
|
||||
&:only-child{
|
||||
&:after{
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 1040px){
|
||||
padding: 18px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
ul{
|
||||
position: absolute;
|
||||
top: 60px;
|
||||
left: -15px;
|
||||
z-index: 10;
|
||||
white-space: nowrap;
|
||||
background: $color-gray04;
|
||||
border: 1px solid $color-gray03;
|
||||
list-style: none;
|
||||
display: none;
|
||||
@media screen and (max-width: 1040px){
|
||||
top: 40px;
|
||||
}
|
||||
@include box-shadow(0 4px 8px rgba(0,0,0,0.1));
|
||||
@include border-radius(0 0 5px 5px);
|
||||
ul{
|
||||
@include border-radius(0 5px 5px 5px);
|
||||
}
|
||||
li{
|
||||
@include border-shadow($color-background, $color-gray03);
|
||||
&:hover{
|
||||
background: #d5d5d5;
|
||||
}
|
||||
&:first-of-type{
|
||||
border-top: none;
|
||||
ul{
|
||||
@include border-radius(0 0 5px 5px);
|
||||
}
|
||||
}
|
||||
&:last-of-type{
|
||||
border-bottom: none;
|
||||
}
|
||||
>a{
|
||||
display: block;
|
||||
padding: 5px 15px;
|
||||
&:after{
|
||||
content: "\f054";
|
||||
color: $color-gray02;
|
||||
font: 12px $font-icon;
|
||||
padding-left: 10px;
|
||||
}
|
||||
&:hover{
|
||||
color: $color-gray01;
|
||||
}
|
||||
&:only-child{
|
||||
&:after{
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
ul{
|
||||
top: 0;
|
||||
left: 100%;
|
||||
}
|
||||
}
|
||||
li{
|
||||
position: relative;
|
||||
&:hover{
|
||||
>ul{
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
select{
|
||||
display: none;
|
||||
margin-bottom: 10px;
|
||||
@media screen and (max-width: 600px){
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
#mobile-nav{
|
||||
display: none;
|
||||
height: 37px;
|
||||
position: relative;
|
||||
@media screen and (max-width: 600px){
|
||||
display: block;
|
||||
}
|
||||
a{
|
||||
display: block;
|
||||
}
|
||||
.button{
|
||||
cursor: pointer;
|
||||
}
|
||||
.container{
|
||||
display: none;
|
||||
}
|
||||
.menu{
|
||||
position: relative;
|
||||
width: 100%;
|
||||
.button{
|
||||
background: #f2f2f2;
|
||||
border: 1px solid $color-gray04;
|
||||
color: #999;
|
||||
padding: 0 60px 0 10px;
|
||||
position: relative;
|
||||
@include border-radius(5px);
|
||||
&:hover{
|
||||
color: #999;
|
||||
}
|
||||
&.on{
|
||||
color: #666;
|
||||
@include border-radius(5px 5px 5px 0);
|
||||
&:before{
|
||||
content: "\f077";
|
||||
}
|
||||
}
|
||||
&:before{
|
||||
content: "\f078";
|
||||
color: $color-gray04;
|
||||
font: 16px $font-icon;
|
||||
line-height: 30px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 40px;
|
||||
}
|
||||
}
|
||||
.container{
|
||||
background: #f2f2f2;
|
||||
border: 1px solid #ddd;
|
||||
border-top: none;
|
||||
position: absolute;
|
||||
top: 31px;
|
||||
z-index: 1;
|
||||
@include border-radius(0 0 5px 5px);
|
||||
ul{
|
||||
list-style: none;
|
||||
ul{
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
a{
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.search{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
.button{
|
||||
background: $color-gray04;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: -1px;
|
||||
@include border-radius(0 5px 5px 0);
|
||||
&:before{
|
||||
content: "\f002";
|
||||
color: #f2f2f2;
|
||||
font: 20px $font-icon;
|
||||
line-height: 30px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 7px;
|
||||
}
|
||||
&.on{
|
||||
background: $color-gray03;
|
||||
&:before{
|
||||
content: "\f00d";
|
||||
}
|
||||
}
|
||||
}
|
||||
.container{
|
||||
position: absolute;
|
||||
right: 51px;
|
||||
z-index: 1;
|
||||
}
|
||||
input[type="text"]{
|
||||
background: #fff;
|
||||
border: 1px solid $color-gray04;
|
||||
border-right: none;
|
||||
color: $color-gray02;
|
||||
font: 13px $font-default;
|
||||
height: 30px;
|
||||
width: 100%;
|
||||
padding: 0 10px;
|
||||
@include border-radius(5px 0 0 5px);
|
||||
}
|
||||
}
|
||||
}
|
||||
#sub-nav{
|
||||
@media screen and (max-width: 1040px){
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
right: 0;
|
||||
}
|
||||
@media screen and (max-width: 600px){
|
||||
display: none;
|
||||
}
|
||||
.search{
|
||||
float: left;
|
||||
margin-top: 1px;
|
||||
position: relative;
|
||||
@media screen and (max-width: 1040px){
|
||||
float: none;
|
||||
margin-top: 15px;
|
||||
}
|
||||
&:before{
|
||||
content: "\f002";
|
||||
color: $color-gray03;
|
||||
font: 18px $font-icon;
|
||||
line-height: 30px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 125px;
|
||||
}
|
||||
input[type="text"]{
|
||||
background: #f2f2f2;
|
||||
color: $color-gray02;
|
||||
border: 1px solid $color-gray04;
|
||||
font: 13px $font-default;
|
||||
padding: 6px 15px 6px 35px;
|
||||
width: 100px;
|
||||
@include transition(0.3s);
|
||||
@include border-radius(15px);
|
||||
&:focus, &:active{
|
||||
background: #fff;
|
||||
border-top: 1px solid $color-gray03;
|
||||
color: $color-gray01;
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.social{
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
@media screen and (max-width: 1040px){
|
||||
float: none;
|
||||
margin-right: 0;
|
||||
a:last-of-type{
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
a{
|
||||
@include border-radius(50%);
|
||||
@include inline-block;
|
||||
text-indent: -9999px;
|
||||
margin-right: 15px;
|
||||
opacity: 0.5;
|
||||
@include square(28px);
|
||||
@include transition(0.3s);
|
||||
&:hover{
|
||||
opacity: 1;
|
||||
}
|
||||
&.facebook{
|
||||
background: image-url('social/facebook.png') center no-repeat #3B5998;
|
||||
border: 1px solid #3B5998;
|
||||
&:hover{
|
||||
border: 1px solid darken(#3B5998, 10%);
|
||||
}
|
||||
}
|
||||
&.google{
|
||||
background: image-url('social/google.png') center no-repeat #C83D20;
|
||||
border: 1px solid #C83D20;
|
||||
&:hover{
|
||||
border: 1px solid darken(#C83D20, 10%);
|
||||
}
|
||||
}
|
||||
&.twitter{
|
||||
background: image-url('social/twitter.png') center no-repeat #55CFF8;
|
||||
border: 1px solid #55CFF8;
|
||||
&:hover{
|
||||
border: 1px solid darken(#55CFF8, 10%);
|
||||
}
|
||||
}
|
||||
&.github{
|
||||
background: image-url('social/github.png') center no-repeat rgb(175,182,202);
|
||||
border: 1px solid rgb(175,182,202);
|
||||
&:hover{
|
||||
border: 1px solid darken(rgb(175,182,202), 10%);
|
||||
}
|
||||
}
|
||||
&.linkedin{
|
||||
background: image-url('social/linkedin.png') center no-repeat #005A87;
|
||||
border: 1px solid #005A87;
|
||||
&:hover{
|
||||
border: 1px solid darken(#005A87, 10%);
|
||||
}
|
||||
}
|
||||
&.pinterest{
|
||||
background: image-url('social/pinterest.png') center no-repeat rgb(190,64,55);
|
||||
border: 1px solid rgb(190,64,55);
|
||||
&:hover{
|
||||
border: 1px solid darken(rgb(190,64,55), 10%);
|
||||
}
|
||||
}
|
||||
&.delicious{
|
||||
background: image-url('social/delicious.png') center no-repeat rgb(50,113,203);
|
||||
border: 1px solid rgb(50,113,203);
|
||||
&:hover{
|
||||
border: 1px solid darken(rgb(50,113,203), 10%);
|
||||
}
|
||||
}
|
||||
&.rss{
|
||||
background: image-url('social/rss.png') center no-repeat #EF7522;
|
||||
border: 1px solid #EF7522;
|
||||
&:hover{
|
||||
border: 1px solid darken(#EF7522, 10%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
43
sass/parts/_index.scss
Normal file
43
sass/parts/_index.scss
Normal file
@ -0,0 +1,43 @@
|
||||
#pagenavi{
|
||||
padding: 20px 0;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
position: relative;
|
||||
@include border-shadow();
|
||||
a{
|
||||
&:hover{
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
.prev, .next{
|
||||
position: absolute;
|
||||
}
|
||||
.prev{
|
||||
padding-left: 30px;
|
||||
left: 0;
|
||||
&:before{
|
||||
content: "\f060";
|
||||
font: 1.3em $font-icon;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
.next{
|
||||
padding-right: 30px;
|
||||
right: 0;
|
||||
&:before{
|
||||
content: "\f061";
|
||||
font: 1.3em $font-icon;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
.center{
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
display: block;
|
||||
@media screen and (max-width: 400px){
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
43
sass/parts/_post.scss
Normal file
43
sass/parts/_post.scss
Normal file
@ -0,0 +1,43 @@
|
||||
.post{
|
||||
h1.title, .entry-content{
|
||||
margin-left: 200px;
|
||||
@media screen and (max-width: 800px){
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
.meta{
|
||||
position: absolute;
|
||||
top: 85px;
|
||||
line-height: 2;
|
||||
font-size: 0.9em;
|
||||
color: $color-gray02;
|
||||
width: 170px;
|
||||
@media screen and (max-width: 800px){
|
||||
margin-top: 15px;
|
||||
position: static;
|
||||
width: auto;
|
||||
}
|
||||
a{
|
||||
@include link-colors($color-gray02, $color-gray01);
|
||||
@include transition(0.3s);
|
||||
}
|
||||
.date, .tags, .comments{
|
||||
padding-left: 30px;
|
||||
position: relative;
|
||||
&:before{
|
||||
color: $color-gray03;
|
||||
font: 1.3em $font-icon;
|
||||
line-height: 1.6em;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
@media screen and (max-width: 800px){
|
||||
@include inline-block;
|
||||
margin-right: 30px;
|
||||
}
|
||||
}
|
||||
.date:before{content: "\f073";}
|
||||
.tags:before{content: "\f02c";}
|
||||
.comments:before{content: "\f075";}
|
||||
}
|
||||
}
|
||||
387
sass/parts/_syntax.scss
Normal file
387
sass/parts/_syntax.scss
Normal file
@ -0,0 +1,387 @@
|
||||
$base03: #002b36 !default; //darkest blue
|
||||
$base02: #073642 !default; //dark blue
|
||||
$base01: #586e75 !default; //darkest gray
|
||||
$base00: #657b83 !default; //dark gray
|
||||
$base0: #839496 !default; //medium gray
|
||||
$base1: #93a1a1 !default; //medium light gray
|
||||
$base2: #eee8d5 !default; //cream
|
||||
$base3: #fdf6e3 !default; //white
|
||||
$solar-yellow: #b58900 !default;
|
||||
$solar-orange: #cb4b16 !default;
|
||||
$solar-red: #dc322f !default;
|
||||
$solar-magenta: #d33682 !default;
|
||||
$solar-violet: #6c71c4 !default;
|
||||
$solar-blue: #268bd2 !default;
|
||||
$solar-cyan: #2aa198 !default;
|
||||
$solar-green: #859900 !default;
|
||||
|
||||
$solarized: light !default;
|
||||
|
||||
@if $solarized == light {
|
||||
|
||||
$_base03: $base03;
|
||||
$_base02: $base02;
|
||||
$_base01: $base01;
|
||||
$_base00: $base00;
|
||||
$_base0: $base0;
|
||||
$_base1: $base1;
|
||||
$_base2: $base2;
|
||||
$_base3: $base3;
|
||||
|
||||
$base03: $_base3;
|
||||
$base02: $_base2;
|
||||
$base01: $_base1;
|
||||
$base00: $_base0;
|
||||
$base0: $_base00;
|
||||
$base1: $_base01;
|
||||
$base2: $_base02;
|
||||
$base3: $_base03;
|
||||
}
|
||||
|
||||
$pre-bg: $color-gray04;
|
||||
$pre-border: $color-gray03;
|
||||
|
||||
article{
|
||||
code, pre{
|
||||
background: $pre-bg;
|
||||
border: 1px solid $pre-border;
|
||||
font-family: $font-mono;
|
||||
}
|
||||
code{
|
||||
font-size: 0.9em;
|
||||
padding: 1px 3px;
|
||||
margin: 0 3px;
|
||||
@include border-radius(5px);
|
||||
}
|
||||
pre{
|
||||
font-size: 1 / 0.9em;
|
||||
line-height: 1.5;
|
||||
margin-top: 10px;
|
||||
padding: 5px 15px;
|
||||
overflow-x: auto;
|
||||
@include border-radius(5px);
|
||||
code{
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@include border-radius(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
figure.code{
|
||||
background: $pre-bg;
|
||||
border: 1px solid $pre-border;
|
||||
margin-top: 10px;
|
||||
padding: 5px 15px;
|
||||
@include border-radius(5px);
|
||||
figcaption{
|
||||
font-size: 0.9em;
|
||||
position: relative;
|
||||
span{
|
||||
margin: -5px -15px 0;
|
||||
padding: 5px 15px;
|
||||
display: block;
|
||||
@include background(linear-gradient(top, $pre-border, $pre-bg));
|
||||
&:empty{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
a{
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
code, pre{
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@include border-radius(0);
|
||||
}
|
||||
.highlight{
|
||||
overflow-x: auto;
|
||||
}
|
||||
.line-numbers{
|
||||
border-right: 1px solid $pre-border;
|
||||
font-family: $font-mono;
|
||||
padding-right: 15px;
|
||||
text-align: right;
|
||||
}
|
||||
table{
|
||||
border: none;
|
||||
text-align: left;
|
||||
margin-top: 0;
|
||||
td{
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
td.code{
|
||||
width: 100%;
|
||||
padding-left: 15px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
}
|
||||
.entry-content .gist{
|
||||
background: $pre-bg;
|
||||
color: $color-gray01;
|
||||
padding: 30px 15px 5px;
|
||||
margin-top: 10px;
|
||||
border: 1px solid $pre-border;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
@include border-radius(5px);
|
||||
.gist-file{
|
||||
margin: 0;
|
||||
.gist-data{
|
||||
background: none;
|
||||
border: none;
|
||||
pre{
|
||||
font: 0.9em $font-mono;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
.gist-meta{
|
||||
font: 300 0.9em $font-default;
|
||||
line-height: 1.5;
|
||||
margin: 0 -16px -6px;
|
||||
padding: 5px 15px;
|
||||
@include background(linear-gradient(top, $pre-bg, $pre-border));
|
||||
a{
|
||||
color: $color-main;
|
||||
&:first-of-type{
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 15px;
|
||||
z-index: 1;
|
||||
}
|
||||
&:nth-of-type(2){
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 5px 15px;
|
||||
width: 100%;
|
||||
@include background(linear-gradient(top, $pre-border, $pre-bg));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
figure.code, .gist-highlight{
|
||||
.c {
|
||||
color:$base01 !important;
|
||||
font-style: italic !important;
|
||||
}
|
||||
/* Comment */
|
||||
.cm {
|
||||
color:$base01 !important;
|
||||
font-style: italic !important;
|
||||
}
|
||||
/* Comment.Multiline */
|
||||
.cp {
|
||||
color:$base01 !important;
|
||||
font-style: italic !important;
|
||||
}
|
||||
/* Comment.Preproc */
|
||||
.c1 {
|
||||
color:$base01 !important;
|
||||
font-style: italic !important;
|
||||
}
|
||||
/* Comment.Single */
|
||||
.cs {
|
||||
color:$base01 !important;
|
||||
font-weight:bold !important;
|
||||
font-style: italic !important;
|
||||
}
|
||||
/* Comment.Special */
|
||||
.err {
|
||||
color:$solar-red !important;
|
||||
background: none !important;
|
||||
}
|
||||
/* Error */
|
||||
.k {
|
||||
color: $solar-orange !important;
|
||||
}
|
||||
/* Keyword */
|
||||
.o {
|
||||
color:$base1 !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Operator */
|
||||
.p {
|
||||
color: $base1 !important;
|
||||
}
|
||||
/* Operator */
|
||||
.ow {
|
||||
color:$solar-cyan !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Operator.Word */
|
||||
.gd {
|
||||
color:$base1 !important;
|
||||
background-color:mix($solar-red,$base03,25%) !important;
|
||||
display: inline-block;
|
||||
}
|
||||
/* Generic.Deleted */
|
||||
.gd .x {
|
||||
color:$base1 !important;
|
||||
background-color:mix($solar-red,$base03,35%) !important;
|
||||
display: inline-block;
|
||||
}
|
||||
/* Generic.Deleted.Specific */
|
||||
.ge {
|
||||
color:$base1 !important;
|
||||
font-style: italic !important;
|
||||
}
|
||||
/* Generic.Emph */
|
||||
.gh {
|
||||
color: $base01 !important;
|
||||
}
|
||||
/* Generic.Heading */
|
||||
.gi {
|
||||
color:$base1 !important;
|
||||
background-color:mix($solar-green,$base03,20%) !important;
|
||||
display: inline-block;
|
||||
}
|
||||
/* Generic.Inserted */
|
||||
.gi .x {
|
||||
color:$base1 !important;
|
||||
background-color:mix($solar-green,$base03,40%) !important;
|
||||
display: inline-block;
|
||||
}
|
||||
/* Generic.Inserted.Specific */
|
||||
.gs {
|
||||
color:$base1 !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Generic.Strong */
|
||||
.gu {
|
||||
color: $solar-violet !important;
|
||||
}
|
||||
/* Generic.Subheading */
|
||||
.kc {
|
||||
color:$solar-green !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Keyword.Constant */
|
||||
.kd {
|
||||
color: $solar-blue !important;
|
||||
}
|
||||
/* Keyword.Declaration */
|
||||
.kp {
|
||||
color:$solar-orange !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Keyword.Pseudo */
|
||||
.kr {
|
||||
color:$solar-magenta !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Keyword.Reserved */
|
||||
.kt {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Keyword.Type */
|
||||
.n {
|
||||
color:$solar-blue !important;
|
||||
}
|
||||
.na {
|
||||
color: $solar-blue !important;
|
||||
}
|
||||
/* Name.Attribute */
|
||||
.nb {
|
||||
color: $solar-green !important;
|
||||
}
|
||||
/* Name.Builtin */
|
||||
.nc {
|
||||
color: $solar-magenta !important;
|
||||
}
|
||||
/* Name.Class */
|
||||
.no {
|
||||
color: $solar-yellow !important;
|
||||
}
|
||||
/* Name.Constant */
|
||||
.nl {
|
||||
color:$solar-green !important;
|
||||
}
|
||||
.ne {
|
||||
color:$solar-blue !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Name.Exception */
|
||||
.nf {
|
||||
color:$solar-blue !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Name.Function */
|
||||
.nn {
|
||||
color: $solar-yellow !important;
|
||||
}
|
||||
/* Name.Namespace */
|
||||
.nt {
|
||||
color:$solar-blue !important;
|
||||
font-weight: bold !important;
|
||||
}
|
||||
/* Name.Tag */
|
||||
.nx {
|
||||
color:$solar-yellow !Important;
|
||||
}
|
||||
.vg {
|
||||
color: $solar-blue !important;
|
||||
}
|
||||
/* Name.Variable.Global */
|
||||
.vi {
|
||||
color: $solar-blue !important;
|
||||
}
|
||||
/* Name.Variable.Instance */
|
||||
.nv {
|
||||
color: $solar-blue !important;
|
||||
}
|
||||
/* Name.Variable */
|
||||
.mf {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.Number.Float */
|
||||
.m {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.Number */
|
||||
.mh {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.Number.Hex */
|
||||
.mi {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.Number.Integer */
|
||||
.s {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.String */
|
||||
.sd {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.String.Doc */
|
||||
.s2 {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.String.Double */
|
||||
.se {
|
||||
color: $solar-red !important;
|
||||
}
|
||||
/* Literal.String.Escape */
|
||||
.si {
|
||||
color: $solar-blue !important;
|
||||
}
|
||||
/* Literal.String.Interpol */
|
||||
.sr {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.String.Regex */
|
||||
.s1 {
|
||||
color: $solar-cyan !important;
|
||||
}
|
||||
/* Literal.String.Single */
|
||||
}
|
||||
49
sass/parts/_twitter.scss
Normal file
49
sass/parts/_twitter.scss
Normal file
@ -0,0 +1,49 @@
|
||||
#banner{
|
||||
color: $color-gray02;
|
||||
padding: 30px 0;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
display: none;
|
||||
@include border-shadow();
|
||||
&:hover{
|
||||
a{
|
||||
color: $color-main;
|
||||
}
|
||||
}
|
||||
a{
|
||||
color: $color-gray02;
|
||||
@include transition(0.3s);
|
||||
&:hover{
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
small{
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
.loading{
|
||||
background: image-url('loading_pacman.gif') center no-repeat;
|
||||
text-indent: -9999px;
|
||||
}
|
||||
.container{
|
||||
height: 30px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
display: none;
|
||||
.feed{
|
||||
list-style: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
li{
|
||||
position: relative;
|
||||
small{
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user