forked from chipsalliance/f4pga
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from mgielda/master
Initial version of new website
- Loading branch information
Showing
51 changed files
with
87,572 additions
and
69 deletions.
There are no files selected for viewing
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,4 @@ | ||
node_modules/ | ||
source/assets/css/ | ||
source/assets/js/ | ||
build/ |
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,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 |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,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; } |
Oops, something went wrong.