Marketing website improvements (#3169)

* Website improvement

* Improve website design

* Start writing script for user guide

* Begin adding user guide
This commit is contained in:
Félix Malfait
2023-12-27 16:14:42 +01:00
committed by GitHub
parent c08d8ef838
commit 3d5a364e29
57 changed files with 478 additions and 105 deletions

View File

@ -0,0 +1,26 @@
*, *::before, *::after {
box-sizing: border-box;
font-smooth: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
box-sizing: border-box;
padding: 0;
margin: 0;
word-wrap: break-word;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
a {
color: rgb(129, 129, 129);
&:hover {
color: #000;
}
}