mirror of
https://github.com/jimeh/jimeh.github.io.git
synced 2026-02-19 09:06:40 +00:00
Some cleanup and readme update.
This commit is contained in:
@@ -1 +1,3 @@
|
|||||||
# [jimeh.me](http://jimeh.me/)
|
# jimeh.me
|
||||||
|
|
||||||
|
This is the source-code for my personal website: [jimeh.me](http://jimeh.me/)
|
||||||
|
|||||||
@@ -180,7 +180,6 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
line-height: 22px;
|
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px 5px;
|
margin: 0px 5px;
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ $name-color: lighten($text-color, 15.5%);
|
|||||||
$nickname-color: lighten($text-color, 75%);
|
$nickname-color: lighten($text-color, 75%);
|
||||||
$sub-title-color: lighten($text-color, 55%);
|
$sub-title-color: lighten($text-color, 55%);
|
||||||
$link-color: lighten($text-color, 65%);
|
$link-color: lighten($text-color, 65%);
|
||||||
$link-hover-color: lighten($text-color, 55%);
|
|
||||||
|
|
||||||
$brand-color: #1193f6;
|
$brand-color: #1193f6;
|
||||||
$brand-color-light: lighten($brand-color, 10%);
|
$brand-color-light: lighten($brand-color, 10%);
|
||||||
@@ -26,15 +25,6 @@ $grey-color: #828282;
|
|||||||
$grey-color-light: lighten($grey-color, 40%);
|
$grey-color-light: lighten($grey-color, 40%);
|
||||||
$grey-color-dark: darken($grey-color, 25%);
|
$grey-color-dark: darken($grey-color, 25%);
|
||||||
|
|
||||||
$on-palm: 768px;
|
|
||||||
$on-laptop: 800px;
|
|
||||||
|
|
||||||
@mixin media-query($device) {
|
|
||||||
@media screen and (max-width: $device) {
|
|
||||||
@content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-radius($radius) {
|
@mixin border-radius($radius) {
|
||||||
-webkit-border-radius: $radius;
|
-webkit-border-radius: $radius;
|
||||||
-moz-border-radius: $radius;
|
-moz-border-radius: $radius;
|
||||||
@@ -60,9 +50,9 @@ $on-laptop: 800px;
|
|||||||
|
|
||||||
@mixin box-shadow($top, $left, $blur, $color, $inset: false) {
|
@mixin box-shadow($top, $left, $blur, $color, $inset: false) {
|
||||||
@if $inset {
|
@if $inset {
|
||||||
-webkit-box-shadow:inset $top $left $blur $color;
|
-webkit-box-shadow: inset $top $left $blur $color;
|
||||||
-moz-box-shadow:inset $top $left $blur $color;
|
-moz-box-shadow: inset $top $left $blur $color;
|
||||||
box-shadow:inset $top $left $blur $color;
|
box-shadow: inset $top $left $blur $color;
|
||||||
} @else {
|
} @else {
|
||||||
-webkit-box-shadow: $top $left $blur $color;
|
-webkit-box-shadow: $top $left $blur $color;
|
||||||
-moz-box-shadow: $top $left $blur $color;
|
-moz-box-shadow: $top $left $blur $color;
|
||||||
|
|||||||
Reference in New Issue
Block a user