Skip to content

Commit

Permalink
add blue theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ksky521 committed Nov 15, 2014
1 parent b151230 commit f4c5dc9
Show file tree
Hide file tree
Showing 4 changed files with 154 additions and 5 deletions.
1 change: 1 addition & 0 deletions assets/css/theme.blue.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/theme.moon.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

148 changes: 148 additions & 0 deletions assets/scss/theme.blue.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
@import "compass/css3";

$gray-1: #e6e6e6;
$gray-2: #a9a9a9;
$gray-3: #797979;
$gray-4: #515151;
::selection {
color: white;
background-color:#d33682;
@include text-shadow(none);
}
a {
color: #F47F40;
background-color: transparent;
border-bottom: 0;
&:hover {
color: #FE7429;
background-color: transparent;
}
}
h1, h2, h3 {
color: #fff;
// @include text-shadow(none);
letter-spacing: 4px;
font-weight: bolder;
}

h1 {
@include text-shadow(none);
}

button {
@include background(linear-gradient(#F9F9F9 40%, #E3E3E3 70%));
border: 1px solid $gray-2;
@include text-shadow(1px 1px #fff);
}
button:not(:disabled):hover {
border-color: $gray-4;
}

button:not(:disabled):active {
@include background(linear-gradient(#E3E3E3 40%, #F9F9F9 70%));
}
table {
width: 100%;
color: #000;
border-bottom: 0 none;
border-collapse: collapse;
background-color: white;
@include box-shadow(0 none);

thead th{
font-weight: bolder;
background-color: transparent;
border-bottom: 1px solid #2e87d3;
vertical-align:bottom;
}
tbody tr td{
vertical-align: top;
border-bottom: 1px white solid;
}
tr{
background-color: transparent;
}
tr:nth-child(even) {
background-color: transparent;
}
tbody tr:nth-child(odd){
background-color:#eee;
}


td.highlight {
color: #0377C0;
@include text-shadow(1px 1px 1px #aaa);
font-weight: normal;
background-color: transparent !important;
}

&.rows {
border-right: 1px solid $gray-3;
}
}
slides > slide{
-webkit-font-smoothing: subpixel-antialiased;
color: #f8f7f7;
letter-spacing: 2px;
background-color: #086fd1;
&:nth-child(6n+1),
&:nth-child(6n+2),
&:nth-child(6n+3),
&:nth-child(6n+4),
&:nth-child(6n+5){
background-color: #086fd1;
}
.slide-wrapper{
strong{
color:#4FFF00
}
blockquote {
&.pull-right{
border-right:0 none;
padding: 5px 28px 5px 5px;
::before{
font:normal normal normal 14px/1 FontAwesome;
content:"\f10e";
right: 6px;
position: absolute;
top: 6px;
}
small::after{
position: absolute;
content: '';
}
}
::before{
font:normal normal normal 14px/1 FontAwesome;
content:"\f10d";
left: 6px;
position: absolute;
top: 6px;
}
position: relative;
border-left: 0 none;
color: #000;
padding: 5px 5px 5px 28px;
@include text-shadow(none);
p {
font-size: 22px;
line-height: 1.7em;
}
small{
color: #000;
position: relative;
padding-left: 24px;
&::before{
position: absolute;
top: 3px;
content: '\2015 \00A0';
}
}
}
}
}

.progress span{
background: #2187E7;
}
8 changes: 4 additions & 4 deletions assets/scss/theme.moon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $gray-4: #515151;
@include text-shadow(none);
}
a {
color: #F3AC5A;
color: #F9D905;
background-color: transparent;
border-bottom: 0;
&:hover {
Expand Down Expand Up @@ -70,20 +70,20 @@ slides > slide{
-webkit-font-smoothing: subpixel-antialiased;
color: #E8F0F3;
letter-spacing: 2px;
background: -webkit-radial-gradient(center, circle cover, #08415A 0%, #09304C 100%);
background: #152E4F;
&:nth-child(6n+1),
&:nth-child(6n+2),
&:nth-child(6n+3),
&:nth-child(6n+4),
&:nth-child(6n+5){
background: -webkit-radial-gradient(center, circle cover, #08415A 0%, #09304C 100%)
background: #152E4F
}
&.fill{
@include background-size(cover);
}
.slide-wrapper{
strong{

color: #16D5B5
}
blockquote {
&.pull-right{
Expand Down

0 comments on commit f4c5dc9

Please sign in to comment.