diff --git a/assets/img/Profile_Image2.png b/assets/img/Profile_Image2.png new file mode 100644 index 0000000..23b78bf Binary files /dev/null and b/assets/img/Profile_Image2.png differ diff --git a/styles/UeberUns.module.css b/styles/UeberUns.module.css new file mode 100644 index 0000000..bb9f0a4 --- /dev/null +++ b/styles/UeberUns.module.css @@ -0,0 +1 @@ +.teamContainer{width:100%;display:flex;justify-content:space-around;align-items:center;flex-wrap:wrap}.teamContainer div{height:300px;width:250px;border:1px solid #000;border-radius:10px;text-align:center}.teamContainer div img{-o-object-fit:cover;object-fit:cover;width:100%;height:75%;border-top-left-radius:10px;border-top-right-radius:10px}.teamContainer div h2{margin:0;padding:0}.teamContainer div h3{margin:0;padding:0;color:gray;font-weight:normal} \ No newline at end of file diff --git a/styles/UeberUns.module.scss b/styles/UeberUns.module.scss new file mode 100644 index 0000000..6175db8 --- /dev/null +++ b/styles/UeberUns.module.scss @@ -0,0 +1,38 @@ +.teamContainer { + width: 100%; + + display: flex; + justify-content: space-around; + align-items: center; + flex-wrap: wrap; + + div { + height: 300px; + width: 250px; + + border: 1px solid black; + border-radius: 10px; + + text-align: center; + + img { + object-fit: cover; + width: 100%; + height: 75%; + border-top-left-radius: 10px; + border-top-right-radius: 10px; + } + h2 { + // margin: 0 1rem; + margin: 0; + padding: 0; + } + h3 { + // margin: -0.5rem 1rem; + margin: 0; + padding: 0; + color: grey; + font-weight: normal; + } + } +}