-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from chiragtaneja04/main
Extension for Codevisors Community
- Loading branch information
Showing
5 changed files
with
165 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |