mirror of
https://github.com/Xevion/old.xevion.github.io.git
synced 2025-12-06 01:15:33 -06:00
highlight
This commit is contained in:
@@ -11,11 +11,14 @@ $green: #bae67e;
|
|||||||
$purple: #7d0ce8;
|
$purple: #7d0ce8;
|
||||||
$red: #ff0000;
|
$red: #ff0000;
|
||||||
$orange: #e8850c;
|
$orange: #e8850c;
|
||||||
$yellow: #ffcc66;
|
$yellow: #ffdc00;
|
||||||
|
$accent: #ffcc66;
|
||||||
// Fonts
|
// Fonts
|
||||||
$Apercu: 'Apercu', 'Source Sans Pro', Helvetica, Arial, sans-serif;
|
$Apercu: 'Apercu',
|
||||||
|
'Source Sans Pro',
|
||||||
|
Helvetica,
|
||||||
|
Arial,
|
||||||
|
sans-serif;
|
||||||
// Media queries
|
// Media queries
|
||||||
$fifteen-inch: 1440px;
|
$fifteen-inch: 1440px;
|
||||||
$thirteen-inch: 1280px;
|
$thirteen-inch: 1280px;
|
||||||
@@ -27,7 +30,6 @@ $phablet-width: 550px;
|
|||||||
$mobile-width: 480px;
|
$mobile-width: 480px;
|
||||||
$small-mobile-width: 360px;
|
$small-mobile-width: 360px;
|
||||||
$tiny-mobile-width: 330px;
|
$tiny-mobile-width: 330px;
|
||||||
|
|
||||||
@mixin transition {
|
@mixin transition {
|
||||||
transition: all 0.2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
@@ -37,41 +39,49 @@ $tiny-mobile-width: 330px;
|
|||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin desktop {
|
@mixin desktop {
|
||||||
@media screen and (max-width: #{$desktop-width}) {
|
@media screen and (max-width: #{$desktop-width}) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin little-desktop {
|
@mixin little-desktop {
|
||||||
@media screen and (max-width: #{$little-desktop}) {
|
@media screen and (max-width: #{$little-desktop}) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin tablet {
|
@mixin tablet {
|
||||||
@media screen and (max-width: #{$tablet-width}) {
|
@media screen and (max-width: #{$tablet-width}) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin weird-medium {
|
@mixin weird-medium {
|
||||||
@media screen and (max-width: #{$weird-not-tablet-width}) {
|
@media screen and (max-width: #{$weird-not-tablet-width}) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin phablet {
|
@mixin phablet {
|
||||||
@media screen and (max-width: #{$phablet-width}) {
|
@media screen and (max-width: #{$phablet-width}) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin mobile {
|
@mixin mobile {
|
||||||
@media screen and (max-width: #{$mobile-width}) {
|
@media screen and (max-width: #{$mobile-width}) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin small-mobile {
|
@mixin small-mobile {
|
||||||
@media screen and (max-width: #{$small-mobile-width}) {
|
@media screen and (max-width: #{$small-mobile-width}) {
|
||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin tiny-mobile {
|
@mixin tiny-mobile {
|
||||||
@media screen and (max-width: #{$tiny-mobile-width}) {
|
@media screen and (max-width: #{$tiny-mobile-width}) {
|
||||||
@content;
|
@content;
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user