Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 26 additions & 22 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
}

body {
background-image: linear-gradient(90deg, rgba(255,92,92,1) 10%, rgb(61, 150, 204) 90%);
background-image: linear-gradient(90deg, rgb(121, 32, 32) 10%, rgb(98, 28, 145) 90%);
font-family: Montserrat, sans-serif;

display: flex;
align-items: center;
justify-content: center;
Expand All @@ -33,35 +33,37 @@ p {
}

.card-container {
background-color: #113044;
border-radius: 25px;
box-shadow: 10px 10px 15px rgba(0,0,0,0.35);
color: #B3B8CD;
background-color: #28c2ec;
border-radius: 50px;
box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.35);
color: #282a32;
padding: 30px 0 0;
position: relative;
width: 350px;
max-width: 100%;
max-width: 350px;
text-align: center;
margin: 20px 0;
overflow: hidden;
}


.card-container img {
border: 1px solid rgba(255,92,92,1);
border: 2px dashed rgb(255, 255, 255);
border-radius: 50%;
padding: 7px;
height: 150px;
width: 150px;
object-fit: cover;
object-position: left 45% top 50%;
height: 200px;
width: 200px;
}

.icons i {
background-color: rgba(255,92,92,1);
border: 1px solid rgba(255,92,92,1);
background-color: rgb(36, 220, 88);
border: 1px solid rgb(36, 220, 88);
border-radius: 50%;
color: #fff;

font-size:x-large;
font-size: x-large;
padding: 10px 10px;
}

Expand All @@ -71,23 +73,25 @@ p {


.hashtags {
background-color: #113044;
text-align: left;
background-color: #ffffff;
font-size: xx-large;
text-align: center;
padding: 15px;
margin-top: 30px;
margin-top: 15px;
}

.hashtags ul {
list-style-type: none;
margin: 0;
margin-top: 5px;
margin-bottom: 10px;
padding: 0;
}

.hashtags ul li {
border: 1px solid rgba(255,92,92,1) ;
border: 2px dashed rgb(36, 220, 88);
border-radius: 2px;
display: inline-block;
font-size: 12px;
margin: 0 7px 7px 0;
padding: 7px;
}
font-size: 16px;
margin: 0 2px 2px 0;
padding: 2px;
}
50 changes: 26 additions & 24 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,33 @@
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.0/css/all.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>

<body>

<div class="card-container">
<img src="img/Marc.png" alt="user"/>
<h3>Saqib Bhatti</h3>
<h6><i class="fas fa-map-marker"></i> Düsseldorf</h6>
<p>Dumpfbacke</p>
<div class="icons">
<!-- Font Awesome Icons -->
<a href="https://www.codingschule.de"><i class="fas fa-home"></i></a>
<a href="mailto:marc@codingschule.de"><i class="fas fa-envelope"></i></a>
<a href="https://github.com/mblog"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/mb_log"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/marc-bertram-2a0811b4/"><i class="fab fa-linkedin"></i></a>
</div>
<div class="hashtags">
<h6>Hashtags</h6>
<ul>
<li>#Codingschule</li>
<li>#IT</li>
<li>#Wirtschaftsinformatik</li>
<li>#Programmieren</li>
<li>#DigitaleBildung</li>
</ul>
<div class="card-container">
<img src="img/Tim.jpg" alt="user" />
<h3>Tim Heimes</h3>
<h6><i class="fas fa-map-marker"></i> Vallendar</h6>
<p>Quereinstieg ist mein Hobby</p>
<div class="icons">
<!-- Font Awesome Icons -->
<a href="https://www.codingschule.de"><i class="fas fa-home"></i></a>
<a href="mailto:timheimes53@gmail.com"><i class="fas fa-envelope"></i></a>
<a href="https://github.com/mblog"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/mb_log"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/tim-heimes"><i class="fab fa-linkedin"></i></a>
</div>
<div class="hashtags">
<h6>Hashtags</h6>
<ul>
<li>#Codingschule</li>
<li>#IT</li>
<li>#Quereinstieg</li>
<li>#Programmieren lernen</li>
<li>#Remote</li>
</ul>
</div>
</div>
</div>
</body>
</html>

</html>