forked from AntaresSimulatorTeam/antares-doc
-
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 #1 from AntaresSimulatorTeam/new-doc
New doc
- Loading branch information
Showing
45 changed files
with
326 additions
and
4,303 deletions.
There are no files selected for viewing
This file was deleted.
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,130 @@ | ||
body { | ||
font-family: 'Inter', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
background-color: #112446; | ||
color: #fff; | ||
} | ||
header { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
padding: 16px 0; | ||
background-color: white; | ||
position: relative; | ||
z-index: 2; | ||
} | ||
header img { | ||
width: 200px; | ||
margin-right: 32px; | ||
} | ||
.title { | ||
color: #112446; | ||
} | ||
.introduction p { | ||
position: relative; | ||
z-index: 2; | ||
text-align: center; | ||
width: 80%; | ||
margin: 32px auto; | ||
} | ||
#particles-js { | ||
position: absolute; | ||
top: 0; | ||
width: 100%; | ||
height: 180vh; | ||
z-index: 1; | ||
} | ||
.parent { | ||
position: relative; | ||
z-index: 2; | ||
width: 80%; | ||
height: 80vh; | ||
margin: 0 auto; | ||
margin-bottom: 16px; | ||
|
||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
grid-template-rows: repeat(4, 1fr); | ||
grid-column-gap: 32px; | ||
grid-row-gap: 32px; | ||
} | ||
.parent div { | ||
border: 1px solid #fff; | ||
background-color: #112446; | ||
padding: 8px; | ||
transition: scale .2s ease, box-shadow .2s ease; | ||
border-radius: 8px; | ||
} | ||
.parent div:hover { | ||
scale: 1.01; | ||
box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.5); | ||
} | ||
.parent div a { | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
grid-template-rows: 72px 1fr; | ||
color: white; | ||
text-decoration: none; | ||
height: 100%; | ||
} | ||
.div1 { | ||
grid-row: 1; | ||
grid-column: 1; | ||
} | ||
.div2 { | ||
grid-row: 1; | ||
grid-column: 2; | ||
} | ||
.div3 { | ||
grid-row: 1; | ||
grid-column: 3; | ||
} | ||
.div4 { | ||
grid-row: 2; | ||
grid-column: 1; | ||
} | ||
.div5 { | ||
grid-row: 2; | ||
grid-column: 2; | ||
} | ||
.div6 { | ||
grid-row: 2; | ||
grid-column: 3; | ||
} | ||
.div7 { | ||
grid-row: 3; | ||
grid-column: 1; | ||
} | ||
.div8 { | ||
grid-row: 3; | ||
grid-column: 2; | ||
} | ||
.div9 { | ||
grid-row: 3; | ||
grid-column: 3; | ||
} | ||
.div10 { | ||
grid-row: 4; | ||
grid-column: 1; | ||
} | ||
.img { | ||
width: 100%; | ||
height: auto; | ||
margin: auto 0; | ||
grid-row: 1 / 3; | ||
grid-column: 1; | ||
background-color: white; | ||
} | ||
.subtitle { | ||
grid-row: 1; | ||
grid-column: 2; | ||
text-align: center; | ||
} | ||
.description { | ||
grid-row: 2; | ||
grid-column: 2; | ||
padding: 16px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,91 @@ | ||
{ | ||
"particles": { | ||
"number": { | ||
"value": 40, | ||
"density": { | ||
"enable": true, | ||
"value_area": 800 | ||
} | ||
}, | ||
"color": { | ||
"value": "#ff9800" | ||
}, | ||
"shape": { | ||
"type": "circle", | ||
"stroke": { | ||
"width": 0, | ||
"color": "#000000" | ||
}, | ||
"polygon": { | ||
"nb_sides": 5 | ||
}, | ||
"image": { | ||
"src": "img/github.svg", | ||
"width": 100, | ||
"height": 100 | ||
} | ||
}, | ||
"opacity": { | ||
"value": 0.8, | ||
"random": false, | ||
"anim": { | ||
"enable": false, | ||
"speed": 1, | ||
"opacity_min": 0.1, | ||
"sync": false | ||
} | ||
}, | ||
"size": { | ||
"value": 7, | ||
"random": true, | ||
"anim": { | ||
"enable": false, | ||
"speed": 50, | ||
"size_min": 0.1, | ||
"sync": false | ||
} | ||
}, | ||
"line_linked": { | ||
"enable": true, | ||
"distance": 300, | ||
"color": "#ff9800", | ||
"opacity": 0.7, | ||
"width": 1 | ||
}, | ||
"move": { | ||
"enable": true, | ||
"speed": 5, | ||
"direction": "none", | ||
"random": false, | ||
"straight": false, | ||
"out_mode": "out", | ||
"bounce": false, | ||
"attract": { | ||
"enable": false, | ||
"rotateX": 600, | ||
"rotateY": 1200 | ||
} | ||
} | ||
}, | ||
"interactivity": { | ||
"detect_on": "canvas", | ||
"events": { | ||
"onhover": { | ||
"enable": false, | ||
"mode": "repulse" | ||
}, | ||
"onclick": { | ||
"enable": false, | ||
"mode": "push" | ||
}, | ||
"resize": true | ||
}, | ||
"modes": { | ||
"repulse": { | ||
"distance": 150, | ||
"duration": 1 | ||
} | ||
} | ||
}, | ||
"retina_detect": true | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.