Change colours. Move style to popup.css
This commit is contained in:
parent
461f63e696
commit
baf35ceceb
2 changed files with 71 additions and 58 deletions
46
popup.css
Normal file
46
popup.css
Normal file
|
@ -0,0 +1,46 @@
|
|||
h1 {
|
||||
font-size: 18px;
|
||||
color: #AAB8C2;
|
||||
margin-bottom: 15px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
#popup {
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
label, #savedChanges span {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.row {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#bottomRow {
|
||||
margin-top: 25px !important;
|
||||
}
|
||||
|
||||
#saveButton {
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
background-color: #1DA1F2;
|
||||
border-radius: 5px;
|
||||
border: none;
|
||||
color: #fff;
|
||||
padding: 10px 5px;
|
||||
}
|
||||
|
||||
#banner {
|
||||
background-color: #14171A;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 10px;
|
||||
}
|
83
popup.html
83
popup.html
|
@ -3,70 +3,37 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
h1 {
|
||||
font-size: 21px;
|
||||
color: #292f33;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#popup {
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
label, #savedChanges span {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
#popup > div {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.row {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#bottomRow {
|
||||
margin-top: 25px !important;
|
||||
}
|
||||
|
||||
#saveButton {
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
background-color: #55acee;
|
||||
border-radius: 5px;
|
||||
border: none;
|
||||
color: #fff;
|
||||
padding: 10px 5px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="popup.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="popup">
|
||||
<h1>Preferences</h1>
|
||||
|
||||
<div class="row">
|
||||
<label for="hidelikes">Hide likes?</label>
|
||||
<input type="checkbox" name="hidelikes" id="hideLikes">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
<label for="hidereplies">Hide replies?</label>
|
||||
<input type="checkbox" name="hidereplies" id="hideReplies">
|
||||
<div id="banner">
|
||||
<h1>Preferences</h1>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<label for="hideretweets">Hide re-tweets?</label>
|
||||
<input type="checkbox" name="hideretweets" id="hideRetweets">
|
||||
</div>
|
||||
|
||||
<div class="row" id="savedChanges" style="display: none">
|
||||
<span style="color: green">Your changes have been saved. You must refresh your page before they take effect.</span>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div>
|
||||
<label for="hidelikes">Hide likes?</label>
|
||||
<input type="checkbox" name="hidelikes" id="hideLikes">
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<button type="button" id="saveButton">Save changes</button>
|
||||
<div class="row">
|
||||
<label for="hidereplies">Hide replies?</label>
|
||||
<input type="checkbox" name="hidereplies" id="hideReplies">
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<label for="hideretweets">Hide re-tweets?</label>
|
||||
<input type="checkbox" name="hideretweets" id="hideRetweets">
|
||||
</div>
|
||||
|
||||
<div class="row" id="savedChanges" style="display: none">
|
||||
<span style="color: green">Your changes have been saved. You must refresh your page before they take effect.</span>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<button type="button" id="saveButton">Save changes</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="popup.js"></script>
|
||||
|
|
Loading…
Add table
Reference in a new issue