Skip to content

Commit 48bc10a

Browse files
committed
Init commit
0 parents  commit 48bc10a

File tree

115 files changed

+21708
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+21708
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
node_modules/
3+
dist/
4+
private/

bower_components/bulma/.bower.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "bulma",
3+
"version": "0.3.1",
4+
"homepage": "http://bulma.io",
5+
"authors": [
6+
"jgthms <[email protected]>"
7+
],
8+
"description": "Modern CSS framework based on Flexbox",
9+
"main": "bulma.sass",
10+
"keywords": [
11+
"css",
12+
"sass",
13+
"flexbox",
14+
"responsive",
15+
"framework"
16+
],
17+
"license": "MIT",
18+
"ignore": [
19+
"**/.*",
20+
"node_modules",
21+
"bower_components",
22+
"test",
23+
"tests",
24+
"docs",
25+
"images"
26+
],
27+
"_release": "0.3.1",
28+
"_resolution": {
29+
"type": "version",
30+
"tag": "0.3.1",
31+
"commit": "b2440df07b69b59c95de25479006f509555caefb"
32+
},
33+
"_source": "https://github.com/jgthms/bulma.git",
34+
"_target": "^0.3.1",
35+
"_originalSource": "bulma",
36+
"_direct": true
37+
}

bower_components/bulma/CHANGELOG.md

+224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
# Bulma Changelog
2+
3+
## 0.3.0
4+
5+
* Use `rem` and `em` (!)
6+
* Fix Font Awesome icons in buttons (!)
7+
* Fix message colors (!)
8+
* Use `{% capture %}` to ensure same display as code snippet (!)
9+
10+
* Move variables to their own file
11+
* Remove small tag
12+
* Add `:focus` state
13+
* Fix table
14+
* Remove table `.is-icon` and `.is-link`
15+
* Add `.content` table
16+
* Fix inputs with icons
17+
* Input icons require the `.icon` container
18+
* Deprecate `.media-number`
19+
* Fix `.level-item` height
20+
* Fix `.menu` spacing
21+
* Deprecate `.menu-nav`
22+
* Add invert outlined buttons
23+
* Fix `.nav`
24+
* Fix `.pagination`
25+
* Fix `.tabs`
26+
* Fix `.panel`
27+
* Fix `.delete`
28+
* Add mixins documentation
29+
* Add functions documentation
30+
31+
## 0.2.2
32+
33+
* Fix: remove multiple imports
34+
35+
## 0.2.1
36+
37+
* Fix: container flex
38+
* Fix: nav-item flex
39+
* Fix: media-number flex
40+
* Fix: new brand colors
41+
42+
## 0.2.0
43+
44+
* Added: new branding
45+
* Added: modularity
46+
* Added: grid folder
47+
* Added: .github folder
48+
49+
## 0.1.1
50+
51+
* Remove `flex: 1` shorthand
52+
53+
## 0.1.0
54+
55+
* Fix #227
56+
* Fix #232
57+
* Fix #242
58+
* Fix #243
59+
* Fix #228
60+
* Fix #245
61+
* Fix #246
62+
63+
## 0.0.28
64+
65+
* BREAKING: `.control.is-grouped` now uses `.control` elements as direct children
66+
* Fix #220
67+
* Fix #214
68+
* Fix #210
69+
* Fix #206
70+
* Fix #122
71+
72+
## 0.0.27
73+
74+
* Fix: #217
75+
* Fix: #213
76+
* Fix: #209
77+
* Fix: #205
78+
* Fix: #204
79+
* Fix: #81
80+
81+
## 0.0.26
82+
83+
* Added: `.modal-card`
84+
* Added: display responsive utilites
85+
* Added: `.nav-center`
86+
* Added: `.tabs ul` left center right
87+
* Changed: `.navbar` renamed to `.level`
88+
* Changed: `.header` renamed to `.nav`
89+
* Deprecated: `.header`
90+
* Deprecated: `.navbar`
91+
* Fixed: `.hero` layout
92+
93+
## 0.0.25
94+
95+
* Added: `utilities/controls.sass` and `elements/form.sass`
96+
* Added: new responsive classes
97+
* Added: white/black and light/dark colors
98+
* Changed: `.tabs` need `.icon` now
99+
* Changed: cdnjs link doesn't include version
100+
101+
## 0.0.24
102+
103+
### Added
104+
105+
* `is-mobile` for the navbar
106+
107+
### Removed
108+
109+
* removed border between sections. Use `<hr class="is-marginless">` now
110+
111+
### Updated
112+
113+
* restructured files
114+
* added back `inline-flex` for controls and tags
115+
116+
### Removed
117+
118+
* test tiles
119+
120+
## 0.0.23
121+
122+
### BREAKING
123+
124+
* `bulma` folder renamed to `sass` to avoid the redundant `bulma/bulma` path
125+
* `variables.sass` moved to `/utilities`
126+
* almost everything is singular now
127+
* **elements** only have one class
128+
* **components** have at least one sub-class
129+
* `.content` moved to elements
130+
* `.table` moved to elements
131+
* `.message` moved to components
132+
* `.table-icon`, `.table-link`, `.table-narrow` are now called `.is-icon`, `.is-link`, `.is-narrow`
133+
134+
### Added
135+
136+
* all variables are now `!default` so you can set your custom variables before importing Bulma
137+
138+
## 0.0.22
139+
140+
### Fixed
141+
142+
* links in hero subtitle
143+
144+
## 0.0.21
145+
146+
### Added
147+
148+
* `.column.is-narrow` to make a column `flex: none`
149+
150+
## 0.0.20
151+
152+
### Added
153+
154+
* `.has-icon` support for different `.input` sizes
155+
156+
## 0.0.19
157+
158+
### NEW!!!
159+
160+
* `.tile`
161+
162+
### BREAKING
163+
164+
* `.is-third` renamed to `.is-one-third`
165+
* `.is-quarter` renamed to `.is-one-quarter`
166+
167+
### Added
168+
169+
* `.is-two-thirds`
170+
* `.is-three-quarters`
171+
172+
### Changed
173+
174+
* `.delete` in `.tag` has no red
175+
176+
## 0.0.18
177+
178+
### BREAKING
179+
180+
* `.is-text-*` renamed to `.has-text-*`
181+
* removed `.is-fullwidth` helper
182+
183+
### Added
184+
185+
* **small tag**: `.tag.is-small`
186+
* 12th column classes
187+
* `*-full` column classes
188+
* `$family-code`
189+
190+
### Fixed
191+
192+
* disabled input with element
193+
* `.table` last row with `th`
194+
* `.card` color in `.hero`
195+
* `.columns.is-gapless`
196+
197+
### Removed
198+
199+
* removed `box-shadow` from `.tag`
200+
* custom checkboxes and radio buttons
201+
202+
### Updated
203+
204+
* `.tag` uses `display: inline-flex` now
205+
206+
## 0.0.17
207+
208+
### Added
209+
210+
* **pagination**: `.pagination`
211+
* **horizontal forms**: `.control.is-horizontal`
212+
* **help** text for form controls: `.help`
213+
* **progress bars**: `.progress`
214+
215+
### Updated
216+
217+
* `.button` uses `display: inline-flex` now
218+
* `.button` needs an `.icon` now
219+
* `.control.is-grouped` renamed to `.control.has-addons`
220+
* `.control.is-inline` renamed to `.control.is-grouped`
221+
222+
### Removed
223+
224+
* **helpers** `.is-inline` and `.is-block`

