rapido-css 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/README.md +44 -9
- data/stylesheets/_default-styles.scss +309 -138
- data/stylesheets/_functions.scss +67 -4
- data/stylesheets/_normalize.scss +39 -513
- data/stylesheets/_rapido.scss +17 -8
- data/stylesheets/_susy.scss +2 -5
- data/stylesheets/components/_alerts.scss +39 -5
- data/stylesheets/components/_breadcrumbs.scss +21 -4
- data/stylesheets/components/_button-groups.scss +42 -17
- data/stylesheets/components/_buttons.scss +69 -29
- data/stylesheets/components/_captions.scss +38 -19
- data/stylesheets/components/_close.scss +14 -3
- data/stylesheets/components/_dropdowns.scss +76 -28
- data/stylesheets/components/_forms.scss +477 -350
- data/stylesheets/components/_grids.scss +86 -0
- data/stylesheets/components/_labels.scss +26 -4
- data/stylesheets/components/_modals.scss +122 -38
- data/stylesheets/components/_navs.scss +51 -21
- data/stylesheets/components/_pager.scss +55 -10
- data/stylesheets/components/_pagination.scss +40 -25
- data/stylesheets/components/_responsive-navs.scss +141 -28
- data/stylesheets/components/_sliders.scss +45 -26
- data/stylesheets/components/_tables.scss +43 -16
- data/stylesheets/components/_tabs.scss +47 -9
- data/stylesheets/components/_type.scss +139 -73
- data/stylesheets/settings/_base.scss +73 -27
- data/stylesheets/settings/_colors.scss +43 -16
- data/stylesheets/settings/_components.scss +102 -43
- data/stylesheets/settings/_dimensions.scss +273 -92
- data/stylesheets/settings/_effects.scss +20 -12
- data/stylesheets/styleguide.md +33 -0
- data/stylesheets/utilities/_animations.scss +150 -129
- data/stylesheets/utilities/_debug.scss +29 -3
- data/stylesheets/utilities/_helper-classes.scss +135 -18
- data/stylesheets/utilities/_icon-fonts.scss +77 -80
- data/stylesheets/utilities/_mixins.scss +385 -63
- metadata +6 -13
- data/stylesheets/components/config.rb +0 -8
- data/stylesheets/settings/config.rb +0 -8
- data/stylesheets/utilities/_media-queries.scss +0 -50
- data/stylesheets/utilities/_sprites.scss +0 -22
- data/stylesheets/utilities/config.rb +0 -8
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
Nzk0ZDZlYTc4ZTM4NDA5NWM2MTg1NzYyM2M5NGFjOTE2YTI0ODI1Zg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NTc2MzU0ZDVkYzY4MTQ5NDYzNTg5ZGVmNmQzMWRlZjYzNTM1ZWI1OQ==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
NmYwNTEyYTc4ZjBmZmMwOTc1OWZiYzU2ZTUzMmQ0ODExMDdlMmVlMTdkZTgw
|
10
|
+
ZDAxOGU2OTUxODA4NzI4YzgyZjYxNmVhMTk3NWI1N2NhYWJkNTYyMDAyMTVh
|
11
|
+
YmJjOTA2NjY4MzUzZGNjZjkxNGY3ZjMxYTRhMjg4OTMyMmNlZDg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
ZjFjZDk1YWY4OTY5OWU5ZjQ2MzdkOTU3YzhhYjU4MDllYzQ5MDU5OGY0YTQ0
|
14
|
+
MTUxZDI4MmYxMTkzNGI0MGQwZWM4MTkwZmZmMjg3OTJkZDRhMmFlOGQyNTEx
|
15
|
+
MGI5ZThmMDU1OTE5NzNkZDg4N2VkNTliMjU5NGRkNTNmYjNjNDk=
|
data/README.md
CHANGED
@@ -1,13 +1,48 @@
|
|
1
|
-
|
1
|
+
# Rapido Framework
|
2
2
|
|
3
|
-
An easy and quick sass+compass+susy prototyping framework based on Bootstrap without all the default styles.
|
3
|
+
An easy and quick [**Sass**](http://sass-lang.com/) + [**Compass**](http://compass-style.org/) + [**Susy**](http://susy.oddbird.net/) + [**OOCSS**](http://oocss.org/) + [**BEM**](http://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/) prototyping framework based on Bootstrap without all the default styles.
|
4
4
|
|
5
|
-
|
6
|
-
Bootstrap: https://github.com/twitter/bootstrap
|
7
|
-
Twitter Bootstrap - For Compass: https://github.com/vwall/compass-twitter-bootstrap
|
8
|
-
Susy [a Compass plugin]: https://github.com/ericam/susy
|
9
|
-
HTML5 Boilerplate: https://github.com/h5bp/html5-boilerplate
|
5
|
+
## Features
|
10
6
|
|
11
|
-
|
7
|
+
* Most of the modules from Boostrap (some heavily modified and streamlined)
|
8
|
+
* **CSS architecture and styling completely separated**, creating and switching complex themes is much easier
|
9
|
+
* **Every unused component can be disabled** to slim the final css
|
10
|
+
* All sizes are in **em** and respect the **vertical rhythm** of the page
|
11
|
+
* **Super easy responsive layouts** with Susy and custom mixins
|
12
|
+
* Full support of **automatic sprite generation** (with Compass)
|
13
|
+
* Full support of **icon fonts** with 8 fonts already included and custom mixin to remove any frictions
|
14
|
+
* Complete set of **css animations** with custom mixin
|
15
|
+
* There is a variable for almost everything
|
12
16
|
|
13
|
-
|
17
|
+
## Documentation
|
18
|
+
|
19
|
+
A complete documentation of what is currently available can be found here: [Rapido Documentation](http://raffone.github.io/rapido/)
|
20
|
+
|
21
|
+
## Credits
|
22
|
+
|
23
|
+
* [Bootstrap](https://github.com/twitter/bootstrap)
|
24
|
+
* [Twitter Bootstrap - For Compass](https://github.com/vwall/compass-twitter-bootstrap)
|
25
|
+
* [Susy [a Compass plugin]](https://github.com/ericam/susy)
|
26
|
+
* [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate)
|
27
|
+
* [Inuit.css](https://github.com/csswizardry/inuit.css)
|
28
|
+
|
29
|
+
|
30
|
+
## License
|
31
|
+
|
32
|
+
This code is made available under the same license as Twitter Bootstrap.
|
33
|
+
|
34
|
+
--
|
35
|
+
|
36
|
+
Copyright 2013 [Raffaele Rasini](http://twitter.com/raffaele)
|
37
|
+
|
38
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
39
|
+
you may not use this file except in compliance with the License.
|
40
|
+
You may obtain a copy of the License at
|
41
|
+
|
42
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
43
|
+
|
44
|
+
Unless required by applicable law or agreed to in writing, software
|
45
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
46
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
47
|
+
See the License for the specific language governing permissions and
|
48
|
+
limitations under the License.
|