Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
PtPrashantTripathi authored Jul 21, 2023
1 parent dcf2426 commit bd7f5a0
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 59 deletions.
30 changes: 15 additions & 15 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "Gitanest",
"description": "gives Bhagavad Gita Slok whenever you click it!",
"version": "21.10.1.1",
"manifest_version": 2,

"browser_action": {
"default_popup": "popup.html",
"default_icon": "logo.png"
},
"icons": {
"128": "logo.png"
},
"permissions": ["activeTab"]
}
{
"name": "Gitanest",
"description": "gives Bhagavad Gita Slok whenever you click it!",
"version": "21.10.1.1",
"manifest_version": 2,

"browser_action": {
"default_popup": "popup.html",
"default_icon": "logo.png"
},
"icons": {
"128": "logo.png"
},
"permissions": ["activeTab"]
}
34 changes: 17 additions & 17 deletions popup.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<!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>Bhagavad Gita Slok</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<p id="sp">slok is loading...</p>
<p>It's chapter number.verse number and meaning are :-</p>
<p id="mp">loading...</p>
<div class="footer">Made by Chirag Singhal</div>
<script src="script.js"></script>
</body>
</html>
<!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>Bhagavad Gita Slok</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<p id="sp">slok is loading...</p>
<p>It's chapter number.verse number and meaning are :-</p>
<p id="mp">loading...</p>
<div class="footer">Made by Chirag Singhal</div>
<script src="script.js"></script>
</body>
</html>
54 changes: 27 additions & 27 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
body {
width: 750px;
height: 350px;
background-color: aliceblue;
display: flex;
justify-content: center;
}

p {
display: inner-flex;
margin: auto 10px;
font-size: 25px;
color: blue;
border-radius: 10px;
border: 1px solid lightblue;
padding: 10px;
}

#sp,
#mp {
font-weight: bold;
}

.footer {
position: fixed;
bottom: 0;
}
body {
width: 750px;
height: 350px;
background-color: aliceblue;
display: flex;
justify-content: center;
}

p {
display: inner-flex;
margin: auto 10px;
font-size: 25px;
color: blue;
border-radius: 10px;
border: 1px solid lightblue;
padding: 10px;
}

#sp,
#mp {
font-weight: bold;
}

.footer {
position: fixed;
bottom: 0;
}

0 comments on commit bd7f5a0

Please sign in to comment.