This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
016c001
commit 383d3d2
Showing
2 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
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,42 @@ | ||
html { | ||
box-sizing: border-box; | ||
} | ||
*, | ||
*:before, | ||
*:after { | ||
box-sizing: inherit; | ||
} | ||
|
||
body { | ||
font-family: arial; | ||
font-size: .8em; | ||
color: #ffffff; | ||
min-width: 16em; | ||
margin: .1em .75em; | ||
background-color: #202020; | ||
} | ||
|
||
/* Custom header */ | ||
|
||
.header { | ||
background-color: #FFDF01; | ||
color: black; | ||
width: 200px; | ||
height: 5px; | ||
display: table-cell; | ||
vertical-align: middle; | ||
} | ||
|
||
#options { | ||
margin-bottom: .5em; | ||
} | ||
|
||
#options label { | ||
margin-bottom: .75em; | ||
} | ||
|
||
#options label:after { | ||
content: ""; | ||
display: block; | ||
margin-bottom: .75em; | ||
} |
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 |
---|---|---|
@@ -1 +1,19 @@ | ||
<div>Extension made by: <a href="https://github.com/fernandomireles" title="Fernando Mireles">Fernando Mireles</a>.</div> | ||
<!-- <div>Extension made by: <a href="https://github.com/fernandomireles" title="Fernando Mireles">Fernando Mireles</a>.</div> | ||
--> | ||
|
||
<!doctype html> | ||
|
||
<head> | ||
<title>test1</title> | ||
|
||
<meta charset="utf-8"> | ||
<link rel="stylesheet" href="popup.css"> | ||
<script src="options.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div class="header"> | ||
<h1 align="center">Test</h1> | ||
</div> | ||
<div id="options"> | ||
</body> |