mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
Change_ANNOOOTHERRR_Theme
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
$color-background: #eee;
|
||||
$color-main: #258fb8;
|
||||
$color-gray01: #666;
|
||||
$color-gray02: #999;
|
||||
$color-gray03: #ccc;
|
||||
$color-gray04: #ddd;
|
||||
$color-gray05: #fff;
|
||||
$color-sidebar: #3D4349;
|
||||
$opacity-sidebar: .3;
|
||||
@@ -0,0 +1,17 @@
|
||||
$font-default: "Nunito", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
$font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
|
||||
|
||||
$font-icon: FontAwesome;
|
||||
$font-icon-path: "/font/fontawesome-webfont";
|
||||
|
||||
@font-face {
|
||||
font-family: 'FontAwesome';
|
||||
src: url('#{$font-icon-path}.eot');
|
||||
src: url('#{$font-icon-path}.eot?#iefix') format('embedded-opentype'),
|
||||
url('#{$font-icon-path}.woff') format('woff'),
|
||||
url('#{$font-icon-path}.ttf') format('truetype'),
|
||||
url('#{$font-icon-path}.svgz#FontAwesomeRegular') format('svg'),
|
||||
url('#{$font-icon-path}.svg#FontAwesomeRegular') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
$max-width: 1000px;
|
||||
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
body{
|
||||
font-family: $font-default;
|
||||
font-weight: 300;
|
||||
font-size: 13px;
|
||||
background: $color-background;
|
||||
color: $color-gray01;
|
||||
@media screen and (max-width: 1040px){
|
||||
margin: 0 20px;
|
||||
}
|
||||
@media screen and (max-width: 600px){
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
h1{
|
||||
font-size: 1.8em;
|
||||
}
|
||||
h2{
|
||||
font-size: 1.5em;
|
||||
}
|
||||
h3{
|
||||
font-size: 1.3em;
|
||||
}
|
||||
a{
|
||||
text-decoration: none;
|
||||
outline-width: 0;
|
||||
color: $color-main;
|
||||
}
|
||||
|
||||
.basic-alignment {
|
||||
&.left { float: left; margin-right: 1.5em; }
|
||||
&.right { float: right; margin-left: 1.5em; }
|
||||
&.center { display:block; margin: 0 auto 1.5em; }
|
||||
&.left, &.right { margin-bottom: .8em; }
|
||||
}
|
||||
|
||||
.alignleft{
|
||||
float: left;
|
||||
}
|
||||
.alignright{
|
||||
float: right;
|
||||
}
|
||||
.clearfix{
|
||||
@include pie-clearfix;
|
||||
}
|
||||
.inner{
|
||||
width: $max-width;
|
||||
margin: 0 auto;
|
||||
@media screen and (max-width: 1040px){
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
.pullquote-right:before,
|
||||
.pullquote-left:before {
|
||||
/* Reset metrics. */
|
||||
padding: 0;
|
||||
border: none;
|
||||
|
||||
/* Content */
|
||||
content: attr(data-pullquote);
|
||||
|
||||
/* Pull out to the right, modular scale based margins. */
|
||||
float: right;
|
||||
width: 45%;
|
||||
margin: .5em 0 1em 1.5em;
|
||||
|
||||
/* Baseline correction */
|
||||
position: relative;
|
||||
top: 7px;
|
||||
font-size: 1.4em;
|
||||
line-height: 1.45em;
|
||||
}
|
||||
|
||||
.pullquote-left:before {
|
||||
/* Make left pullquotes align properly. */
|
||||
float: left;
|
||||
margin: .5em 1.5em 1em 0;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
@mixin square($property){
|
||||
width: $property;
|
||||
height: $property;
|
||||
}
|
||||
@mixin user-select($select){
|
||||
-moz-user-select: $select;
|
||||
-khtml-user-select: $select;
|
||||
-webkit-user-select: $select;
|
||||
-o-user-select: $select;
|
||||
user-select: $select;
|
||||
}
|
||||
@mixin border-shadow($top: $color-gray05, $bottom: $color-gray04){
|
||||
border-top: 1px solid $top;
|
||||
border-bottom: 1px solid $bottom;
|
||||
}
|
||||
@mixin center($width, $height){
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-left: $width/(-2);
|
||||
margin-top: $height/(-2);
|
||||
width: $width;
|
||||
height: $height;
|
||||
}
|
||||
Reference in New Issue
Block a user