-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lucas Bonomi
committed
Jan 9, 2015
0 parents
commit 0e1f70f
Showing
433 changed files
with
64,246 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules | ||
dist | ||
.tmp | ||
.sass-cache | ||
app/bower_components | ||
test/bower_components |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Page Not Found :(</title> | ||
<style> | ||
::-moz-selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
|
||
::selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
|
||
html { | ||
padding: 30px 10px; | ||
font-size: 20px; | ||
line-height: 1.4; | ||
color: #737373; | ||
background: #f0f0f0; | ||
-webkit-text-size-adjust: 100%; | ||
-ms-text-size-adjust: 100%; | ||
} | ||
|
||
html, | ||
input { | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
} | ||
|
||
body { | ||
max-width: 500px; | ||
_width: 500px; | ||
padding: 30px 20px 50px; | ||
border: 1px solid #b3b3b3; | ||
border-radius: 4px; | ||
margin: 0 auto; | ||
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; | ||
background: #fcfcfc; | ||
} | ||
|
||
h1 { | ||
margin: 0 10px; | ||
font-size: 50px; | ||
text-align: center; | ||
} | ||
|
||
h1 span { | ||
color: #bbb; | ||
} | ||
|
||
h3 { | ||
margin: 1.5em 0 0.5em; | ||
} | ||
|
||
p { | ||
margin: 1em 0; | ||
} | ||
|
||
ul { | ||
padding: 0 0 0 40px; | ||
margin: 1em 0; | ||
} | ||
|
||
.container { | ||
max-width: 380px; | ||
_width: 380px; | ||
margin: 0 auto; | ||
} | ||
|
||
/* google search */ | ||
|
||
#goog-fixurl ul { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
#goog-fixurl form { | ||
margin: 0; | ||
} | ||
|
||
#goog-wm-qt, | ||
#goog-wm-sb { | ||
border: 1px solid #bbb; | ||
font-size: 16px; | ||
line-height: normal; | ||
vertical-align: top; | ||
color: #444; | ||
border-radius: 2px; | ||
} | ||
|
||
#goog-wm-qt { | ||
width: 220px; | ||
height: 20px; | ||
padding: 5px; | ||
margin: 5px 10px 0 0; | ||
box-shadow: inset 0 1px 1px #ccc; | ||
} | ||
|
||
#goog-wm-sb { | ||
display: inline-block; | ||
height: 32px; | ||
padding: 0 10px; | ||
margin: 5px 0 0; | ||
white-space: nowrap; | ||
cursor: pointer; | ||
background-color: #f5f5f5; | ||
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
-webkit-appearance: none; | ||
-moz-appearance: none; | ||
appearance: none; | ||
*overflow: visible; | ||
*display: inline; | ||
*zoom: 1; | ||
} | ||
|
||
#goog-wm-sb:hover, | ||
#goog-wm-sb:focus { | ||
border-color: #aaa; | ||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); | ||
background-color: #f8f8f8; | ||
} | ||
|
||
#goog-wm-qt:hover, | ||
#goog-wm-qt:focus { | ||
border-color: #105cb6; | ||
outline: 0; | ||
color: #222; | ||
} | ||
|
||
input::-moz-focus-inner { | ||
padding: 0; | ||
border: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Not found <span>:(</span></h1> | ||
<p>Sorry, but the page you were trying to view does not exist.</p> | ||
<p>It looks like this was the result of either:</p> | ||
<ul> | ||
<li>a mistyped address</li> | ||
<li>an out-of-date link</li> | ||
</ul> | ||
<script> | ||
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host; | ||
</script> | ||
<script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Framaterial-design | ||
================== | ||
|
||
A Framework to create Material Design projects ! | ||
|
||
### ToDo | ||
#### Add all components | ||
- [x] Forms | ||
- [x] Checkboxes | ||
- [x] Inputs | ||
- [x] Radio | ||
- [x] Range | ||
- [x] Blockquotes | ||
- [x] Buttons | ||
- [x] Cards | ||
- [x] Datepicker | ||
- [x] Modals | ||
- [x] Dropdowns | ||
- [x] Lists | ||
- [x] Panels | ||
- [x] Sidebar | ||
- [x] Tooltips | ||
- [x] Progress | ||
- [x] Toasts & Snackbars | ||
|
||
#### Add proper vendor prefixes & Pseudo selectors for shadow dom elements [CHROME|FIREFOX|INTERNET EXPLORER] | ||
- [x] Range | ||
- [ ] Progress | ||
|
||
#### Validate mobile version | ||
|
||
|
||
### Contribute | ||
Please, if you want to add some components or if you have any ideas that could be added to the Framework, open an [issue](https://github.com/LukyVj/Framaterial-design/issues). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"name": "bootstrap-sass", | ||
"version": "3.1.1+2", | ||
"homepage": "https://github.com/twbs/bootstrap-sass", | ||
"authors": [ | ||
"Thomas McDonald", | ||
"Tristan Harward", | ||
"Peter Gumeson", | ||
"Gleb Mazovetskiy" | ||
], | ||
"description": "bootstrap-sass is a Sass-powered version of Bootstrap, ready to drop right into your Sass powered applications.", | ||
"main": [ | ||
"vendor/assets/stylesheets/bootstrap.scss", | ||
"vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.eot", | ||
"vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.svg", | ||
"vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf", | ||
"vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.woff", | ||
"vendor/assets/javascripts/bootstrap/affix.js", | ||
"vendor/assets/javascripts/bootstrap/alert.js", | ||
"vendor/assets/javascripts/bootstrap/button.js", | ||
"vendor/assets/javascripts/bootstrap/carousel.js", | ||
"vendor/assets/javascripts/bootstrap/collapse.js", | ||
"vendor/assets/javascripts/bootstrap/dropdown.js", | ||
"vendor/assets/javascripts/bootstrap/tab.js", | ||
"vendor/assets/javascripts/bootstrap/transition.js", | ||
"vendor/assets/javascripts/bootstrap/scrollspy.js", | ||
"vendor/assets/javascripts/bootstrap/modal.js", | ||
"vendor/assets/javascripts/bootstrap/tooltip.js", | ||
"vendor/assets/javascripts/bootstrap/popover.js" | ||
], | ||
"keywords": [ | ||
"twbs", | ||
"bootstrap", | ||
"sass" | ||
], | ||
"license": "MIT", | ||
"ignore": [ | ||
"**/.*", | ||
"lib", | ||
"tasks", | ||
"templates", | ||
"test", | ||
"*.gemspec", | ||
"Rakefile", | ||
"Gemfile" | ||
], | ||
"_release": "3.1.1+2", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v3.1.1+2", | ||
"commit": "039f08dc011ea5f6be4b9bd2d00789cb440cc358" | ||
}, | ||
"_source": "git://github.com/twbs/bootstrap-sass.git", | ||
"_target": "~3.1.1", | ||
"_originalSource": "bootstrap-sass-official" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
# Changelog | ||
|
||
## 3.1.1.0 | ||
|
||
- Updated Bower docs | ||
|
||
## 3.1.0.2 | ||
|
||
- #523: Rails 3.2 compatibility | ||
- Bugfixes from upstream up to 7eb532262fbd1112215b5a547b9285794b5360ab. | ||
|
||
## 3.1.0.1 | ||
|
||
- #518: `scale` mixin Sass compatibility issue | ||
|
||
## 3.1.0.0 | ||
|
||
* compiles with libsass master | ||
|
||
## 3.0.2.1 | ||
|
||
* fix vendor paths for compass | ||
|
||
## 3.0.0.0 | ||
|
||
* Fully automated (lots of string juggling) LESS -> Sass conversion. - *Gleb Mazovetskiy* | ||
* Ported rake task from vwall/compass-twitter-bootstrap to convert Bootstrap upstream - *Peter Gumeson* | ||
* Moved javascripts to us `bootstrap-component.js` to `bootstrap/component.js` - *Peter Gumeson* | ||
|
||
## 2.3.2.2 | ||
|
||
* Allow sass-rails `>= 3.2` - *Thomas McDonald* | ||
|
||
## 2.3.2.1 | ||
|
||
## 2.3.2.0 | ||
|
||
* Update to Bootstrap 2.3.2 - *Dan Allen* | ||
|
||
## 2.3.1.3 | ||
|
||
* Find the correct Sprockets context for the `image_path` function - *Tristan Harward, Gleb Mazovetskiy* | ||
|
||
## 2.3.1.2 | ||
|
||
* Fix changes to image url - *Gleb Mazovetskiy* | ||
* Copy _variables into project on Compass install - *Phil Thompson* | ||
* Add `bootstrap-affix` to the Compass template file - *brief* | ||
|
||
## 2.3.1.1 (yanked) | ||
|
||
* Change how image_url is handled internally - *Tristan Harward* | ||
* Fix some font variables not having `!default` - *Thomas McDonald* | ||
|
||
## 2.3.0.0 | ||
* [#290] Update to Bootstrap 2.3.0 - *Tristan Harward* | ||
* Fix `rake:debug` with new file locations - *Thomas McDonald* | ||
* Add draft contributing document - *Thomas McDonald* | ||
* [#260] Add our load path to the global Sass load path - *Tristan Harward* | ||
* [#275] Use GitHub notation in Sass head testing gemfile - *Timo Schilling* | ||
* [#279, #283] Readme improvements - *theverything, Philip Arndt* | ||
|
||
## 2.2.2.0 | ||
* [#270] Update to Bootstrap 2.2.2 - *Tristan Harward* | ||
* [#266] Add license to gemspec - *Peter Marsh* | ||
|
||
## 2.2.1.1 | ||
* [#258] Use `bootstrap` prefix for `@import`ing files in `bootstrap/bootstrap.scss` - *Umair Siddique* | ||
|
||
## 2.2.1.0 | ||
* [#246] Update to Bootstrap 2.2.1 - *Tristan Harward* | ||
* [#246] Pull Bootstrap updates from jlong/sass-twitter-bootstrap - *Tristan Harward* | ||
|
||
## 2.1.1.0 | ||
* Update to Bootstrap 2.1.1 | ||
* [#222] Remove 100% multiplier in vertical-three-colours | ||
* [#227] Fix IE component animation collapse | ||
* [#228] Fix variables documentation link | ||
* [#231] Made .input-block-level a class as well as mixin | ||
|
||
## 2.1.0.1 | ||
* [#219] Fix expected a color. Got: transparent. | ||
* [#207] Add missing warning style for table row highlighting | ||
* [#208] Use grid-input-span for input spans | ||
|
||
## 2.1.0.0 | ||
* Updated to Bootstrap 2.1 | ||
* Changed some mixin names to be more consistent. Nested mixins in Less are separated by a `-` when they are flattened in Sass. | ||
|
||
## 2.0.4.1 | ||
* Fix `.row-fluid > spanX` nesting | ||
* Small Javascript fixes for those staying on the 2.0.4 release | ||
* Add `!default` to z-index variables. | ||
|
||
## 2.0.4.0 | ||
* Updated to Bootstrap 2.0.4 | ||
* Switched to Bootstrap 2.0.3+'s method of separating responsive files | ||
* [#149, #150] Fix off by one error introduced with manual revert of media query breakpoints | ||
* `rake debug` and `rake test` both compile bootstrap & bootstrap-responsive | ||
|
||
## 2.0.3.1 | ||
* [#145, #146] Fix button alignment in collapsing navbar as a result of an incorrect variable | ||
|
||
## 2.0.3 | ||
* Updated to Bootstrap 2.0.3 | ||
* [#106] Support for Rails < 3.1 through Compass | ||
* [#132] Add CI testing | ||
* [#106] Support Rails w/Compass | ||
* [#134] Fix support for Rails w/Compass | ||
|
||
## 2.0.2 | ||
* [#86] Updated to Bootstrap 2.0.2 | ||
Things of note: static navbars now have full width. (to be fixed in 2.0.3) `.navbar-inner > .container { width:940px; }` seems to work in the meanwhile | ||
* [#62] Fixed asset compilation taking a *very* long time. | ||
* [#69, #79, #80] \(Hopefully) clarified README. Now with less cat humour. | ||
* [#91] Removed doubled up Sass extensions for Rails. | ||
* [#63, #73] Allow for overriding of image-path | ||
* [[SO](http://stackoverflow.com/a/9909626/241212)] Added makeFluidColumn mixin for defining fluid columns. Fluid rows must use `@extend .row-fluid`, and any column inside it can use `@include makeFluidColumn(num)`, where `num` is the number of columns. Unfortunately, there is a rather major limitation to this: margins on first-child elements must be overriden. See the attached Stack Overflow answer for more information. | ||
|
||
## 2.0.1 | ||
* Updated to Bootstrap 2.0.1 | ||
* Modified `@mixin opacity()` to take an argument `0...1` rather than `0...100` to be consistent with Compass. | ||
|
||
## 2.0.0 | ||
* Updated to Bootstrap 2.0.0 |
Oops, something went wrong.