real-world-css-libraries 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -7
- package/index.js +9 -0
- package/libs/cleanslate-v0.10.1.css +454 -0
- package/libs/colofilter-v0.0.0.css +232 -0
- package/libs/fileicon-v0.1.1.css +140 -0
- package/libs/gridism-v0.2.2.css +133 -0
- package/libs/holmes-v6.8.12.css +483 -0
- package/libs/less-framework-v0.0.0.css +168 -0
- package/libs/medium.css-v1.0.2.css +287 -0
- package/libs/off-canvas-menu-effects-v0.0.0.css +238 -0
- package/libs/select2-bootstrap-v1.2.5.css +120 -0
- package/libs/simptip-v1.0.4.css +447 -0
- package/libs/spicetify-bloom-v0.0.0.css +2725 -0
- package/libs/stackoverflow-dark-v5.1.2.css +4962 -0
- package/libs/swagger-ui-themes-2-v2.1.0.css +1730 -0
- package/libs/swagger-ui-themes-3-v3.0.1.css +1793 -0
- package/libs/wenk-v1.0.8.css +126 -0
- package/package.json +3 -3
- /package/libs/{bootstrap-v4.6.2.css → bootstrap-4-v4.6.2.css} +0 -0
- /package/libs/{bootstrap-v5.3.8.css → bootstrap-5-v5.3.8.css} +0 -0
package/README.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# real-world-css-libraries
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Corpus of unminified, real-world, CSS files from open source projects.
|
|
4
4
|
|
|
5
5
|
For use in minification tests and tooling benchmarks.
|
|
6
6
|
|
|
7
|
+
To see how various CSS Minification Tools perform when minifying these files:
|
|
8
|
+
|
|
9
|
+
* https://www.keithcirkel.co.uk/css-minify-tests/#real-world
|
|
10
|
+
|
|
7
11
|
|
|
8
12
|
## Usage
|
|
9
13
|
|
|
@@ -27,10 +31,11 @@ console.log(libraries);
|
|
|
27
31
|
* {
|
|
28
32
|
* fileName: '960.gs-v0.0.0.css',
|
|
29
33
|
* name: '960.gs',
|
|
30
|
-
* version: '
|
|
34
|
+
* version: 'v0.0.0',
|
|
31
35
|
* license: 'GPL-3.0 or MIT',
|
|
32
36
|
* source: '/*\n 960 Grid System ~ Core CSS.\n Learn more ~ http://9...',
|
|
33
|
-
* size: 9989
|
|
37
|
+
* size: 9989,
|
|
38
|
+
* url: 'https://github.com/nathansmith/960-Grid-System/blob/master/code/css/960.css'
|
|
34
39
|
* },
|
|
35
40
|
* {
|
|
36
41
|
* fileName: 'animate-v4.1.1.css',
|
|
@@ -38,7 +43,8 @@ console.log(libraries);
|
|
|
38
43
|
* version: 'v4.1.1',
|
|
39
44
|
* license: 'Hippocratic-2.1',
|
|
40
45
|
* source: '@charset "UTF-8";\n/*!\n * animate.css - https://animate.s...',
|
|
41
|
-
* size: 95377
|
|
46
|
+
* size: 95377,
|
|
47
|
+
* url: 'https://github.com/animate-css/animate.css/blob/main/animate.css'
|
|
42
48
|
* },
|
|
43
49
|
* ...
|
|
44
50
|
* ]
|
|
@@ -56,6 +62,8 @@ console.log(namesOfLibrariesCompatibleWithMITLicense);
|
|
|
56
62
|
// ['960.gs', '98', 'AdminLTE', ...]
|
|
57
63
|
```
|
|
58
64
|
|
|
65
|
+
**Note:** The `size` is from the original file size on disk. This will be different from `source.length`. If you are comparing the output of a minifier, for example, by using `output.length` of it as a string, then to get a more accurate comparison for percentage of size reduction, you should use `output.length / source.length` instead of `output.length / size`. Counting the number of characters is different than the actual filesize, because not all characters are 1 byte.
|
|
66
|
+
|
|
59
67
|
|
|
60
68
|
## Non-npm usage
|
|
61
69
|
|
|
@@ -69,6 +77,8 @@ If you are using a different programming language/package management system and
|
|
|
69
77
|
1. Manually download repo as a ZIP file:
|
|
70
78
|
* https://github.com/TheJaredWilcurt/real-world-css-libraries/archive/refs/heads/main.zip
|
|
71
79
|
|
|
80
|
+
Then you can loop over the files in the `libs` folder yourself for your usage.
|
|
81
|
+
|
|
72
82
|
|
|
73
83
|
## Adding a library
|
|
74
84
|
|
|
@@ -84,6 +94,11 @@ If you are using a different programming language/package management system and
|
|
|
84
94
|
* If the new library's name needs correcting (like `Mycssrepo` should be `My CSS Repo`), update `nameMap` in `index.js` and run `npm t` again.
|
|
85
95
|
|
|
86
96
|
|
|
97
|
+
## License
|
|
98
|
+
|
|
99
|
+
This repo and all original work within is licensed under MIT. However, the files in the `libs` folder have their own licenses, which can be seen below. I've modified each file to include a single line comment at the top with a link to the original source file, and where needed, ensured there is a single empty return at the end of each file. For simplicity, each of these changes is re-licensed using the exact same original license that was associated with that library. So the (slightly) modified copy of FF-Ultima in `/libs/ff-ultima-v4.3.0.css`, for example, retains it's original `MPL-2.0` license. Effectively all the files in the `/lib` folder have a "pass-through" license back to their original in the sense that my modifications are intentionally minor and inconsequential and therefor should not require a re-licensing of them, but if in a legal sense these minor changes require re-licensing, they are intentionally re-licensed with a matching license of the original. No other changes were made to these files, as I want to keep them representative to what exists in the real world, bugs and all.
|
|
100
|
+
|
|
101
|
+
|
|
87
102
|
## Skipped Libraries
|
|
88
103
|
|
|
89
104
|
These libraries were explicitly not included because they lack a compatible license. Issues have been created for them to add a license, if they do in the future, they can be included in this repo.
|
|
@@ -97,7 +112,7 @@ These libraries were explicitly not included because they lack a compatible lice
|
|
|
97
112
|
|
|
98
113
|
## Libraries included:
|
|
99
114
|
|
|
100
|
-
There are **
|
|
115
|
+
There are **166** files totaling **33.75MB** of unminified CSS.
|
|
101
116
|
|
|
102
117
|
Library | License
|
|
103
118
|
:-- | :--
|
|
@@ -116,8 +131,8 @@ Library | License
|
|
|
116
131
|
[Blue-Topaz Obsidian](https://raw.githubusercontent.com/PKM-er/Blue-Topaz_Obsidian-css/refs/heads/master/obsidian.css) | MIT
|
|
117
132
|
[Boilerform](https://github.com/Andy-set-studio/boilerform/blob/master/dist/css/boilerform.css) | MIT
|
|
118
133
|
[Bojler](https://unpkg.com/@slicejack/bojler@3.2.1/dist/inline.css) | MIT
|
|
119
|
-
[Bootstrap](https://github.com/twbs/bootstrap/releases/tag/v4.6.2) | MIT
|
|
120
|
-
[Bootstrap](https://github.com/twbs/bootstrap/releases/tag/v5.3.8) | MIT
|
|
134
|
+
[Bootstrap 4](https://github.com/twbs/bootstrap/releases/tag/v4.6.2) | MIT
|
|
135
|
+
[Bootstrap 5](https://github.com/twbs/bootstrap/releases/tag/v5.3.8) | MIT
|
|
121
136
|
[Bttn](https://github.com/ganapativs/bttn.css/blob/master/dist/bttn.css) | MIT
|
|
122
137
|
[Bulma](https://github.com/jgthms/bulma/blob/main/css/bulma.css) | MIT
|
|
123
138
|
[Carbon](https://unpkg.com/@carbon/styles@1.107.0/css/styles.css) | Apache-2.0
|
|
@@ -125,7 +140,9 @@ Library | License
|
|
|
125
140
|
[Chota](https://github.com/jenil/chota/blob/main/dist/chota.css) | MIT
|
|
126
141
|
[Cirrus](https://github.com/Spiderpig86/Cirrus/blob/master/dist/cirrus.css) | MIT
|
|
127
142
|
[Classless](https://github.com/DigitallyTailored/Classless.css/blob/main/classless.css) | MIT
|
|
143
|
+
[CleanSlate](https://github.com/premasagar/cleanslate/blob/master/cleanslate.css) | MIT
|
|
128
144
|
[CodeFrame](https://github.com/codyhouse/codyframe/blob/main/main/css/style.css) | MIT
|
|
145
|
+
[Colofilter](https://github.com/LukyVj/colofilter.css/blob/master/styles/colofilter.css) | MIT
|
|
129
146
|
[Concise](https://unpkg.com/concise.css@4.1.2/dist/concise.css) | MIT
|
|
130
147
|
[CrookedStyleSheets](https://github.com/jbtronics/CrookedStyleSheets/blob/master/screen.css) | MIT
|
|
131
148
|
[cs16.css](https://github.com/ekmas/cs16.css/blob/main/css/cs16.css) | MIT
|
|
@@ -147,6 +164,7 @@ Library | License
|
|
|
147
164
|
[ElegantFin](https://github.com/lscambo13/ElegantFin/blob/main/Theme/ElegantFin-theme-v25.12.31.css) | MIT
|
|
148
165
|
[Evil](https://github.com/tlrobinson/evil.css/blob/master/evil.css) | Public Domain
|
|
149
166
|
[FF-Ultima](https://github.com/soulhotel/FF-ULTIMA/blob/main/theme/ffu-internal-appearance.css) | MPL-2.0
|
|
167
|
+
[Fileicon](https://github.com/picturepan2/fileicon.css/blob/master/fileicon.css) | MIT
|
|
150
168
|
[Flakes](https://github.com/kumailht/flakes/blob/master/css/all.css) | MIT
|
|
151
169
|
[Flex Layout Attribute](https://github.com/StefanKovac/flex-layout-attribute/blob/master/css/flex-layout-attribute.css) | MIT
|
|
152
170
|
[Fomantic UI](https://github.com/fomantic/Fomantic-UI/blob/develop/dist/semantic.css) | MIT
|
|
@@ -158,22 +176,26 @@ Library | License
|
|
|
158
176
|
[GitHub-Markdown](https://github.com/sindresorhus/github-markdown-css/blob/main/github-markdown.css) | MIT
|
|
159
177
|
[GitHub-Windows](https://github.com/Athari/CssGitHubWindows/blob/master/GitHubWindows.user.css) | MIT
|
|
160
178
|
[google-type](https://github.com/femmebot/google-type/blob/master/css/google-type.css) | MIT
|
|
179
|
+
[Gridism](https://github.com/cobyism/gridism/blob/master/gridism.css) | MIT
|
|
161
180
|
[Gridlex](https://github.com/devlint/gridlex/blob/master/dist/gridlex.css) | MIT
|
|
162
181
|
[Gumby](https://github.com/GumbyFramework/Gumby/blob/master/css/gumby.css) | MIT
|
|
163
182
|
[Gutenberg](https://github.com/BafS/Gutenberg/blob/master/dist/gutenberg.css) | MIT
|
|
164
183
|
[Halfmoon](https://github.com/halfmoonui/halfmoon/blob/master/css/halfmoon.css) | MIT
|
|
165
184
|
[HalfStyle](https://github.com/arbelh/HalfStyle/blob/master/css/halfstyle.css) | MIT
|
|
166
185
|
[Hint](https://github.com/chinchang/hint.css/blob/master/hint.css) | MIT
|
|
186
|
+
[Holmes](https://github.com/redroot/holmes/blob/master/holmes.css) | GPL-3.0
|
|
167
187
|
[HTML Sheets of Paper](https://github.com/delight-im/HTML-Sheets-of-Paper/blob/gh-pages/css/sheets-of-paper.css) | MIT
|
|
168
188
|
[Hugo Universal Theme](https://github.com/devcows/hugo-universal-theme/blob/master/static/css/style.default.css) | MIT
|
|
169
189
|
[Icon Hover Effects](https://github.com/codrops/IconHoverEffects/blob/master/css/component.css) | MIT
|
|
170
190
|
[Instagram.css](https://github.com/picturepan2/instagram.css/blob/master/dist/instagram.css) | MIT
|
|
171
191
|
[Jupyter Themes](https://github.com/dunovank/jupyter-themes/blob/master/jupyterthemes/styles/compiled/gruvboxd.css) | MIT
|
|
192
|
+
[Less Framework](https://github.com/jonikorpi/Less-Framework/blob/master/main-17px.css) | MIT
|
|
172
193
|
[Load Awesome](https://labs.danielcardoso.net/load-awesome/assets/loaders.css) | MIT
|
|
173
194
|
[Loaders](https://github.com/ConnorAtherton/loaders.css/blob/master/loaders.css) | MIT
|
|
174
195
|
[Luxbar](https://github.com/balzss/luxbar/blob/master/build/luxbar.css) | MIT
|
|
175
196
|
[markdown-css](https://github.com/mrcoles/markdown-css/blob/master/markdown.css) | MIT
|
|
176
197
|
[Material for Bootstrap](https://github.com/Daemonite/material/blob/master/css/material.css) | MIT
|
|
198
|
+
[medium.css](https://github.com/lucagez/medium.css/blob/master/demo/src/medium_extended.css) | MIT
|
|
177
199
|
[Meyer](https://meyerweb.com/eric/tools/css/reset/reset.css) | Public Domain
|
|
178
200
|
[Microsoft Metro Buttons](https://github.com/ace-subido/css3-microsoft-metro-buttons#license) | CC-BY-3.0
|
|
179
201
|
[Microtip](https://github.com/ghosh/microtip/blob/master/microtip.css) | MIT
|
|
@@ -190,6 +212,7 @@ Library | License
|
|
|
190
212
|
[object-fit Polyfill](https://github.com/anselmh/object-fit/blob/master/dist/polyfill.object-fit.css) | MIT
|
|
191
213
|
[Obsidian Colored Sidebar](https://github.com/CyanVoxel/Obsidian-Colored-Sidebar/blob/main/Colored%20Sidebar%20Items.css) | MIT
|
|
192
214
|
[Obsidian Modular CSS Layout](https://github.com/efemkay/obsidian-modular-css-layout/blob/main/MCL%20Multi%20Column.css) | GPL-3.0
|
|
215
|
+
[OffCanvasMenuEffects](https://github.com/codrops/OffCanvasMenuEffects/blob/master/css/menu_cornermorph.css) | MIT
|
|
193
216
|
[Orbit](https://unpkg.com/@zumer/orbit@1.4.11/dist/orbit.css) | MIT
|
|
194
217
|
[Paper](https://github.com/cognitom/paper-css/blob/master/paper.css) | MIT
|
|
195
218
|
[PatternFly](https://unpkg.com/@patternfly/patternfly@6.5.2/patternfly.css) | MIT
|
|
@@ -214,6 +237,7 @@ Library | License
|
|
|
214
237
|
[Ripple UI](https://unpkg.com/rippleui@1.12.1/dist/css/styles.css) | MIT
|
|
215
238
|
[Sakura](https://github.com/oxalorg/sakura/blob/master/css/sakura.css) | MIT
|
|
216
239
|
[Sanitize](https://github.com/csstools/sanitize.css/blob/main/sanitize.css) | CC0-1.0
|
|
240
|
+
[Select2 Bootstrap](https://github.com/t0m/select2-bootstrap-css/blob/master/select2-bootstrap.css) | MIT
|
|
217
241
|
[Select](https://github.com/filamentgroup/select-css/blob/master/src/select-css.css) | MIT
|
|
218
242
|
[Semantic UI](https://github.com/Semantic-Org/Semantic-UI/blob/master/dist/semantic.css) | MIT
|
|
219
243
|
[Shards](https://github.com/DesignRevision/shards-ui/blob/master/dist/css/shards.css) | MIT
|
|
@@ -221,14 +245,19 @@ Library | License
|
|
|
221
245
|
[Simple Grid](https://github.com/zachacole/Simple-Grid/blob/master/simple-grid.css) | MIT
|
|
222
246
|
[Simple Line Icons](https://github.com/thesabbir/simple-line-icons/blob/master/dist/styles/simple-line-icons.css) | MIT
|
|
223
247
|
[Simple](https://codeberg.org/kevquirk/simple.css/src/branch/main/simple.css) | MIT
|
|
248
|
+
[SimpTip](https://github.com/arashmanteghi/simptip/blob/master/simptip.css) | MIT
|
|
224
249
|
[Skeleton](https://github.com/dhg/Skeleton/blob/master/css/skeleton.css) | MIT
|
|
225
250
|
[SPCSS](https://github.com/susam/spcss/blob/main/sp.css) | MIT
|
|
226
251
|
[Spectre](https://github.com/picturepan2/spectre/blob/master/dist/spectre.css) | MIT
|
|
252
|
+
[Spicetify Bloom](https://github.com/nimsandu/spicetify-bloom/blob/main/src/user.css) | MIT
|
|
227
253
|
[Spicetify Dribbblish](https://github.com/spicetify/spicetify-themes/blob/master/Dribbblish/user.css) | MIT
|
|
228
254
|
[Spicetify Text](https://github.com/spicetify/spicetify-themes/blob/master/text/user.css) | MIT
|
|
229
255
|
[Spinkit](https://github.com/tobiasahlin/SpinKit/blob/master/spinkit.css) | MIT
|
|
230
256
|
[Stackicons](https://github.com/parkerbennett/stackicons/blob/master/css/stackicons-social.css) | MIT
|
|
257
|
+
[StackOverflow-Dark](https://github.com/StylishThemes/StackOverflow-Dark/blob/v5.1.2/stackoverflow-dark.user.css) | CC-BY-SA-4.0
|
|
231
258
|
[Stacks](https://unpkg.com/@stackoverflow/stacks@2.8.6/dist/css/stacks.css) | MIT
|
|
259
|
+
[Swagger UI Themes 2](https://github.com/ostranme/swagger-ui-themes/blob/develop/themes/2.x/theme-monokai.css) | MIT
|
|
260
|
+
[Swagger UI Themes 3](https://github.com/ostranme/swagger-ui-themes/blob/develop/themes/3.x/theme-monokai.css) | MIT
|
|
232
261
|
[System](https://github.com/sakofchit/system.css/blob/main/style.css) | MIT
|
|
233
262
|
[Tablecloth](https://github.com/bwsewell/tablecloth/blob/master/assets/css/tablecloth.css) | MIT
|
|
234
263
|
[Tachyons](https://github.com/tachyons-css/tachyons/blob/main/css/tachyons.css) | MIT
|
|
@@ -248,6 +277,7 @@ Library | License
|
|
|
248
277
|
[Water](https://cdn.jsdelivr.net/npm/water.css@2.1.1/out/water.css) | MIT
|
|
249
278
|
[Weather Icons](https://github.com/erikflowers/weather-icons/tree/master/css) | MIT
|
|
250
279
|
[Webgradients](https://github.com/itmeo/webgradients/blob/master/webgradients.css) | MIT
|
|
280
|
+
[Wenk](https://github.com/tiaanduplessis/wenk/blob/master/dist/wenk.cssnext.css) | MIT
|
|
251
281
|
[Windows 98](https://github.com/yocontra/windows_98.css/blob/master/dist/win98.css) | MIT
|
|
252
282
|
[Wing](https://github.com/kbrsh/wing/blob/master/dist/wing.css) | MIT
|
|
253
283
|
[WTF Forms](https://github.com/mdo/wtf-forms/blob/master/wtf-forms.css) | MIT
|
package/index.js
CHANGED
|
@@ -12,6 +12,7 @@ const nameMap = {
|
|
|
12
12
|
'admin-lte': 'AdminLTE',
|
|
13
13
|
beercss: 'Beer CSS',
|
|
14
14
|
'blue-topaz-obsidian': 'Blue-Topaz Obsidian',
|
|
15
|
+
cleanslate: 'CleanSlate',
|
|
15
16
|
codyframe: 'CodeFrame',
|
|
16
17
|
crookedstylesheets: 'CrookedStyleSheets',
|
|
17
18
|
'cs16': 'cs16.css',
|
|
@@ -36,6 +37,7 @@ const nameMap = {
|
|
|
36
37
|
instagram: 'Instagram.css',
|
|
37
38
|
'material-for-bootstrap': 'Material for Bootstrap',
|
|
38
39
|
'markdown-css': 'markdown-css',
|
|
40
|
+
'medium.css': 'medium.css',
|
|
39
41
|
'microsoft-metro-buttons': 'Microsoft Metro Buttons',
|
|
40
42
|
minireset: 'Mini Reset',
|
|
41
43
|
'modern-css-resets': 'Modern CSS Resets',
|
|
@@ -43,10 +45,15 @@ const nameMap = {
|
|
|
43
45
|
nes: 'NES.css',
|
|
44
46
|
'object-fit-polyfill': 'object-fit Polyfill',
|
|
45
47
|
'obsidian-modular-css-layout': 'Obsidian Modular CSS Layout',
|
|
48
|
+
'off-canvas-menu-effects': 'OffCanvasMenuEffects',
|
|
46
49
|
patternfly: 'PatternFly',
|
|
47
50
|
rippleui: 'Ripple UI',
|
|
48
51
|
semantic: 'Semantic UI',
|
|
52
|
+
simptip: 'SimpTip',
|
|
49
53
|
spcss: 'SPCSS',
|
|
54
|
+
'stackoverflow-dark': 'StackOverflow-Dark',
|
|
55
|
+
'swagger-ui-themes-2': 'Swagger UI Themes 2',
|
|
56
|
+
'swagger-ui-themes-3': 'Swagger UI Themes 3',
|
|
50
57
|
'the-new-css-reset': 'The New CSS Reset',
|
|
51
58
|
'tw-animate-css': 'tw-animate-css',
|
|
52
59
|
uikit: 'UIkit',
|
|
@@ -69,7 +76,9 @@ const nameLicenseMap = {
|
|
|
69
76
|
cutestrap2: 'GPL-3.0',
|
|
70
77
|
evil: 'Public Domain',
|
|
71
78
|
'ff-ultima': 'MPL-2.0',
|
|
79
|
+
'stackoverflow-dark': 'CC-BY-SA-4.0',
|
|
72
80
|
'github-dark': 'BSD-2-Clause',
|
|
81
|
+
holmes: 'GPL-3.0',
|
|
73
82
|
meyer: 'Public Domain',
|
|
74
83
|
'microsoft-metro-buttons': 'CC-BY-3.0',
|
|
75
84
|
missing: 'BSD-2-Clause',
|
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
/* https://github.com/premasagar/cleanslate/blob/master/cleanslate.css */
|
|
2
|
+
/*!
|
|
3
|
+
* CleanSlate
|
|
4
|
+
* github.com/premasagar/cleanslate
|
|
5
|
+
*
|
|
6
|
+
*//*
|
|
7
|
+
An extreme CSS reset stylesheet, for normalising the styling of a container element and its children.
|
|
8
|
+
|
|
9
|
+
by Premasagar Rose
|
|
10
|
+
dharmafly.com
|
|
11
|
+
|
|
12
|
+
license
|
|
13
|
+
opensource.org/licenses/mit-license.php
|
|
14
|
+
|
|
15
|
+
**
|
|
16
|
+
|
|
17
|
+
v0.10.1
|
|
18
|
+
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/* == BLANKET RESET RULES == */
|
|
22
|
+
|
|
23
|
+
/* HTML 4.01 */
|
|
24
|
+
.cleanslate, .cleanslate h1, .cleanslate h2, .cleanslate h3, .cleanslate h4, .cleanslate h5, .cleanslate h6, .cleanslate p, .cleanslate td, .cleanslate dl, .cleanslate tr, .cleanslate dt, .cleanslate ol, .cleanslate form, .cleanslate select, .cleanslate option, .cleanslate pre, .cleanslate div, .cleanslate table, .cleanslate th, .cleanslate tbody, .cleanslate tfoot, .cleanslate caption, .cleanslate thead, .cleanslate ul, .cleanslate li, .cleanslate address, .cleanslate blockquote, .cleanslate dd, .cleanslate fieldset, .cleanslate li, .cleanslate iframe, .cleanslate strong, .cleanslate legend, .cleanslate em, .cleanslate summary, .cleanslate cite, .cleanslate span, .cleanslate input, .cleanslate sup, .cleanslate label, .cleanslate dfn, .cleanslate object, .cleanslate big, .cleanslate q, .cleanslate samp, .cleanslate acronym, .cleanslate small, .cleanslate img, .cleanslate strike, .cleanslate code, .cleanslate sub, .cleanslate ins, .cleanslate textarea, .cleanslate button, .cleanslate var, .cleanslate a, .cleanslate abbr, .cleanslate applet, .cleanslate del, .cleanslate kbd, .cleanslate tt, .cleanslate b, .cleanslate i, .cleanslate hr,
|
|
25
|
+
|
|
26
|
+
/* HTML5 - Sept 2013 taken from MDN https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/HTML5_element_list */
|
|
27
|
+
.cleanslate article, .cleanslate aside, .cleanslate figure, .cleanslate figcaption, .cleanslate footer, .cleanslate header, .cleanslate menu, .cleanslate nav, .cleanslate section, .cleanslate time, .cleanslate mark, .cleanslate audio, .cleanslate video, .cleanslate abbr, .cleanslate address, .cleanslate area, .cleanslate blockquote, .cleanslate canvas, .cleanslate caption, .cleanslate cite, .cleanslate code, .cleanslate colgroup, .cleanslate col, .cleanslate datalist, .cleanslate fieldset, .cleanslate main, .cleanslate map, .cleanslate meta, .cleanslate optgroup, .cleanslate output, .cleanslate progress, .cleanslate svg {
|
|
28
|
+
background-attachment:scroll !important;
|
|
29
|
+
background-color:transparent !important;
|
|
30
|
+
background-image:none !important; /* This rule affects the use of pngfix JavaScript http://dillerdesign.com/experiment/DD_BelatedPNG for IE6, which is used to force the browser to recognise alpha-transparent PNGs files that replace the IE6 lack of PNG transparency. (The rule overrides the VML image that is used to replace the given CSS background-image). If you don't know what that means, then you probably haven't used the pngfix script, and this comment may be ignored :) */
|
|
31
|
+
background-position:0 0 !important;
|
|
32
|
+
background-repeat:repeat !important;
|
|
33
|
+
border-color:black !important;
|
|
34
|
+
border-color:currentColor !important; /* `border-color` should match font color. Modern browsers (incl. IE9) allow the use of "currentColor" to match the current font 'color' value <http://www.w3.org/TR/css3-color/#currentcolor>. For older browsers, a default of 'black' is given before this rule. Guideline to support older browsers: if you haven't already declared a border-color for an element, be sure to do so, e.g. when you first declare the border-width. */
|
|
35
|
+
border-radius:0 !important;
|
|
36
|
+
border-style:none !important;
|
|
37
|
+
border-width:medium !important;
|
|
38
|
+
bottom:auto !important;
|
|
39
|
+
clear:none !important;
|
|
40
|
+
clip:auto !important;
|
|
41
|
+
color:inherit !important;
|
|
42
|
+
counter-increment:none !important;
|
|
43
|
+
counter-reset:none !important;
|
|
44
|
+
cursor:auto !important;
|
|
45
|
+
direction:inherit !important;
|
|
46
|
+
display:inline !important;
|
|
47
|
+
float:none !important;
|
|
48
|
+
font-family: inherit !important; /* As with other inherit values, this needs to be set on the root container element */
|
|
49
|
+
font-size: inherit !important;
|
|
50
|
+
font-style:inherit !important;
|
|
51
|
+
font-variant:normal !important;
|
|
52
|
+
font-weight:inherit !important;
|
|
53
|
+
height:auto !important;
|
|
54
|
+
left:auto !important;
|
|
55
|
+
letter-spacing:normal !important;
|
|
56
|
+
line-height:inherit !important;
|
|
57
|
+
list-style-type: inherit !important; /* Could set list-style-type to none */
|
|
58
|
+
list-style-position: outside !important;
|
|
59
|
+
list-style-image: none !important;
|
|
60
|
+
margin:0 !important;
|
|
61
|
+
max-height:none !important;
|
|
62
|
+
max-width:none !important;
|
|
63
|
+
min-height:0 !important;
|
|
64
|
+
min-width:0 !important;
|
|
65
|
+
opacity:1;
|
|
66
|
+
outline:invert none medium !important;
|
|
67
|
+
overflow:visible !important;
|
|
68
|
+
padding:0 !important;
|
|
69
|
+
position:static !important;
|
|
70
|
+
quotes: "" "" !important;
|
|
71
|
+
right:auto !important;
|
|
72
|
+
table-layout:auto !important;
|
|
73
|
+
text-align:inherit !important;
|
|
74
|
+
text-decoration:inherit !important;
|
|
75
|
+
text-indent:0 !important;
|
|
76
|
+
text-transform:none !important;
|
|
77
|
+
top:auto !important;
|
|
78
|
+
unicode-bidi:normal !important;
|
|
79
|
+
vertical-align:baseline !important;
|
|
80
|
+
visibility:inherit !important;
|
|
81
|
+
white-space:normal !important;
|
|
82
|
+
width:auto !important;
|
|
83
|
+
word-spacing:normal !important;
|
|
84
|
+
z-index:auto !important;
|
|
85
|
+
|
|
86
|
+
/* CSS3 */
|
|
87
|
+
/* Including all prefixes according to http://caniuse.com/ */
|
|
88
|
+
/* CSS Animations don't cascade, so don't require resetting */
|
|
89
|
+
-webkit-background-origin: padding-box !important;
|
|
90
|
+
background-origin: padding-box !important;
|
|
91
|
+
-webkit-background-clip: border-box !important;
|
|
92
|
+
background-clip: border-box !important;
|
|
93
|
+
-webkit-background-size: auto !important;
|
|
94
|
+
-moz-background-size: auto !important;
|
|
95
|
+
background-size: auto !important;
|
|
96
|
+
-webkit-border-image: none !important;
|
|
97
|
+
-moz-border-image: none !important;
|
|
98
|
+
-o-border-image: none !important;
|
|
99
|
+
border-image: none !important;
|
|
100
|
+
-webkit-border-radius:0 !important;
|
|
101
|
+
-moz-border-radius:0 !important;
|
|
102
|
+
border-radius: 0 !important;
|
|
103
|
+
-webkit-box-shadow: none !important;
|
|
104
|
+
box-shadow: none !important;
|
|
105
|
+
-webkit-box-sizing: content-box !important;
|
|
106
|
+
-moz-box-sizing: content-box !important;
|
|
107
|
+
box-sizing: content-box !important;
|
|
108
|
+
-webkit-column-count: auto !important;
|
|
109
|
+
-moz-column-count: auto !important;
|
|
110
|
+
column-count: auto !important;
|
|
111
|
+
-webkit-column-gap: normal !important;
|
|
112
|
+
-moz-column-gap: normal !important;
|
|
113
|
+
column-gap: normal !important;
|
|
114
|
+
-webkit-column-rule: medium none black !important;
|
|
115
|
+
-moz-column-rule: medium none black !important;
|
|
116
|
+
column-rule: medium none black !important;
|
|
117
|
+
-webkit-column-span: 1 !important;
|
|
118
|
+
-moz-column-span: 1 !important; /* doesn't exist yet but probably will */
|
|
119
|
+
column-span: 1 !important;
|
|
120
|
+
-webkit-column-width: auto !important;
|
|
121
|
+
-moz-column-width: auto !important;
|
|
122
|
+
column-width: auto !important;
|
|
123
|
+
font-feature-settings: normal !important;
|
|
124
|
+
overflow-x: visible !important;
|
|
125
|
+
overflow-y: visible !important;
|
|
126
|
+
-webkit-hyphens: manual !important;
|
|
127
|
+
-moz-hyphens: manual !important;
|
|
128
|
+
hyphens: manual !important;
|
|
129
|
+
-webkit-perspective: none !important;
|
|
130
|
+
-moz-perspective: none !important;
|
|
131
|
+
-ms-perspective: none !important;
|
|
132
|
+
-o-perspective: none !important;
|
|
133
|
+
perspective: none !important;
|
|
134
|
+
-webkit-perspective-origin: 50% 50% !important;
|
|
135
|
+
-moz-perspective-origin: 50% 50% !important;
|
|
136
|
+
-ms-perspective-origin: 50% 50% !important;
|
|
137
|
+
-o-perspective-origin: 50% 50% !important;
|
|
138
|
+
perspective-origin: 50% 50% !important;
|
|
139
|
+
-webkit-backface-visibility: visible !important;
|
|
140
|
+
-moz-backface-visibility: visible !important;
|
|
141
|
+
-ms-backface-visibility: visible !important;
|
|
142
|
+
-o-backface-visibility: visible !important;
|
|
143
|
+
backface-visibility: visible !important;
|
|
144
|
+
text-shadow: none !important;
|
|
145
|
+
-webkit-transition: all 0s ease 0s !important;
|
|
146
|
+
transition: all 0s ease 0s !important;
|
|
147
|
+
-webkit-transform: none !important;
|
|
148
|
+
-moz-transform: none !important;
|
|
149
|
+
-ms-transform: none !important;
|
|
150
|
+
-o-transform: none !important;
|
|
151
|
+
transform: none !important;
|
|
152
|
+
-webkit-transform-origin: 50% 50% !important;
|
|
153
|
+
-moz-transform-origin: 50% 50% !important;
|
|
154
|
+
-ms-transform-origin: 50% 50% !important;
|
|
155
|
+
-o-transform-origin: 50% 50% !important;
|
|
156
|
+
transform-origin: 50% 50% !important;
|
|
157
|
+
-webkit-transform-style: flat !important;
|
|
158
|
+
-moz-transform-style: flat !important;
|
|
159
|
+
-ms-transform-style: flat !important;
|
|
160
|
+
-o-transform-style: flat !important;
|
|
161
|
+
transform-style: flat !important;
|
|
162
|
+
word-break: normal !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* == BLOCK-LEVEL == */
|
|
166
|
+
/* Actually, some of these should be inline-block and other values, but block works fine (TODO: rigorously verify this) */
|
|
167
|
+
/* HTML 4.01 */
|
|
168
|
+
.cleanslate, .cleanslate h3, .cleanslate h5, .cleanslate p, .cleanslate h1, .cleanslate dl, .cleanslate dt, .cleanslate h6, .cleanslate ol, .cleanslate form, .cleanslate option, .cleanslate pre, .cleanslate div, .cleanslate h2, .cleanslate caption, .cleanslate h4, .cleanslate ul, .cleanslate address, .cleanslate blockquote, .cleanslate dd, .cleanslate fieldset, .cleanslate hr,
|
|
169
|
+
|
|
170
|
+
/* HTML5 new elements */
|
|
171
|
+
.cleanslate article, .cleanslate dialog, .cleanslate figure, .cleanslate footer, .cleanslate header, .cleanslate hgroup, .cleanslate menu, .cleanslate nav, .cleanslate section, .cleanslate audio, .cleanslate video, .cleanslate address, .cleanslate blockquote, .cleanslate colgroup, .cleanslate main, .cleanslate progress, .cleanslate summary {
|
|
172
|
+
display:block !important;
|
|
173
|
+
}
|
|
174
|
+
.cleanslate h1, .cleanslate h2, .cleanslate h3, .cleanslate h4, .cleanslate h5, .cleanslate h6 {
|
|
175
|
+
font-weight: bold !important;
|
|
176
|
+
}
|
|
177
|
+
.cleanslate h1 {
|
|
178
|
+
font-size: 2em !important;
|
|
179
|
+
padding: .67em 0 !important;
|
|
180
|
+
}
|
|
181
|
+
.cleanslate h2 {
|
|
182
|
+
font-size: 1.5em !important;
|
|
183
|
+
padding: .83em 0 !important;
|
|
184
|
+
}
|
|
185
|
+
.cleanslate h3 {
|
|
186
|
+
font-size: 1.17em !important;
|
|
187
|
+
padding: .83em 0 !important;
|
|
188
|
+
}
|
|
189
|
+
.cleanslate h4 {
|
|
190
|
+
font-size: 1em !important;
|
|
191
|
+
}
|
|
192
|
+
.cleanslate h5 {
|
|
193
|
+
font-size: .83em !important;
|
|
194
|
+
}
|
|
195
|
+
.cleanslate p {
|
|
196
|
+
margin: 1em 0 !important;
|
|
197
|
+
}
|
|
198
|
+
.cleanslate table {
|
|
199
|
+
display: table !important;
|
|
200
|
+
}
|
|
201
|
+
.cleanslate thead {
|
|
202
|
+
display: table-header-group !important;
|
|
203
|
+
}
|
|
204
|
+
.cleanslate tbody {
|
|
205
|
+
display: table-row-group !important;
|
|
206
|
+
}
|
|
207
|
+
.cleanslate tfoot {
|
|
208
|
+
display: table-footer-group !important;
|
|
209
|
+
}
|
|
210
|
+
.cleanslate tr {
|
|
211
|
+
display: table-row !important;
|
|
212
|
+
}
|
|
213
|
+
.cleanslate th, .cleanslate td {
|
|
214
|
+
display: table-cell !important;
|
|
215
|
+
padding: 2px !important;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/* == SPECIFIC ELEMENTS == */
|
|
219
|
+
/* Some of these are browser defaults; some are just useful resets */
|
|
220
|
+
.cleanslate ol, .cleanslate ul {
|
|
221
|
+
margin: 1em 0 !important;
|
|
222
|
+
}
|
|
223
|
+
.cleanslate ul li, .cleanslate ul ul li, .cleanslate ul ul ul li, .cleanslate ol li, .cleanslate ol ol li, .cleanslate ol ol ol li, .cleanslate ul ol ol li, .cleanslate ul ul ol li, .cleanslate ol ul ul li, .cleanslate ol ol ul li {
|
|
224
|
+
list-style-position: inside !important;
|
|
225
|
+
margin-top: .08em !important;
|
|
226
|
+
}
|
|
227
|
+
.cleanslate ol ol, .cleanslate ol ol ol, .cleanslate ul ul, .cleanslate ul ul ul, .cleanslate ol ul, .cleanslate ol ul ul, .cleanslate ol ol ul, .cleanslate ul ol, .cleanslate ul ol ol, .cleanslate ul ul ol {
|
|
228
|
+
padding-left: 40px !important;
|
|
229
|
+
margin: 0 !important;
|
|
230
|
+
}
|
|
231
|
+
/* helper for general navigation */
|
|
232
|
+
.cleanslate nav ul, .cleanslate nav ol {
|
|
233
|
+
list-style-type:none !important;
|
|
234
|
+
|
|
235
|
+
}
|
|
236
|
+
.cleanslate ul, .cleanslate menu {
|
|
237
|
+
list-style-type:disc !important;
|
|
238
|
+
}
|
|
239
|
+
.cleanslate ol {
|
|
240
|
+
list-style-type:decimal !important;
|
|
241
|
+
}
|
|
242
|
+
.cleanslate ol ul, .cleanslate ul ul, .cleanslate menu ul, .cleanslate ol menu, .cleanslate ul menu, .cleanslate menu menu {
|
|
243
|
+
list-style-type:circle !important;
|
|
244
|
+
}
|
|
245
|
+
.cleanslate ol ol ul, .cleanslate ol ul ul, .cleanslate ol menu ul, .cleanslate ol ol menu, .cleanslate ol ul menu, .cleanslate ol menu menu, .cleanslate ul ol ul, .cleanslate ul ul ul, .cleanslate ul menu ul, .cleanslate ul ol menu, .cleanslate ul ul menu, .cleanslate ul menu menu, .cleanslate menu ol ul, .cleanslate menu ul ul, .cleanslate menu menu ul, .cleanslate menu ol menu, .cleanslate menu ul menu, .cleanslate menu menu menu {
|
|
246
|
+
list-style-type:square !important;
|
|
247
|
+
}
|
|
248
|
+
.cleanslate li {
|
|
249
|
+
display:list-item !important;
|
|
250
|
+
/* Fixes IE7 issue with positioning of nested bullets */
|
|
251
|
+
min-height:auto !important;
|
|
252
|
+
min-width:auto !important;
|
|
253
|
+
padding-left: 20px !important; /* replace -webkit-padding-start: 40px; */
|
|
254
|
+
}
|
|
255
|
+
.cleanslate strong {
|
|
256
|
+
font-weight:bold !important;
|
|
257
|
+
}
|
|
258
|
+
.cleanslate em {
|
|
259
|
+
font-style:italic !important;
|
|
260
|
+
}
|
|
261
|
+
.cleanslate kbd, .cleanslate samp, .cleanslate code, .cleanslate pre {
|
|
262
|
+
font-family:monospace !important;
|
|
263
|
+
}
|
|
264
|
+
.cleanslate a {
|
|
265
|
+
color: blue !important;
|
|
266
|
+
text-decoration: underline !important;
|
|
267
|
+
}
|
|
268
|
+
.cleanslate a:visited {
|
|
269
|
+
color: #529 !important;
|
|
270
|
+
}
|
|
271
|
+
.cleanslate a, .cleanslate a *, .cleanslate input[type=submit], .cleanslate input[type=button], .cleanslate input[type=radio], .cleanslate input[type=checkbox], .cleanslate select, .cleanslate button {
|
|
272
|
+
cursor:pointer !important;
|
|
273
|
+
}
|
|
274
|
+
.cleanslate button, .cleanslate input[type=submit] {
|
|
275
|
+
text-align: center !important;
|
|
276
|
+
padding: 2px 6px 3px !important;
|
|
277
|
+
border-radius: 4px !important;
|
|
278
|
+
text-decoration: none !important;
|
|
279
|
+
font-family: arial, helvetica, sans-serif !important;
|
|
280
|
+
font-size: small !important;
|
|
281
|
+
background: white !important;
|
|
282
|
+
-webkit-appearance: push-button !important;
|
|
283
|
+
color: buttontext !important;
|
|
284
|
+
border: 1px #a6a6a6 solid !important;
|
|
285
|
+
background: lightgrey !important; /* Old browsers */
|
|
286
|
+
background: rgb(255,255,255); /* Old browsers */
|
|
287
|
+
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(221,221,221,1) 100%, rgba(209,209,209,1) 100%, rgba(221,221,221,1) 100%) !important; /* FF3.6+ */
|
|
288
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(221,221,221,1)), color-stop(100%,rgba(209,209,209,1)), color-stop(100%,rgba(221,221,221,1))) !important; /* Chrome,Safari4+ */
|
|
289
|
+
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%,rgba(209,209,209,1) 100%,rgba(221,221,221,1) 100%) !important; /* Chrome10+,Safari5.1+ */
|
|
290
|
+
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%,rgba(209,209,209,1) 100%,rgba(221,221,221,1) 100%) !important; /* Opera 11.10+ */
|
|
291
|
+
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%,rgba(209,209,209,1) 100%,rgba(221,221,221,1) 100%) !important; /* IE10+ */
|
|
292
|
+
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(221,221,221,1) 100%,rgba(209,209,209,1) 100%,rgba(221,221,221,1) 100%) !important; /* W3C */
|
|
293
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dddddd',GradientType=0 ) !important; /* IE6-9 */
|
|
294
|
+
-webkit-box-shadow: 1px 1px 0px #eee !important;
|
|
295
|
+
-moz-box-shadow: 1px 1px 0px #eee !important;
|
|
296
|
+
-o-box-shadow: 1px 1px 0px #eee !important;
|
|
297
|
+
box-shadow: 1px 1px 0px #eee !important;
|
|
298
|
+
outline: initial !important;
|
|
299
|
+
}
|
|
300
|
+
.cleanslate button:active, .cleanslate input[type=submit]:active, .cleanslate input[type=button]:active, .cleanslate button:active {
|
|
301
|
+
background: rgb(59,103,158) !important; /* Old browsers */
|
|
302
|
+
background: -moz-linear-gradient(top, rgba(59,103,158,1) 0%, rgba(43,136,217,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%) !important; /* FF3.6+ */
|
|
303
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,103,158,1)), color-stop(50%,rgba(43,136,217,1)), color-stop(51%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))) !important; /* Chrome,Safari4+ */
|
|
304
|
+
background: -webkit-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%) !important; /* Chrome10+,Safari5.1+ */
|
|
305
|
+
background: -o-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%) !important; /* Opera 11.10+ */
|
|
306
|
+
background: -ms-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%) !important; /* IE10+ */
|
|
307
|
+
background: linear-gradient(to bottom, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%) !important; /* W3C */
|
|
308
|
+
border-color: #5259b0 !important;
|
|
309
|
+
}
|
|
310
|
+
.cleanslate button {
|
|
311
|
+
padding: 1px 6px 2px 6px !important;
|
|
312
|
+
margin-right: 5px !important;
|
|
313
|
+
}
|
|
314
|
+
.cleanslate input[type=hidden] {
|
|
315
|
+
display:none !important;
|
|
316
|
+
}
|
|
317
|
+
/* restore form defaults */
|
|
318
|
+
.cleanslate textarea {
|
|
319
|
+
-webkit-appearance: textarea !important;
|
|
320
|
+
background: white !important;
|
|
321
|
+
padding: 2px !important;
|
|
322
|
+
margin-left: 4px !important;
|
|
323
|
+
word-wrap: break-word !important;
|
|
324
|
+
white-space: pre-wrap !important;
|
|
325
|
+
font-size: 11px !important;
|
|
326
|
+
font-family: arial, helvetica, sans-serif !important;
|
|
327
|
+
line-height: 13px !important;
|
|
328
|
+
resize: both !important;
|
|
329
|
+
}
|
|
330
|
+
.cleanslate select, .cleanslate textarea, .cleanslate input {
|
|
331
|
+
border:1px solid #ccc !important;
|
|
332
|
+
}
|
|
333
|
+
.cleanslate select {
|
|
334
|
+
font-size: 11px !important;
|
|
335
|
+
font-family: helvetica, arial, sans-serif !important;
|
|
336
|
+
display: inline-block;
|
|
337
|
+
}
|
|
338
|
+
.cleanslate textarea:focus, .cleanslate input:focus {
|
|
339
|
+
outline: auto 5px -webkit-focus-ring-color !important;
|
|
340
|
+
outline: initial !important;
|
|
341
|
+
}
|
|
342
|
+
.cleanslate input[type=text] {
|
|
343
|
+
background: white !important;
|
|
344
|
+
padding: 1px !important;
|
|
345
|
+
font-family: initial !important;
|
|
346
|
+
font-size: small !important;
|
|
347
|
+
}
|
|
348
|
+
.cleanslate input[type=checkbox], .cleanslate input[type=radio] {
|
|
349
|
+
border: 1px #2b2b2b solid !important;
|
|
350
|
+
border-radius: 4px !important;
|
|
351
|
+
}
|
|
352
|
+
.cleanslate input[type=checkbox], .cleanslate input[type=radio] {
|
|
353
|
+
outline: initial !important;
|
|
354
|
+
}
|
|
355
|
+
.cleanslate input[type=radio] {
|
|
356
|
+
margin: 2px 2px 3px 2px !important;
|
|
357
|
+
}
|
|
358
|
+
.cleanslate abbr[title], .cleanslate acronym[title], .cleanslate dfn[title] {
|
|
359
|
+
cursor:help !important;
|
|
360
|
+
border-bottom-width:1px !important;
|
|
361
|
+
border-bottom-style:dotted !important;
|
|
362
|
+
}
|
|
363
|
+
.cleanslate ins {
|
|
364
|
+
background-color:#ff9 !important;
|
|
365
|
+
color:black !important;
|
|
366
|
+
}
|
|
367
|
+
.cleanslate del {
|
|
368
|
+
text-decoration: line-through !important;
|
|
369
|
+
}
|
|
370
|
+
.cleanslate blockquote, .cleanslate q {
|
|
371
|
+
quotes:none !important; /* HTML5 */
|
|
372
|
+
}
|
|
373
|
+
.cleanslate blockquote:before, .cleanslate blockquote:after, .cleanslate q:before, .cleanslate q:after, .cleanslate li:before, .cleanslate li:after {
|
|
374
|
+
content:"" !important;
|
|
375
|
+
}
|
|
376
|
+
.cleanslate input, .cleanslate select {
|
|
377
|
+
vertical-align:middle !important;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.cleanslate table {
|
|
381
|
+
border-collapse:collapse !important;
|
|
382
|
+
border-spacing:0 !important;
|
|
383
|
+
}
|
|
384
|
+
.cleanslate hr {
|
|
385
|
+
display:block !important;
|
|
386
|
+
height:1px !important;
|
|
387
|
+
border:0 !important;
|
|
388
|
+
border-top:1px solid #ccc !important;
|
|
389
|
+
margin:1em 0 !important;
|
|
390
|
+
}
|
|
391
|
+
.cleanslate *[dir=rtl] {
|
|
392
|
+
direction: rtl !important;
|
|
393
|
+
}
|
|
394
|
+
.cleanslate mark {
|
|
395
|
+
background-color:#ff9 !important;
|
|
396
|
+
color:black !important;
|
|
397
|
+
font-style:italic !important;
|
|
398
|
+
font-weight:bold !important;
|
|
399
|
+
}
|
|
400
|
+
.cleanslate menu {
|
|
401
|
+
padding-left: 40px !important;
|
|
402
|
+
padding-top: 8px !important;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/* additional helpers */
|
|
406
|
+
.cleanslate [hidden],
|
|
407
|
+
.cleanslate template {
|
|
408
|
+
display: none !important;
|
|
409
|
+
}
|
|
410
|
+
.cleanslate abbr[title] {
|
|
411
|
+
border-bottom: 1px dotted !important;
|
|
412
|
+
}
|
|
413
|
+
.cleanslate sub, .cleanslate sup {
|
|
414
|
+
font-size: 75% !important;
|
|
415
|
+
line-height: 0 !important;
|
|
416
|
+
position: relative !important;
|
|
417
|
+
vertical-align: baseline !important;
|
|
418
|
+
}
|
|
419
|
+
.cleanslate sup {
|
|
420
|
+
top: -0.5em !important;
|
|
421
|
+
}
|
|
422
|
+
.cleanslate sub {
|
|
423
|
+
bottom: -0.25em !important;
|
|
424
|
+
}
|
|
425
|
+
.cleanslate img {
|
|
426
|
+
border: 0 !important;
|
|
427
|
+
}
|
|
428
|
+
.cleanslate figure {
|
|
429
|
+
margin: 0 !important;
|
|
430
|
+
}
|
|
431
|
+
.cleanslate textarea {
|
|
432
|
+
overflow: auto !important;
|
|
433
|
+
vertical-align: top !important;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/* == ROOT CONTAINER ELEMENT == */
|
|
437
|
+
/* This contains default values for child elements to inherit */
|
|
438
|
+
.cleanslate {
|
|
439
|
+
font-size: medium !important;
|
|
440
|
+
line-height: 1 !important;
|
|
441
|
+
direction:ltr !important;
|
|
442
|
+
text-align: left !important; /* for IE, Opera */
|
|
443
|
+
text-align: start !important; /* recommended W3C Spec */
|
|
444
|
+
font-family: "Times New Roman", Times, serif !important; /* Override this with whatever font-family is required */
|
|
445
|
+
color: black !important;
|
|
446
|
+
font-style:normal !important;
|
|
447
|
+
font-weight:normal !important;
|
|
448
|
+
text-decoration:none !important;
|
|
449
|
+
list-style-type:disc !important;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.cleanslate pre {
|
|
453
|
+
white-space:pre !important;
|
|
454
|
+
}
|