summaryrefslogtreecommitdiffstats
path: root/assets/sass/@primer/css/blankslate
diff options
context:
space:
mode:
authoramzrk22020-04-14 20:58:19 +0800
committeramzrk22020-04-14 20:58:19 +0800
commitbaf7534870460015c194281ad98e1fef99911ef1 (patch)
treecc424e273de1953917a06e5536b2fc527ead78a3 /assets/sass/@primer/css/blankslate
parentf01d08490b3f5f35eca026792d0efe239bda4ff9 (diff)
downloadhugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.tar.gz
hugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.tar.bz2
hugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.zip
Remove redundant Primer CSS
Diffstat (limited to 'assets/sass/@primer/css/blankslate')
-rw-r--r--assets/sass/@primer/css/blankslate/README.md25
-rw-r--r--assets/sass/@primer/css/blankslate/blankslate.scss67
-rw-r--r--assets/sass/@primer/css/blankslate/index.scss3
3 files changed, 0 insertions, 95 deletions
diff --git a/assets/sass/@primer/css/blankslate/README.md b/assets/sass/@primer/css/blankslate/README.md
deleted file mode 100644
index 65962ed..0000000
--- a/assets/sass/@primer/css/blankslate/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-bundle: "blankslate"
-generated: true
----
-
-# Primer CSS: `blankslate` bundle
-
-## Usage
-
-Primer CSS source files are written in [SCSS]. To include this Primer CSS module in your own build, ensure that your `node_modules` directory is listed in your Sass include paths, then import it with:
-
-```scss
-@import "@primer/css/blankslate/index.scss";
-```
-
-## Build
-
-The `@primer/css` npm package includes a standalone CSS build of this module in `dist/blankslate.css`.
-
-## License
-
-[MIT](https://github.com/primer/css/blob/master/LICENSE) © [GitHub](https://github.com/)
-
-
-[scss]: https://sass-lang.com/documentation/syntax#scss
diff --git a/assets/sass/@primer/css/blankslate/blankslate.scss b/assets/sass/@primer/css/blankslate/blankslate.scss
deleted file mode 100644
index e352daa..0000000
--- a/assets/sass/@primer/css/blankslate/blankslate.scss
+++ /dev/null
@@ -1,67 +0,0 @@
-// stylelint-disable selector-max-type
-.blankslate {
- position: relative;
- padding: $spacer-5;
- text-align: center;
-
- code {
- // stylelint-disable-next-line primer/spacing
- padding: 2px 5px 3px;
- font-size: $h5-size;
- background: $bg-white;
- border: $border-width $border-style $border-gray-light;
- border-radius: $border-radius;
- }
-
- img {
- width: 56px;
- height: 56px;
- }
-}
-
-.blankslate-icon {
- margin-right: $spacer-1;
- margin-bottom: $spacer-2;
- margin-left: $spacer-1;
- // stylelint-disable-next-line primer/colors
- color: lighten($gray-400, 5%);
-}
-
-.blankslate-capped {
- border-radius: 0 0 $border-radius $border-radius;
-}
-
-.blankslate-spacious {
- // stylelint-disable-next-line primer/spacing
- padding: ($spacer-6 * 2) $spacer-6;
-}
-
-.blankslate-narrow {
- max-width: 485px;
- margin: 0 auto;
-}
-
-// was .large-format
-// QUESTION: should we deprecate this?
-.blankslate-large {
- img {
- width: 80px;
- height: 80px;
- }
-
- h3 {
- margin: $spacer-3 0;
- //font-size: $h3-size; // This doesn't actually make the text larger. Should this be $h2-size?
- font-size: $h2-size;
- }
-
- p {
- font-size: $h4-size;
- }
-}
-
-// was .clean-background
-// TO DO: deprecate this and use utility instead
-.blankslate-clean-background {
- border: 0;
-}
diff --git a/assets/sass/@primer/css/blankslate/index.scss b/assets/sass/@primer/css/blankslate/index.scss
deleted file mode 100644
index 9fda17f..0000000
--- a/assets/sass/@primer/css/blankslate/index.scss
+++ /dev/null
@@ -1,3 +0,0 @@
-@import "../support/index.scss";
-
-@import "./blankslate.scss";