Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: static/scss/_variables.scss

Issue 29500573: Issue 5453 - Change website-defaults into a CMS compatible website (Closed)
Patch Set: Created July 28, 2017, 11:01 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « static/scss/_grid.scss ('k') | static/scss/main.scss » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: static/scss/_variables.scss
===================================================================
new file mode 100644
--- /dev/null
+++ b/static/scss/_variables.scss
@@ -0,0 +1,91 @@
+/*!
+ * This file is part of website-defaults
+ * Copyright (C) 2016-2017 eyeo GmbH
+ *
+ * website-defaults is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * website-defaults is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with website-defaults. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/*******************************************************************************
+ * Variables
+ *******************************************************************************
+ * ~ WARNING ~ DO NOT EDIT THIS FILE!
+ * Set variables within project specfic SCSS before including website defaults.
+ *******************************************************************************
+ * - Brand colors
+ * - Fonts
+ * - Spacing
+ * - Breakpoints
+ ******************************************************************************/
+
+/* Brand colors
+ ******************************************************************************/
+
+/* Primary - The most widely used across all screens and components. */
+
+$primary: #212121 !default;
+$primary-light: #fff !default;
+$primary-dark: #000 !default;
+
+/* Secondary - Used to indicate a related action or information. */
+
+$secondary: #9e9e9e !default;
+$secondary-light: #eee !default;
+$secondary-dark: #424242 !default;
+
+/* Accent - Used for action buttons and interactive elements. */
+
+$accent: #1565c0 !default;
+$accent-light: #e3f2fd !default;
+$accent-dark: #0d47a1 !default;
+
+/* Error - Used for error messages and warnings. */
+
+$error: #f44336 !default;
+$error-light: #ffebee !default;
+$error-dark: #b71c1c !default;
+
+/* Fonts
+ ******************************************************************************/
+
+$primary-font: sans-serif !default;
+$secondary-font: serif !default;
+$monospace-font: monospace !default;
+
+$large-font: 1.2em !default;
+$medium-font: 1em !default;
+$small-font: 0.8em !default;
+
+$bold-weight: 600 !default;
+$normal-weight: 400 !default;
+$thin-weight: 300 !default;
+
+/* Spacing
+ ******************************************************************************/
+
+$large-space: 4em !default;
+$medium-space: 2em !default;
+$small-space: 1em !default;
+
+/* Breakpoints
+ ******************************************************************************/
+
+$tablet-breakpoint: 768px;
+$desktop-breakpoint: 992px;
+
+/* Container widths
+ ******************************************************************************/
+
+$mobile-width: 540px !default;
+$tablet-width: 720px !default;
+$desktop-width: 960px !default;
« no previous file with comments | « static/scss/_grid.scss ('k') | static/scss/main.scss » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld