Skip to content

Commit

Permalink
Merge pull request #4 from mgielda/master
Browse files Browse the repository at this point in the history
Initial version of new website
  • Loading branch information
mithro authored Dec 24, 2018
2 parents 8473014 + 3c7a7fe commit 3f87e34
Show file tree
Hide file tree
Showing 51 changed files with 87,572 additions and 69 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
source/assets/css/
source/assets/js/
build/
37 changes: 37 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
language: node_js
node_js:
- "10"

git:
depth: false
submodules: false

branches:
only:
- master

before_script:
- npm install -g gulp-cli
- git config --global user.name $GIT_NAME
- git config --global user.email $GIT_EMAIL
- git config --global push.default simple
- git remote add origin-pages https://${GH_TOKEN}@github.com/$TRAVIS_REPO_SLUG.git > /dev/null 2>&1
- git fetch origin --tags
- git fetch --all
- git worktree add build origin/gh-pages -b gh-pages
# - git clone git+ssh://github.com/SymbiFlow/symbiflow.github.io --branch gh-pages build

script:
- gulp build

after_success:
- cd build
- touch .nojekyll
- git add --all .
- git status
- echo "Updating to $(git describe --tags)." > /tmp/git_commit
- echo >> /tmp/git_commit
- echo "$TRAVIS_COMMIT_MESSAGE" >> /tmp/git_commit
- git commit -F /tmp/git_commit
- git log
- git push origin-pages gh-pages
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,14 @@
These files are released under the very permissive
[ISC License, see the COPYING file for the full text](COPYING).

# Dependencies

Requires `node.js`. Run `npm install` to install dependencies.

# Development

Build using `gulp`. Run `gulp watch` to start live server.

# Build

Run `gulp build` to build into the `build` folder. Static files can be served from there.
1,707 changes: 1,707 additions & 0 deletions assets/css/main.css

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions assets/css/partials/glide.core.min.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
.glide {
position: relative;
width: 100%;
box-sizing: border-box; }

.glide * {
box-sizing: inherit; }

.glide__track {
overflow: hidden; }

.glide__slides {
position: relative;
width: 100%;
list-style: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
touch-action: pan-Y;
overflow: hidden;
padding: 0;
white-space: nowrap;
display: flex;
flex-wrap: nowrap;
will-change: transform; }

.glide__slides--dragging {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }

.glide__slide {
width: 100%;
height: 100%;
flex-shrink: 0;
white-space: normal;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent; }

.glide__slide a {
-webkit-user-select: none;
user-select: none;
-webkit-user-drag: none;
-moz-user-select: none;
-ms-user-select: none; }

.glide__arrows {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }

.glide__bullets {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }

.glide--rtl {
direction: rtl; }
Loading

0 comments on commit 3f87e34

Please sign in to comment.