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:
@@ -180,7 +180,6 @@
|
||||
text-align: center;
|
||||
|
||||
a {
|
||||
line-height: 22px;
|
||||
padding: 0px;
|
||||
margin: 0px 5px;
|
||||
|
||||
|
||||
@@ -16,7 +16,6 @@ $name-color: lighten($text-color, 15.5%);
|
||||
$nickname-color: lighten($text-color, 75%);
|
||||
$sub-title-color: lighten($text-color, 55%);
|
||||
$link-color: lighten($text-color, 65%);
|
||||
$link-hover-color: lighten($text-color, 55%);
|
||||
|
||||
$brand-color: #1193f6;
|
||||
$brand-color-light: lighten($brand-color, 10%);
|
||||
@@ -26,15 +25,6 @@ $grey-color: #828282;
|
||||
$grey-color-light: lighten($grey-color, 40%);
|
||||
$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) {
|
||||
-webkit-border-radius: $radius;
|
||||
-moz-border-radius: $radius;
|
||||
@@ -60,9 +50,9 @@ $on-laptop: 800px;
|
||||
|
||||
@mixin box-shadow($top, $left, $blur, $color, $inset: false) {
|
||||
@if $inset {
|
||||
-webkit-box-shadow:inset $top $left $blur $color;
|
||||
-moz-box-shadow:inset $top $left $blur $color;
|
||||
box-shadow:inset $top $left $blur $color;
|
||||
-webkit-box-shadow: inset $top $left $blur $color;
|
||||
-moz-box-shadow: inset $top $left $blur $color;
|
||||
box-shadow: inset $top $left $blur $color;
|
||||
} @else {
|
||||
-webkit-box-shadow: $top $left $blur $color;
|
||||
-moz-box-shadow: $top $left $blur $color;
|
||||
|
||||
Reference in New Issue
Block a user