Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

profile_card_kanchi #161

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
21 changes: 21 additions & 0 deletions Code/Kanchi/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Diya Vijay

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
7 changes: 7 additions & 0 deletions Code/Kanchi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<div align="center"><img src="https://readme-typing-svg.herokuapp.com?color=00A6A6&size=25&center=true&vCenter=true&width=450&height=30&lines=Fork+it,+clone+it,+set+it+up+and;Let's+get+started!"/>
</div>

# Profile-Card Template
This repo will help you to create your profile card. Here below is the preview of the profile card. You can play around with the designs, backgrounds and colors.

![github](https://user-images.githubusercontent.com/87236107/193006036-788e6cbe-650f-4ea4-b730-ac30b5f8b9f3.png)
27 changes: 27 additions & 0 deletions Code/Kanchi/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="container">
<div class="card" data-tilt>
<img src="https://bestprofilepictures.com/wp-content/uploads/2021/04/Cool-Profile-Picture-986x1024.jpg"> <!-- You can change progile picture from here -->
<h2><\Name></h2> <!-- Update your name-->
<p><\Headline></p> <!-- Write headline here -->
<div class="links">
<a href="https://twitter.com/Kanchi7878"><img src="https://img.icons8.com/color/344/twitter-circled--v1.png"></a> <!-- add your twitter profile link -->
<a href="https://github.com/kanchi12P"><img src="https://img.icons8.com/color/344/github--v1.png"></a> <!-- add your github profile link-->
<a href="https://www.linkedin.com/in/kanchi-pardhi-722a92205/"><img src="https://img.icons8.com/color/344/linkedin-circled--v5.png"></a> <!-- add your LinkedIn profile link -->
</div>
<a href="mailto:[email protected]" class="btn">Contact me</a> <!-- add your Gmail id here -->
</div>
</div>

<script src="vanilla-tilt.js"></script>

</body>
</html>
76 changes: 76 additions & 0 deletions Code/Kanchi/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

.container{
width: 100%;
height: 100vh;
background-image: url(https://1.bp.blogspot.com/-fyF-OXXEBBY/X1altgmlwQI/AAAAAAAA66s/KVb5Fjlb_f41xu_pEjq5VpDhRWr2QbJFACLcBGAsYHQ/s2560/hexagon-blender-4k-22-3840x2160.jpg); /* You can change background here*/
background-position: center;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}

.card{
width: 90%;
max-width: 440px;
color: #fff;
text-align: center;
padding: 50px 35px;
border: 1px solid rgba(255, 255, 255, 0.3);
background: rgba(255,255,255,0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0,0,0,0.1);
backdrop-filter: blur(5px);
}

.card img{
width: 140px;
border-radius: 50%;
font-weight: 600;
margin-top: 20px;
}

.card p{
font-size: 18px;
margin: 10px auto;
max-width: 330px;
}

.card .links img{
width: 40px;
border-radius: 50%;
margin: 10px 5px;
transition: background 0.5s;
}

.card .links img:hover{
background: #ffffff;
box-shadow: 0 0 10px rgb(169, 205, 235);
}

.btn{
text-decoration: none;
display: inline-block;
font-size: 18px;
font-weight: 500;
background-color: transparent;
border: 1px solid white;
color: #fff;
padding: 10px 30px;
border-radius: 30px;
margin: 30px 0 10px;
}

.btn:hover{
cursor: pointer;
background-color: white;
font-weight: medium;
box-shadow: 0 0 10px rgb(169, 205, 235);
color: #137570;
}
Loading