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

Added and modified icons #57

Open
wants to merge 1 commit into
base: master
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
8 changes: 8 additions & 0 deletions edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ <h1>Edit Profile Information</h1>
<label for="medium">Medium:</label>
<input class="form-control" id="medium" type="text">
</div>
<div class="preference">
<label for="dev">Dev.to:</label>
<input class="form-control" id="dev" type="text">
</div>
<div class="preference">
<label for="text">Twitter:</label>
<input class="form-control" id="twitter" type="text" >
Expand All @@ -152,6 +156,10 @@ <h1>Edit Profile Information</h1>
<label for="gitlab">Gitlab:</label>
<input class="form-control" id="gitlab" type="text" >
</div>
<div class="preference">
<label for="bitbucket">Bitbucket:</label>
<input class="form-control" id="bitbucket" type="text" >
</div>
<div class="preference">
<label for="quora">Quora:</label>
<input class="form-control" id="quora" type="text">
Expand Down
1 change: 1 addition & 0 deletions images/dev-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 31 additions & 16 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
margin: 0;
min-height: 180px;
padding: 0;
width: 550px;
width: 640px;
}

h1 {
Expand All @@ -32,10 +32,6 @@
text-decoration: none;
}

img {
width: 30px;
}

.modal-header {
align-items: center;
border-bottom: 0.5px solid #dadada;
Expand All @@ -58,6 +54,7 @@
.logo-icon {
vertical-align: text-bottom;
margin-right: 12px;
width: 30px;
}

.flex-container {
Expand Down Expand Up @@ -106,6 +103,15 @@
.flex:hover div{
visibility: visible;
}
#insta {
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.dev{
width: 40px;
}
</style>

</head>
Expand All @@ -129,53 +135,62 @@ <h1 class="logo">
<div class="flex-container">
<div class="flex">
<a id="website_link" href="#!" target="_blank">
<i class="fa fa-globe" style="color:darksalmon "></i>
<i class="fa fa-globe" style="color: #4c8bf5 "></i>
</a>
</div>
<div class="flex">
<a id="linkedin_link" href="#!" target="_blank">
<i class="fa fa-linkedin" style="color:rgb(52, 92, 177) "></i>
<i class="fa fa-linkedin" style="color: #2867B2 "></i>
</a>
</div>
<div class="flex">
<a id="medium_link" href="#!" target="_blank">
<i class="fa fa-medium" style="color:darkblue "></i>
<i class="fa fa-medium" style="color:black "></i>
</a>
</div>
<div class="flex">
<a id="twitter_link" href="#!" target="_blank">
<i class="fa fa-twitter" style="color:blue "></i>
<i class="fa fa-twitter" style="color:#00acee "></i>
</a>
</div>
<div class="flex">
<a id="github_link" href="#!" target="_blank">
<i class="fa fa-github" style="color: rgb(46, 180, 28) "></i>
<i class="fa fa-github" style="color:black "></i>
</a>
</div>
<div class="flex">
<a id="stackoverflow_link" href="#!" target="_blank">
<i class="fa fa-stack-overflow" style="color:palevioletred "></i>
<i class="fa fa-stack-overflow" style="color:#F67A00 "></i>
</a>
</div>
<div class="flex">
<a id="quora_link" href="#!" target="_blank">
<i class="fa fa-quora" style="color:red "></i>
<i class="fa fa-quora" style="color:#a62100 "></i>
</a>
</div>
<div class="flex">
<a id="gitlab_link" href="#!" target="_blank">
<i class="fa fa-gitlab" style="color:#3c797b "></i>

<i class="fa fa-gitlab" style="color:#e24329 "></i>
</a>
</div>
<div class="flex">
<a id="bitbucket_link" href="#!" target="_blank">
<i class="fa fa-bitbucket" style="color:#253858 "></i>
</a>
</div>
<div class="flex">
<a id="dev-link" href="#!" target="_blank">
<img class="dev" src="images/dev-logo.svg" />
</a>
</div>
<div class="flex">
<a id="facebook_link" href="#!" target="_blank">
<i class="fa fa-facebook" style="color: darkblue"></i>
<i class="fa fa-facebook" style="color:#3b5998"></i>
</a>
</div>
<div class="flex">
<a id="instagram_link" href="#!" target="_blank">
<i class="fa fa-instagram" style="color:violet "></i>
<i class="fa fa-instagram" id = "insta"></i>
</a>
</div>
</div>
Expand Down