58 lines
1.0 KiB
PHP
58 lines
1.0 KiB
PHP
<style>
|
|
section {
|
|
display: grid;
|
|
margin: 0px;
|
|
width: 100vw;
|
|
grid-template-columns: auto auto auto;
|
|
grid-auto-rows: auto;
|
|
grid-gap: 10px;
|
|
gap: 10px;
|
|
min-height: 100vh;
|
|
justify-items: center;
|
|
text-align: center;
|
|
|
|
>* {
|
|
/* starts at column 2 and spans 1 column */
|
|
grid-column: 2 / span 1;
|
|
}
|
|
|
|
>.grid_full_width {
|
|
/* starts at column 1 and spans all 3 columns */
|
|
grid-column: 1 / span 3;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
place-content: center;
|
|
|
|
h1 {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
article {
|
|
text-align: left;
|
|
}
|
|
|
|
.banner {
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<?php include 'modules/language.html'; ?>
|
|
|
|
<?php include 'modules/hero.html'; ?>
|
|
|
|
<?php include 'modules/cv.html'; ?>
|
|
|
|
<?php include 'modules/projects.html'; ?>
|
|
|
|
<?php include 'modules/infos.html'; ?>
|
|
|
|
</div>
|