diff --git a/assets/images/reduxjs.png b/assets/images/reduxjs.png new file mode 100644 index 0000000..3f219d1 Binary files /dev/null and b/assets/images/reduxjs.png differ diff --git a/gulpfile.js b/gulpfile.js index e6ca2d6..f0547a4 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -33,18 +33,6 @@ const CATEGORY = { let name = ''; let category = ''; -const getColor = category => { - switch (category) { - case CATEGORY.FRAMEWORKS: - return 'green'; - case CATEGORY.LANGUAGES: - return 'orange'; - case CATEGORY.TOOLS: - default: - return 'blue'; - } -}; - /** * PRIVATE TASKS */ @@ -168,7 +156,7 @@ task( function renameCss() { return gulp .src('./src/' + name + '/style.scss') - .pipe(replace('{{COLOR}}', getColor(category))) + .pipe(replace('{{CATEGORY}}', category)) .pipe(rename(name + '.scss')) .pipe(gulp.dest('./src/' + name)); } diff --git a/src/affinage/affinage.scss b/src/affinage/affinage.scss index 0df7dc6..ccbedcf 100644 --- a/src/affinage/affinage.scss +++ b/src/affinage/affinage.scss @@ -10,10 +10,6 @@ } body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--orange); - - #showPreview:checked ~ .reverse .landscape { transform: rotate(90deg) translateX(164px) translateY(164px); width: 29.7cm; diff --git a/src/affinage/index.html b/src/affinage/index.html index d4a1c9a..b91e3f3 100644 --- a/src/affinage/index.html +++ b/src/affinage/index.html @@ -6,10 +6,10 @@ - +
- @@include('../../dist/common/first-side/header-no-print-large.html', {"title": "Affinage du backlog", "subtitle": "Cérémonies scrum", "imageName": "AgileBySII_blanc"}) + @@include('../../dist/common/first-side/header-no-print-large.html', {"title": "Affinage du backlog", "subtitle": "Atelier fréquemment utilisé par les équipes agiles", "imageName": "AgileBySII_blanc"})
diff --git a/src/angular-cli/angular-cli.scss b/src/angular-cli/angular-cli.scss index 65706bd..ffd15ef 100644 --- a/src/angular-cli/angular-cli.scss +++ b/src/angular-cli/angular-cli.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/angular-cli/index.html b/src/angular-cli/index.html index 61dc7cf..6454d5f 100644 --- a/src/angular-cli/index.html +++ b/src/angular-cli/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Angular CLI cheat sheet", "subtitle": "CLI tool for Angular", "imageName": "@@folder"}) diff --git a/src/angular/angular.scss b/src/angular/angular.scss index 5172b57..7f720bb 100644 --- a/src/angular/angular.scss +++ b/src/angular/angular.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--orange); - main div { img { height: 230px; diff --git a/src/angular/index.html b/src/angular/index.html index 4623181..5631559 100644 --- a/src/angular/index.html +++ b/src/angular/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Angular (TS) cheat sheet", "subtitle": "One framework. Mobile & desktop.", "imageName": "@@folder"}) diff --git a/src/ansible/ansible.scss b/src/ansible/ansible.scss index 65706bd..ffd15ef 100644 --- a/src/ansible/ansible.scss +++ b/src/ansible/ansible.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/ansible/index.html b/src/ansible/index.html index b60e179..2d0cf40 100644 --- a/src/ansible/index.html +++ b/src/ansible/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "ansible cheat sheet", "subtitle": "Configuration Management Tool", "imageName": "@@folder"}) diff --git a/src/clea/clea.scss b/src/clea/clea.scss index 7cfd087..8dc9ade 100644 --- a/src/clea/clea.scss +++ b/src/clea/clea.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--purple); - main div { img { height: 230px; diff --git a/src/clea/index.html b/src/clea/index.html index 276b2b5..ffafd93 100644 --- a/src/clea/index.html +++ b/src/clea/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "clea", "subtitle": "CLI tool for AngularJS & Typescript projects", "imageName": "clea-white"}) diff --git a/src/common.scss b/src/common.scss index 8f3fb6a..5747e61 100644 --- a/src/common.scss +++ b/src/common.scss @@ -168,13 +168,34 @@ body { --nb-column: 2; - --blue: #005AA2; - --green: #B2BE3A; - --purple: #8D3589; + --blue: #004278; + --light-blue: #007eb5; + --green: #097f03; + --purple: #7c08a3; + --red: #d30012; + --fuchsia: #da277a; --orange: #D64B13; --grey: #80888C; --lightgrey: #eeeef0; + --currentColor: var(--grey); + + &.AGILE { + --currentColor: var(--purple); + } + &.FRAMEWORKS { + --currentColor: var(--orange); + } + &.LANGUAGES { + --currentColor: var(--green); + } + &.PRACTICES { + --currentColor: var(--red); + } + &.TOOLS { + --currentColor: var(--blue); + } + min-width: 740px; margin: 0; font-family: 'Open Sans', sans-serif; diff --git a/src/cordova/cordova.scss b/src/cordova/cordova.scss index edf4355..2e8faa3 100644 --- a/src/cordova/cordova.scss +++ b/src/cordova/cordova.scss @@ -2,10 +2,7 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--green); - - main div { + main div { img { height: 230px; } diff --git a/src/cordova/index.html b/src/cordova/index.html index f29703a..114cde6 100644 --- a/src/cordova/index.html +++ b/src/cordova/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "cordova cheat sheet", "subtitle": "Mobile apps with HTML, CSS & JS", "imageName": "@@folder"}) diff --git a/src/css-selectors/css-selectors.scss b/src/css-selectors/css-selectors.scss index 4867f95..469ab30 100644 --- a/src/css-selectors/css-selectors.scss +++ b/src/css-selectors/css-selectors.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { width: 100%; diff --git a/src/css-selectors/index.html b/src/css-selectors/index.html index 9c492da..2203108 100644 --- a/src/css-selectors/index.html +++ b/src/css-selectors/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "css cheat sheet", "subtitle": "Selectors and Specificities", "imageName": "@@folder"}) diff --git a/src/dailymeeting/dailymeeting.scss b/src/dailymeeting/dailymeeting.scss index a107d2e..52316bb 100644 --- a/src/dailymeeting/dailymeeting.scss +++ b/src/dailymeeting/dailymeeting.scss @@ -10,10 +10,7 @@ } body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - #showPreview:checked ~ .reverse .landscape { transform: rotate(90deg) translateX(164px) translateY(164px); width: 29.7cm; diff --git a/src/dailymeeting/index.html b/src/dailymeeting/index.html index 804e0ab..6847184 100644 --- a/src/dailymeeting/index.html +++ b/src/dailymeeting/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header-no-print-large.html', {"title": "Daily Meeting", "subtitle": "Cérémonies scrum", "imageName": "AgileBySII_blanc"}) diff --git a/src/docker-compose/docker-compose.scss b/src/docker-compose/docker-compose.scss index 65706bd..ffd15ef 100644 --- a/src/docker-compose/docker-compose.scss +++ b/src/docker-compose/docker-compose.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/docker-compose/index.html b/src/docker-compose/index.html index db92b30..10915b5 100644 --- a/src/docker-compose/index.html +++ b/src/docker-compose/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Docker Compose", "subtitle": "Tool for running multi-container Docker applications", "imageName": "@@folder"}) diff --git a/src/docker-swarm/docker-swarm.scss b/src/docker-swarm/docker-swarm.scss index f8e8ed2..b15a5c9 100644 --- a/src/docker-swarm/docker-swarm.scss +++ b/src/docker-swarm/docker-swarm.scss @@ -2,9 +2,7 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - + main div { img { height: 230px; diff --git a/src/docker-swarm/index.html b/src/docker-swarm/index.html index 65674c6..fe05eca 100644 --- a/src/docker-swarm/index.html +++ b/src/docker-swarm/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "docker swarm", "subtitle": "Container orchestration platform", "imageName": "@@folder"}) diff --git a/src/docker/docker.scss b/src/docker/docker.scss index 643f101..c57c4fd 100644 --- a/src/docker/docker.scss +++ b/src/docker/docker.scss @@ -2,9 +2,7 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - + main div { img { height: 230px; diff --git a/src/docker/index.html b/src/docker/index.html index d1b131b..f61586b 100644 --- a/src/docker/index.html +++ b/src/docker/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "docker cheat sheet", "subtitle": "Software container platform", "imageName": "@@folder"}) diff --git a/src/es6/es6.scss b/src/es6/es6.scss index edf4355..377ce03 100644 --- a/src/es6/es6.scss +++ b/src/es6/es6.scss @@ -2,8 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--green); main div { img { diff --git a/src/es6/index.html b/src/es6/index.html index 6cd527f..7783957 100644 --- a/src/es6/index.html +++ b/src/es6/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "es6 cheat sheet", "subtitle": "Ecmascript 6", "imageName": "@@folder"}) diff --git a/src/git/git.scss b/src/git/git.scss index 4efdd88..3564664 100644 --- a/src/git/git.scss +++ b/src/git/git.scss @@ -2,8 +2,6 @@ /* you must not change other scss files */ body { - --currentColor: var(--blue); - .first-side { main div { img { diff --git a/src/git/index.html b/src/git/index.html index 0b80880..5d0b345 100644 --- a/src/git/index.html +++ b/src/git/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Git cheat sheet", "subtitle": "Improve your Git skills", "imageName": "@@folder"}) diff --git a/src/golang/golang.scss b/src/golang/golang.scss index 65706bd..ffd15ef 100644 --- a/src/golang/golang.scss +++ b/src/golang/golang.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/golang/index.html b/src/golang/index.html index 21822c8..037bdac 100644 --- a/src/golang/index.html +++ b/src/golang/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Golang cheat sheet", "subtitle": "Golang in a nutshell", "imageName": "@@folder"}) diff --git a/src/java-design-pattern/index.html b/src/java-design-pattern/index.html index 586bfdd..320849e 100644 --- a/src/java-design-pattern/index.html +++ b/src/java-design-pattern/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Design Pattern cheat sheet", "subtitle": "Most popular in Java", "imageName": "@@folder"}) diff --git a/src/java-design-pattern/java-design-pattern.scss b/src/java-design-pattern/java-design-pattern.scss index 65706bd..2e8faa3 100644 --- a/src/java-design-pattern/java-design-pattern.scss +++ b/src/java-design-pattern/java-design-pattern.scss @@ -2,10 +2,7 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - - main div { + main div { img { height: 230px; } diff --git a/src/kanban/index.html b/src/kanban/index.html index b45bd31..33242c0 100644 --- a/src/kanban/index.html +++ b/src/kanban/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header-no-print-large.html', {"title": "Kanban", "subtitle": "Un processus pour améliorer les processus", "imageName": "AgileBySII_blanc"}) diff --git a/src/kanban/kanban.scss b/src/kanban/kanban.scss index 0df7dc6..ccbedcf 100644 --- a/src/kanban/kanban.scss +++ b/src/kanban/kanban.scss @@ -10,10 +10,6 @@ } body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--orange); - - #showPreview:checked ~ .reverse .landscape { transform: rotate(90deg) translateX(164px) translateY(164px); width: 29.7cm; diff --git a/src/kubernetes/index.html b/src/kubernetes/index.html index cf31ea9..8889039 100644 --- a/src/kubernetes/index.html +++ b/src/kubernetes/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "kubernetes cheat sheet", "subtitle": "Automated container deployment, scaling and management", "imageName": "@@folder"}) diff --git a/src/kubernetes/kubernetes.scss b/src/kubernetes/kubernetes.scss index 65706bd..fb27c13 100644 --- a/src/kubernetes/kubernetes.scss +++ b/src/kubernetes/kubernetes.scss @@ -2,9 +2,7 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - + main div { img { height: 230px; diff --git a/src/mongodb/index.html b/src/mongodb/index.html index 86fe1ae..4c87820 100644 --- a/src/mongodb/index.html +++ b/src/mongodb/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "MongoDB cheat sheet", "subtitle": "The document database with scalability and flexibility.", "imageName": "@@folder"}) diff --git a/src/mongodb/mongodb.scss b/src/mongodb/mongodb.scss index da841d0..b54040f 100644 --- a/src/mongodb/mongodb.scss +++ b/src/mongodb/mongodb.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--green); - main div { img { height: 230px; diff --git a/src/npm-yarn/index.html b/src/npm-yarn/index.html index 9acc778..eff9b25 100644 --- a/src/npm-yarn/index.html +++ b/src/npm-yarn/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "npm-yarn cheat sheet", "subtitle": "Dependency management for NodeJS", "imageName": "@@folder"}) diff --git a/src/npm-yarn/npm-yarn.scss b/src/npm-yarn/npm-yarn.scss index fa66187..aa7dbc4 100644 --- a/src/npm-yarn/npm-yarn.scss +++ b/src/npm-yarn/npm-yarn.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--purple); - main div { img { height: 230px; diff --git a/src/openzfs/index.html b/src/openzfs/index.html index 17f8575..fe707ae 100644 --- a/src/openzfs/index.html +++ b/src/openzfs/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "OpenZFS", "subtitle": "The smartest reliable filesystem", "imageName": "@@folder"}) diff --git a/src/openzfs/openzfs.scss b/src/openzfs/openzfs.scss index af8cba9..ba831ae 100644 --- a/src/openzfs/openzfs.scss +++ b/src/openzfs/openzfs.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--orange); - main div { img { height: 230px; diff --git a/src/powercli/index.html b/src/powercli/index.html index 37a7ab8..d0152a5 100644 --- a/src/powercli/index.html +++ b/src/powercli/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "PowerCLI cheat sheet", "subtitle": "PowerShell SDK to manage VMware vSphere environments", "imageName": "@@folder"}) diff --git a/src/powercli/powercli.scss b/src/powercli/powercli.scss index 880690a..b1ffad6 100644 --- a/src/powercli/powercli.scss +++ b/src/powercli/powercli.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/react/index.html b/src/react/index.html index 243416d..cdc1648 100644 --- a/src/react/index.html +++ b/src/react/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "react cheat sheet", "subtitle": "A JavaScript library for building user interfaces.", "imageName": "@@folder"}) diff --git a/src/react/react.scss b/src/react/react.scss index 65706bd..fb27c13 100644 --- a/src/react/react.scss +++ b/src/react/react.scss @@ -2,9 +2,7 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - + main div { img { height: 230px; diff --git a/src/reduxjs/index.html b/src/reduxjs/index.html index fb76320..1d31c3d 100644 --- a/src/reduxjs/index.html +++ b/src/reduxjs/index.html @@ -6,7 +6,7 @@ - +
diff --git a/src/reduxjs/reduxjs.scss b/src/reduxjs/reduxjs.scss index 10affe3..43ade9e 100644 --- a/src/reduxjs/reduxjs.scss +++ b/src/reduxjs/reduxjs.scss @@ -15,9 +15,7 @@ $grayColor: #e6e6e6; } body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--purple); - + h1{ line-height: 1em; } diff --git a/src/release-planning/index.html b/src/release-planning/index.html index a906b6f..dd59fbf 100644 --- a/src/release-planning/index.html +++ b/src/release-planning/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header-no-print-large.html', {"title": "Release Planning", "subtitle": "Cérémonies scrum", "imageName": "AgileBySII_blanc"}) diff --git a/src/release-planning/release-planning.scss b/src/release-planning/release-planning.scss index e757b3b..b867427 100644 --- a/src/release-planning/release-planning.scss +++ b/src/release-planning/release-planning.scss @@ -2,9 +2,7 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - + .reverse { header { height: 40px; diff --git a/src/retrospective/index.html b/src/retrospective/index.html index 4a5fc5a..f93f52c 100644 --- a/src/retrospective/index.html +++ b/src/retrospective/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header-no-print-large.html', {"title": "la rétrospective", "subtitle": "Cérémonies scrum", "imageName": "AgileBySII_blanc"}) diff --git a/src/retrospective/retrospective.scss b/src/retrospective/retrospective.scss index 43a6db1..65ef10e 100644 --- a/src/retrospective/retrospective.scss +++ b/src/retrospective/retrospective.scss @@ -10,16 +10,11 @@ } body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--purple); - - #showPreview:checked ~ .reverse .landscape { transform: rotate(90deg) translateX(164px) translateY(164px); width: 29.7cm; height: 21cm; - } - + } .reverse { diff --git a/src/secu-dev/index.html b/src/secu-dev/index.html index 19b2374..8d879f3 100644 --- a/src/secu-dev/index.html +++ b/src/secu-dev/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Développement Web Sécurisé", "subtitle": "Bonnes pratiques générales", "imageName": "@@folder"}) diff --git a/src/secu-dev/secu-dev.scss b/src/secu-dev/secu-dev.scss index dc507ec..85fe1ee 100644 --- a/src/secu-dev/secu-dev.scss +++ b/src/secu-dev/secu-dev.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/sonarqube/index.html b/src/sonarqube/index.html index 9fdd8ba..6db98c4 100644 --- a/src/sonarqube/index.html +++ b/src/sonarqube/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "SonarQube cheat sheet", "subtitle": "Main concepts & metrics.", "imageName": "@@folder"}) diff --git a/src/sonarqube/sonarqube.scss b/src/sonarqube/sonarqube.scss index 7b968ad..c13d9af 100644 --- a/src/sonarqube/sonarqube.scss +++ b/src/sonarqube/sonarqube.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/spring/index.html b/src/spring/index.html index 56837b3..175b334 100644 --- a/src/spring/index.html +++ b/src/spring/index.html @@ -4,89 +4,91 @@ Cheat Sheets - by SII + + - -
-
- home -
-
-
-
Spring Framework cheat Sheets
-
by SII
+ +
+
+ home
+
+
+
Spring Framework cheat Sheets
+
by SII
+
-
- +
+ +
-
-
-
+
- Fork me on GitHub +
-
-

Spring framework

- -
-
-

Spring Boot

-
-
- - -
Spring Boot
-
+ Fork me on GitHub + +
+

Spring framework

+ +
+
+

Spring Boot

+ -
-
+
+ +
+ +
+ - -
- + + diff --git a/src/spring/index.scss b/src/spring/index.scss index fc8c340..5a7e597 100644 --- a/src/spring/index.scss +++ b/src/spring/index.scss @@ -5,16 +5,14 @@ body { margin: 0; - background-color: #e2e2e2; - --blue: #B2BE3A; font-family: 'open-sans', sans-serif; min-width: 740px; header { + background-color: var(--currentColor); display: flex; align-items: center; justify-content: space-between; - background-color: var(--blue); padding: 0 1%; height: 108px; @@ -153,12 +151,12 @@ body { } footer { - background-color:var(--blue); height: 80px; display: flex; align-items: center; justify-content: space-between; position: fixed; + background-color: var(--currentColor); bottom: 0; width: 100%; diff --git a/src/spring/spring-boot/index.html b/src/spring/spring-boot/index.html index 53e7f5c..39460d4 100644 --- a/src/spring/spring-boot/index.html +++ b/src/spring/spring-boot/index.html @@ -6,7 +6,7 @@ - +
@@include('../../../dist/spring/common/first-side/header.html', {"title": "Spring Boot 2 cheat sheet", "subtitle": "", "relativeImagePath": "../", "imageName": "spring-boot"}) diff --git a/src/spring/spring-core/index.html b/src/spring/spring-core/index.html index c43873b..ab1a132 100644 --- a/src/spring/spring-core/index.html +++ b/src/spring/spring-core/index.html @@ -6,7 +6,7 @@ - +
@@include('../../../dist/spring/common/first-side/header.html', {"title": "Spring core cheat sheet", "subtitle": "Container, Dependency and IOC", "relativeImagePath": "../", "imageName": "spring-core"}) diff --git a/src/spring/spring-data/index.html b/src/spring/spring-data/index.html index 3fa85a5..d20d5eb 100644 --- a/src/spring/spring-data/index.html +++ b/src/spring/spring-data/index.html @@ -6,7 +6,7 @@ - +
@@include('../../../dist/spring/common/first-side/header.html', {"title": "Spring Data cheat sheet", "subtitle": "Spring Data, accès aux données sans implémentation", "relativeImagePath": "../", "imageName": "spring-data"}) diff --git a/src/spring/spring-netflix-eureka/index.html b/src/spring/spring-netflix-eureka/index.html index 715f1f2..bd822e3 100644 --- a/src/spring/spring-netflix-eureka/index.html +++ b/src/spring/spring-netflix-eureka/index.html @@ -6,7 +6,7 @@ - +
@@include('../../../dist/spring/common/first-side/header.html', {"title": "Spring Netflix Eureka cheat sheet", "subtitle": "", "relativeImagePath": "../", "imageName": "spring-netflix-eureka"}) diff --git a/src/spring/spring-web/index.html b/src/spring/spring-web/index.html index 1711a48..4d55917 100644 --- a/src/spring/spring-web/index.html +++ b/src/spring/spring-web/index.html @@ -6,7 +6,7 @@ - +
@@include('../../../dist/spring/common/first-side/header.html', {"title": "Spring Web cheat sheet", "subtitle": "MVC, API", "relativeImagePath": "../", "imageName": "spring-web"}) diff --git a/src/spring/spring.scss b/src/spring/spring.scss index 2e698e6..d9e5215 100644 --- a/src/spring/spring.scss +++ b/src/spring/spring.scss @@ -2,30 +2,12 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--green); - main div { img { height: 230px; } } - th { - background-color: lighten(#B2BE3A, 20%); - } - - tr:nth-child(even) {background: #CCC} - tr:nth-child(odd) {background: #FFF} - - tr:nth-child(even) > td:first-child{ - background-color: lighten(#B2BE3A, 40%); - } - - tr:nth-child(odd) > td:first-child{ - background-color: lighten(#B2BE3A, 50%); - } - table { width: 100%; } diff --git a/src/sprint-planning/index.html b/src/sprint-planning/index.html index 4228faf..61578a3 100644 --- a/src/sprint-planning/index.html +++ b/src/sprint-planning/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header-no-print-large.html', {"title": "Sprint Planning", "subtitle": "Cérémonies scrum", "imageName": "AgileBySII_blanc"}) diff --git a/src/sprint-planning/sprint-planning.scss b/src/sprint-planning/sprint-planning.scss index 9df1b95..ccbedcf 100644 --- a/src/sprint-planning/sprint-planning.scss +++ b/src/sprint-planning/sprint-planning.scss @@ -10,10 +10,6 @@ } body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--green); - - #showPreview:checked ~ .reverse .landscape { transform: rotate(90deg) translateX(164px) translateY(164px); width: 29.7cm; diff --git a/src/sprint-review/index.html b/src/sprint-review/index.html index 0fdf402..d8a75db 100644 --- a/src/sprint-review/index.html +++ b/src/sprint-review/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header-no-print-large.html', {"title": "Sprint Review", "subtitle": "Cérémonies scrum", "imageName": "AgileBySII_blanc"}) diff --git a/src/sprint-review/sprint-review.scss b/src/sprint-review/sprint-review.scss index 0df7dc6..ccbedcf 100644 --- a/src/sprint-review/sprint-review.scss +++ b/src/sprint-review/sprint-review.scss @@ -10,10 +10,6 @@ } body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--orange); - - #showPreview:checked ~ .reverse .landscape { transform: rotate(90deg) translateX(164px) translateY(164px); width: 29.7cm; diff --git a/src/stencil/index.html b/src/stencil/index.html index 2a63f2b..8634d7e 100644 --- a/src/stencil/index.html +++ b/src/stencil/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Stencil cheat sheet", "subtitle": "A Compiler for Web Components.", "imageName": "@@folder"}) diff --git a/src/stencil/stencil.scss b/src/stencil/stencil.scss index 81e6c7e..34fdd72 100644 --- a/src/stencil/stencil.scss +++ b/src/stencil/stencil.scss @@ -1,7 +1,5 @@ /* put your all custom css rules here */ /* you must not change other scss files */ -body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); +body { } \ No newline at end of file diff --git a/src/templates/index.html b/src/templates/index.html index aaf3983..d527ceb 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "<%= name %> cheat sheet", "subtitle": "sous titre, une description.", "imageName": "@@folder"}) diff --git a/src/templates/style.scss b/src/templates/style.scss index d7973b5..377ce03 100644 --- a/src/templates/style.scss +++ b/src/templates/style.scss @@ -2,8 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--{{COLOR}}); main div { img { diff --git a/src/tensorflow/index.html b/src/tensorflow/index.html index 3e3edda..4c670a1 100644 --- a/src/tensorflow/index.html +++ b/src/tensorflow/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "TensorFlow cheat sheet", "subtitle": "Machine Learning framework", "imageName": "@@folder"}) diff --git a/src/tensorflow/tensorflow.scss b/src/tensorflow/tensorflow.scss index af8cba9..ba831ae 100644 --- a/src/tensorflow/tensorflow.scss +++ b/src/tensorflow/tensorflow.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--orange); - main div { img { height: 230px; diff --git a/src/typescript/index.html b/src/typescript/index.html index c4e4682..b3867f7 100644 --- a/src/typescript/index.html +++ b/src/typescript/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "TypeScript cheat sheet", "subtitle": "JavaScript that scales.", "imageName": "@@folder"}) diff --git a/src/typescript/typescript.scss b/src/typescript/typescript.scss index 65706bd..377ce03 100644 --- a/src/typescript/typescript.scss +++ b/src/typescript/typescript.scss @@ -2,8 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); main div { img { diff --git a/src/vue-cli/index.html b/src/vue-cli/index.html index 116f1b1..43e91d9 100644 --- a/src/vue-cli/index.html +++ b/src/vue-cli/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Vue Cli cheat sheet", "subtitle": "Vue CLI for Vue.js applications", "imageName": "@@folder"}) diff --git a/src/vue-cli/vue-cli.scss b/src/vue-cli/vue-cli.scss index 65706bd..ffd15ef 100644 --- a/src/vue-cli/vue-cli.scss +++ b/src/vue-cli/vue-cli.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: var(--blue); - main div { img { height: 230px; diff --git a/src/warp10/index.html b/src/warp10/index.html index f08edfb..8bad7fb 100644 --- a/src/warp10/index.html +++ b/src/warp10/index.html @@ -6,7 +6,7 @@ - +
@@include('../../dist/common/first-side/header.html', {"title": "Warp10 cheat sheet", "subtitle": "GeoTimeSeries® manipulation script.", "imageName": "@@folder"}) diff --git a/src/warp10/warp10.scss b/src/warp10/warp10.scss index d5d01ea..6617217 100644 --- a/src/warp10/warp10.scss +++ b/src/warp10/warp10.scss @@ -2,9 +2,6 @@ /* you must not change other scss files */ body { - // available colors are: blue, green, purple, orange and grey - --currentColor: #28b5d8; - main div { img { height: 224px;