diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-03-14 23:19:58 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-03-14 23:19:58 +0100 |
| commit | b009b50e81b6c1d0d691505b5f5c0418f559bfc0 (patch) | |
| tree | 5fae800e76219eba28634cb236565f9b4bb7a2f7 /atom/packages/aesthetic-ui/styles/text.less | |
| parent | 4efcafab7f0aa454f9ebe767133654bc9f44e12c (diff) | |
Remove Atom config
Diffstat (limited to 'atom/packages/aesthetic-ui/styles/text.less')
| -rw-r--r-- | atom/packages/aesthetic-ui/styles/text.less | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/atom/packages/aesthetic-ui/styles/text.less b/atom/packages/aesthetic-ui/styles/text.less deleted file mode 100644 index e4d53f0..0000000 --- a/atom/packages/aesthetic-ui/styles/text.less +++ /dev/null @@ -1,81 +0,0 @@ -@import "ui-mixins"; -@import "ui-variables"; - -h1, -h2, -h3 { - line-height: 1em; - margin-bottom: 15px -} -h1 { font-size: 2em; } -h2 { font-size: 1.5em; } -h3 { font-size: 1.2em; } - -p { - line-height: 1.6; - margin-bottom: 15px; -} - -label { - font-weight: normal; -} - -pre { - box-shadow: none; - color: @text-color; - background: @inset-panel-background-color; - border-radius: @component-border-radius; - border: none; - margin: 0; -} - -code { - .text(highlight); - background: @background-color-highlight; - border-radius: @component-border-radius; -} - -.selected { .text(highlight); } - -.text-smaller { font-size: 0.9em; } - -.text-subtle { .text(subtle); } -.text-highlight { .text(highlight); } - -.text-error { .text(error); } -.text-info { - .text(info); - &:hover { color: @text-color-info; } -} -.text-warning { - .text(warning); - &:hover { color: @text-color-warning; } -} -.text-success { - .text(success); - &:hover { color: @text-color-success; } -} - -.highlight { - color: @text-color-highlight; - font-weight: bold; - text-shadow: none; - background-color: @background-color-highlight; - border-radius: @component-border-radius; - padding: 1px 3px; -} - -.highlight-color(@name, @color) { - .highlight-@{name} { - color: @text-color-highlight; - font-weight: bold; - text-shadow: none; - background-color: @color; - border-radius: @component-border-radius; - padding: 1px 3px; - } -} -.highlight-color(info, @background-color-info); -.highlight-color(warning, @background-color-warning); -.highlight-color(error, @background-color-error); -.highlight-color(success, @background-color-success); |