bower_components/bulma/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Jeremy Thomas
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

bower_components/bulma/README.md

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# [Bulma](http://bulma.io)
2+
3+
[![npm](https://img.shields.io/npm/v/bulma.svg)](https://www.npmjs.com/package/bulma)
4+
[![npm](https://img.shields.io/npm/dm/bulma.svg)](https://www.npmjs.com/package/bulma)
5+
[![Join the chat at https://gitter.im/jgthms/bulma](https://badges.gitter.im/jgthms/bulma.svg)](https://gitter.im/jgthms/bulma)
6+
7+
Bulma is a modern CSS framework based on [Flexbox](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Using_CSS_flexible_boxes).
8+
9+
[![Bulma: a Flexbox CSS framework](https://raw.githubusercontent.com/jgthms/bulma/master/docs/images/bulma-banner.png)](http://bulma.io)
10+
11+
## Quick install
12+
13+
Bulma is in early but active development! Try it out now:
14+
15+
### NPM
16+
17+
```sh
18+
npm install bulma
19+
```
20+
21+
### Bower
22+
23+
```sh
24+
bower install bulma
25+
```
26+
27+
### CDN
28+
29+
[https://cdnjs.com/libraries/bulma](https://cdnjs.com/libraries/bulma)
30+
31+
Feel free to raise an issue or submit a pull request.
32+
33+
## CSS only
34+
35+
Bulma is a **CSS** framework. As such, the sole output is a single CSS file: [bulma.css](https://github.com/jgthms/bulma/blob/master/css/bulma.css)
36+
37+
You can either use that file, "out of the box", or download the Sass source files to customize the [variables](http://bulma.io/documentation/overview/variables/).
38+
39+
There is **no** JavaScript included. People generally want to use their own JS implementation (and usually already have one). Bulma can be considered "environment agnostic": it's just the style layer on top of the logic.
40+
41+
## Browser Support
42+
43+
Bulma uses [autoprefixer](https://github.com/postcss/autoprefixer) to make (most) Flexbox features compatible with earlier browser versions. According to [Can I use](http://caniuse.com/#feat=flexbox), Bulma is compatible with:
44+
45+
* Chrome
46+
* Edge
47+
* Firefox
48+
* Internet Explorer (10+)
49+
* Opera
50+
* Safari
51+
52+
## Related projects
53+
54+
* Bulma with Attribute Modules: https://github.com/j5bot/bulma-attribute-selectors
55+
* Bulma with Rails: https://github.com/joshuajansen/bulma-rails
56+
* iTemplate: [http://itemplate.ga/](http://itemplate.ga/dashboard.html)
57+
* Vue Admin powered by Bulma: https://github.com/fundon/vue-admin
58+
59+
## Copyright and license
60+
61+
Code copyright 2017 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).

bower_components/bulma/bower.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "bulma",
3+
"version": "0.3.1",
4+
"homepage": "http://bulma.io",
5+
"authors": [
6+
"jgthms <[email protected]>"
7+
],
8+
"description": "Modern CSS framework based on Flexbox",
9+
"main": "bulma.sass",
10+
"keywords": [
11+
"css",
12+
"sass",
13+
"flexbox",
14+
"responsive",
15+
"framework"
16+
],
17+
"license": "MIT",
18+
"ignore": [
19+
"**/.*",
20+
"node_modules",
21+
"bower_components",
22+
"test",
23+
"tests",
24+
"docs",
25+
"images"
26+
]
27+
}

bower_components/bulma/bulma.sass

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*! bulma.io v0.3.1 | MIT License | github.com/jgthms/bulma */
2+
@charset "utf-8"
3+
4+
@import "sass/utilities/_all"
5+
@import "sass/base/_all"
6+
@import "sass/elements/_all"
7+
@import "sass/components/_all"
8+
@import "sass/grid/_all"
9+
@import "sass/layout/_all"

0 commit comments

Comments
 (0)