add profiles

This commit is contained in:
GZod01 2024-06-11 12:24:20 +02:00
parent ac3ba1ee4d
commit 880134b91b
52 changed files with 115 additions and 146 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
assets/profiles/camille.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

BIN
assets/profiles/damien.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
assets/profiles/elina.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
assets/profiles/franck.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View file

@ -0,0 +1 @@
curl $1 -o "$2.jpg"

BIN
assets/profiles/hadrien.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

BIN
assets/profiles/houda.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

BIN
assets/profiles/katia.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
assets/profiles/louise.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
assets/profiles/lucy.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

BIN
assets/profiles/mathieu.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
assets/profiles/mathis.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
assets/profiles/mohamed.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
assets/profiles/nadege.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

BIN
assets/profiles/quentin.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
assets/profiles/timothe.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

BIN
assets/profiles/unknown.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View file

@ -22,7 +22,15 @@
overflow: hidden;
img {
width: auto;
width:100%!important;
object-fit: cover;
height: 10em;
border-radius:10px;
&#noncover{
background:#e1e1e1;
width:auto;
object-fit: contain;
}
}
}
.team-item-description {

View file

@ -29,3 +29,31 @@ $responsive-large: 1500px;
@import "layouts/transitions";
@import "layouts/contact-card";
@import "layouts/map";
/* ===== Scrollbar CSS ===== */
/* Firefox */
// * {
// scrollbar-width: thin;
// scrollbar-color: #2980b9 #c7c7c7;
// }
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 10px;
z-index: 10;
right:0;
}
*::-webkit-scrollbar-track {
display: none;
}
*::-webkit-scrollbar-track-piece{
display: none;
}
*::-webkit-scrollbar-thumb {
background: #3498db;
border-radius: 5px;
}
*::-webkit-scrollbar-thumb:hover{
background: #2980b9;
}