Skip to content

Commit

Permalink
academicpages#137 consolidate into _themes.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzupkoii committed Feb 2, 2025
1 parent e9b3774 commit d27ccb0
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 134 deletions.
114 changes: 113 additions & 1 deletion _sass/_themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ $notice-color : #7a8288;
$success-color : #62c462;
$warning-color : #f89406;

/* Other basic settings for the template */
$border-radius : 4px;
$box-shadow : 0 1px 1px rgba(0, 0, 0, 0.125);
$global-transition : all 0.2s ease-in-out;
$navicon-width : 28px;
$navicon-height : 4px;
$masthead-height : 70px;
$sidebar-link-max-width : 250px;
$sidebar-screen-min-width : 1024px;

/* Default light theme for the site */
:root {
--global-base-color : #{$gray};
Expand All @@ -29,4 +39,106 @@ $warning-color : #f89406;
--global-masthead-link-color : #{$gray};
--global-masthead-link-color-hover : mix(#000, #{$gray}, 25%);
--global-text-color : #{$dark-gray};
}
}

/* ==========================================================================
TYPOGRAPHY
========================================================================== */

/* Used to set the size for <em> */
$doc-font-size : 16;

/* Paragraph indention */
$paragraph-indent : false; // true, false (default)
$indent-var : 1.3em;

/* System typefaces */
$serif : Georgia, Times, serif;
$sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
$monospace : Monaco, Consolas, "Lucida Console", monospace;

/* Sans serif typefaces */
$sans-serif-narrow : $sans-serif;
$helvetica : Helvetica, "Helvetica Neue", Arial, sans-serif;

/* Serif typefaces */
$georgia : Georgia, serif;
$times : Times, serif;
$bodoni : "Bodoni MT", serif;
$calisto : "Calisto MT", serif;
$garamond : Garamond, serif;

/* Type scale */
$type-size-1 : 2.441em; // ~39.056px
$type-size-2 : 1.953em; // ~31.248px
$type-size-3 : 1.563em; // ~25.008px
$type-size-4 : 1.25em; // ~20px
$type-size-5 : 1em; // ~16px
$type-size-6 : 0.75em; // ~12px
$type-size-7 : 0.6875em; // ~11px
$type-size-8 : 0.625em; // ~10px

$global-font-family : $sans-serif;
$header-font-family : $sans-serif;
$caption-font-family : $serif;

/* ==========================================================================
Breakpoints
========================================================================== */

@include breakpoint-set("to ems", true);

$small : 600px !default;
$medium : 768px !default;
$medium-wide : 900px !default;
$large : 925px !default;
$x-large : 1280px !default;

/* ==========================================================================
Grid
========================================================================== */

$right-sidebar-width-narrow : 20px !default;
$right-sidebar-width : 30px !default;
$right-sidebar-width-wide : 40px !default;

$susy: (
columns: 12,
column-width: 120px,
gutters: 1/4,
math: fluid,
output: float,
gutter-position: after,
container: $large,
global-box-sizing: border-box,
);

/* ==========================================================================
BRAND COLORS
========================================================================== */

$behance-color : #1769FF;
$bluesky-color : #1184fe;
$dribbble-color : #ea4c89;
$facebook-color : #3b5998;
$flickr-color : #ff0084;
$foursquare-color : #0072b1;
$github-color : #171516;
$google-plus-color : #dd4b39;
$instagram-color : #517fa4;
$kaggle-color : #20c0ff;
$lastfm-color : #d51007;
$linkedin-color : #007bb6;
$mastodon-color : #6364ff;
$orcid-color : #a6ce39;
$pinterest-color : #cb2027;
$rss-color : #fa9b39;
$soundcloud-color : #ff3300;
$stackoverflow-color : #fe7a15;
$tumblr-color : #32506d;
$twitter-color : #55acee;
$vimeo-color : #1ab7ea;
$vine-color : #00bf8f;
$youtube-color : #bb0000;
$xing-color : #006567;

133 changes: 0 additions & 133 deletions _sass/_variables.scss

This file was deleted.

0 comments on commit d27ccb0

Please sign in to comment.