Chauncey McAskill
e7f0455ce4
Testing CSS Font Loading API
...
The code in this commit is not intended for production environments;
it requires further testing.
Added:
- Multiple "Source Sans 3" fonts to test many `FontFace` entries.
Changed:
- Removed quotes from font family name to avoid them being included in `FontFace.family` value.
Notes:
- Replaces hidden `<span>` elements with `FaceFace.load()` and `FaceFace.loaded` to eagerly load fonts.
- Fonts are eagerly using custom `loadFonts()` (see 'app.js').
- Acting upon loaded fonts is done using `whenReady()` (see 'Example.js').
2022-09-27 11:11:31 -04:00
Deven Caron
bf425521c4
Fix "z()" sass function typo
2022-08-25 14:45:24 -04:00
Deven Caron
4079752fe0
Add ul,ol condition grid reset styles
2022-06-07 10:46:44 -04:00
Deven Caron
14d7e09b2b
Compile assets
2022-06-06 16:43:51 -04:00
Deven Caron
07c3155c29
Compile styles
2022-06-06 13:15:56 -04:00
Lucas Vallenet
c8d4e7c154
Build scripts and styles with latest updates
2022-06-01 16:26:47 +02:00
Lucas
7a23abff92
Merge branch 'master' into feature/scss-font-fallbacks
2022-06-01 16:21:09 +02:00
Lucas
9154deb036
Merge branch 'master' into feature/icons
2022-06-01 16:19:46 +02:00
Lucas Vallenet
2783fb5138
Reset scripts from master
2022-05-31 13:20:02 +02:00
Lucas Vallenet
8ca570b37a
Font fallbacks
2022-05-30 16:41:53 +02:00
Lucas
3a94c6aba9
Merge branch 'master' into feature/scss-variables-namespace
2022-05-30 13:09:26 +02:00
Lucas Vallenet
648109fc9b
Reset unrelevant scripts changes to master
2022-05-30 13:04:33 +02:00
Lucas Vallenet
de0c4993cb
Add config.js / Add tickers utils / Add events utils
2022-05-26 13:06:27 +02:00
Lucas Vallenet
b162c62930
Remove logo.svg / Remove html example markup / Update scss instructions
2022-05-25 17:13:35 +02:00
Chauncey McAskill
0b667542f5
Refactor visibility.js
...
Replaced custom callback stacks for executing handlers on page visibility change with native event listener interface and custom event types.
Added:
- Class `PageVisibility` with methods to disable/enable custom event types and check if feature is enabled.
- Custom event types "visibilityhidden" and "visibilityvisible".
2022-05-25 09:54:01 -04:00
Lucas Vallenet
6a4043408b
Remove export comment
2022-05-25 13:28:15 +02:00
Lucas Vallenet
ccf813f6be
Update functions / ES6 syntax / Add functions comments
2022-05-20 16:51:24 +02:00
Lucas Vallenet
141a8ffa97
Update scss vars namespace and add easings
2022-05-20 13:32:47 +02:00
Lucas Vallenet
d6c8fdac23
Standardize scss comments
2022-05-12 16:15:44 +02:00
Lucas Vallenet
9e35894ef1
Revert comments changes to apply to document.scss only
2022-05-12 11:01:51 +02:00
Lucas Vallenet
47974a77a9
- Merge _fonts.scss to _page.scss
...
- Rename _page.scss to _document.scss
- Rename $fontfaces to $font-faces for consistency
- Document _fonts.scss mixins and functions
- Create mixins @font-face for one face
2022-05-02 10:30:35 +02:00
Lucas Vallenet
e8b2a86798
Update fontface system with scss lists, function and mixin
2022-04-29 13:51:46 +02:00
Lucas Vallenet
da66f89d7f
Add icon object styles and html example
2022-04-29 13:36:54 +02:00
Chauncey McAskill
28aa6c7de6
Update NPM dependencies
...
Resolves #105
Updated:
- autoprefixer v10.4.2 → v10.4.4
- browser-sync v2.27.7 → v2.27.9
- esbuild v0.14.21 → v0.14.27
- postcss v8.4.6 → v8.4.12
2022-03-21 17:24:10 -04:00
Chauncey McAskill
9d18205b0f
Update NPM dependencies
...
Updated:
- autoprefixer v10.4.0 → v10.4.2
- esbuild v0.13.12 → v0.14.14
- node-sass v6.0.1 → v7.0.1
- postcss v8.3.11 → v8.4.5
2022-01-28 16:00:57 -05:00
Chauncey McAskill
5c24fabaa2
Compile assets
2021-11-03 10:50:33 -04:00
Deven Caron
62601f22ed
Build assets
2021-10-19 14:49:56 -04:00
Deven Caron
8b40b1a92e
build assets
2021-10-18 16:45:40 -04:00
Chauncey McAskill
21f6acf4a6
Update NPM dependencies
...
Updated:
- autoprefixer v10.3.4 → v10.3.5
- esbuild v0.12.28 → v0.13.0
- postcss v8.3.6 → v8.3.7
2021-09-22 13:26:28 -04:00
Chauncey McAskill
3a65683fd8
Compile assets
2021-09-21 17:52:17 -04:00
Chauncey McAskill
7e8a21f698
Update README and Boilerplate occurrences
...
Changed "Configuration" section to instruct developers on what occurrences to rename throughout the package.
2021-09-18 01:16:44 -04:00
Chauncey McAskill
b24014d8b1
Add autoprefixer and postcss
...
Added:
- autoprefixer v10.3.4
- postcss v8.3.6
Changed:
- Node Sass options to pass source map to PostCSS.
2021-09-18 01:16:44 -04:00
Chauncey McAskill
e9e0e5784e
Refactor build tasks
...
Decouple static "main" keys in mconfig.json and refactor tasks to support many output files.
Added:
- scripts.js: Array of output files (such as 'app.js') to iterate over to bundle JS files.
- styles.js: Array of input files (such as 'main.css' and 'critical.css') to iterate over to compile Sass files.
- svgs.js: Array of output files (such as 'sprite.svg') to iterate over to compile SVG spritesheets.
Changed:
- mconfig.json: Decouple entry points to individual tasks to allow for more flexibility in projects.
- concat.js: Refactor function to use promises to build list of JS files to concatenate.
- message.js: Replace if statements with switch for improved readability.
- message.js: If timerID provided with "waiting" type, log time.
- watch.js: Change CSS and JS reload watch paths to include all files.
- Sorted imports by path.
2021-09-18 01:16:44 -04:00
Quentin Hocdé
fbe2a6badf
Fix app.js coding style and rename css id
2021-03-05 09:30:54 -05:00
Quentin Hocdé
f15ec08784
Update notification + add built time + add nvmrc
2020-12-11 10:41:07 -05:00
Quentin Hocdé
2e7bb3b482
Update tasks - remove gulp (replaced by node scripts, working with mconfig) + esbuild (no more es5 support) + add critical css in config file
2020-11-27 16:01:54 -05:00
Deven Caron
43fc62950a
Build
2020-10-26 15:28:35 -04:00
Antoine Boulanger
e910afc384
Change async stylesheet method, check stylesheet onload before init app
2020-05-26 15:22:14 -04:00
Jérémy Minié
61c9c0ac6f
Add basic scroll-related lazy loading system w/ examples + Fix scrolling issues by putting header inside o-scroll + Use data-scroll-section
2019-09-25 16:25:14 -04:00
Antoine Boulanger
680d6af675
Add abortcontroller to polyfill.io and remove static file
2019-09-03 14:16:08 -04:00
Antoine Boulanger
1f589add29
Create heading, form and button component, remove objects, add form example to page.html, add rem to container, remove pjax scss, add scroll object.
2019-07-24 16:28:56 -04:00
Antoine Boulanger
88dd4dde3b
Change favicons
2019-07-19 16:08:08 -04:00
Antoine Boulanger
41c3fe4b49
Remove jQuery and scrollTo util
2019-07-19 16:00:31 -04:00
Antoine Boulanger
9836c462b2
Update locomotive-scroll to v3: update scroll.js, add scrollbar css, remove copy task
2019-07-19 15:57:34 -04:00
Jérémy Minié
7d47ae0d82
Fix small warning in app.js + Add useful methods to html.js + Add maths.js to utils + Build
2019-06-25 14:21:03 -04:00
Antoine Boulanger
d166261d0a
Add loco scroll v2, update load module and app, update html, add nomodule polyfills script tags
2019-05-23 10:06:45 -04:00
Antoine Boulanger
88aa667090
Start adding modularjs & modularload, start updating readme, update html files, change jquery cdn, remove IE from babelrc
2019-03-24 17:15:47 -04:00
Antoine Boulanger
5281c12e96
Add missing favicons and manifests, update html metas
2019-02-11 11:40:43 -05:00
Deven Caron
d372d1867f
smoothscroll false by default, scroll module renaming
2018-10-17 12:05:33 -04:00
Deven Caron
6cf0bd8375
added scrollbar style
2018-10-17 11:45:20 -04:00