Skip to content

Commit

Permalink
Merge pull request #2 from chiragtaneja04/main
Browse files Browse the repository at this point in the history
Extension for Codevisors Community
  • Loading branch information
AnkushSinghGandhi authored Oct 2, 2021
2 parents 89bcbdb + 5fd5e6a commit c1b8b7c
Show file tree
Hide file tree
Showing 5 changed files with 165 additions and 0 deletions.
Binary file added icon_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "Code Visors",
"version": "1.0",
"manifest_version": 2,
"description": "All Social Media of CodeVisors",
"icons": {
"128": "icon_128.png"
},
"browser_action": {
"default_icon": "icon_128.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab"
]
}
76 changes: 76 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeVisors Launcher</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />

<!-- CSS -->
<link rel="stylesheet" href="style.css">
</head>

<body>

<div class="modal-header">
<h1 class="logo">
<img src="./images/logo.png" alt="Codevisors Launcher" class="logo-icons">
<span>Code Visors</span>
</h1>
</div>

<div class="modal-content">

<p>Social Media Profile Launcher</p>

</div>

<div class="modal-icons">
<div class="flex-container">

<div class="flex">
<a href="https://github.com/CodeVisors" target="_blank">
<i class="fab fa-github"></i>

</a>
</div>

<div class="flex">
<a href="https://ankushgandhi.com/" target="_blank">
<i class="far fa-user-circle"></i>
</a>
</div>
<div class="flex">
<a href="https://in.linkedin.com/in/ankushsinghgandhi" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</div>

<div class="flex">
<a href="https://twitter.com/ankushsgandhi" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</div>

<div class="flex">
<a href="https://www.youtube.com/techxtreme" target="_blank">
<i class="fab fa-youtube"></i>
</a>
</div>


</div>
</div>

</body>

</html>
73 changes: 73 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
html,
body {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
margin: 0;
min-height: 180px;
padding: 0;
width: 384px;
}

h1 {
font-family: 'Ubuntu', sans-serif;
font-size: 25px;
font-weight: 400;
margin: 0;
color: #30a14e;
}

h1 span{
margin-top: 0;
}


img {
width: 50px;
}

.modal-header {
align-items: center;
border-bottom: 0.5px solid #dadada;
}

.modal-content {
padding: 0 30px;
}

.modal-icons {
border-top: 0.5px solid #dadada;
height: 50px;
width: 100%;
}

.logo {
padding: 16px;
}

.logo-icon {
vertical-align: text-bottom;
margin-right: 12px;
}

.flex-container {
display: flex;
justify-content: space-between;
padding: 10px 22px;
}

.flex {
opacity: 1;
transition: opacity 0.2s ease-in-out;
width: 120px;
}

.flex:hover {
opacity: 0.4;
}

.flex .fas,
.fab,
.far {
font-size: 35px;
color: #30a14e;
}

0 comments on commit c1b8b7c

Please sign in to comment.