-
-
Notifications
You must be signed in to change notification settings - Fork 9
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 #17 from gustavomtborges/add-change-font-size
feat: support changing font size
- Loading branch information
Showing
3 changed files
with
58 additions
and
37 deletions.
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
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,35 +1,36 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<title>Popup</title> | ||
<link rel="stylesheet" type="text/css" href="./popup.css" /> | ||
</head> | ||
|
||
<head> | ||
<title>Popup</title> | ||
<link rel="stylesheet" type="text/css" href="./popup.css" /> | ||
</head> | ||
<body> | ||
<form> | ||
<h1 class="title"> | ||
<img class="logo" src="images/logo-wide.png" /> | ||
</h1> | ||
|
||
<body> | ||
<form> | ||
<h1 class="title"> | ||
<img class="logo" src="images/logo-wide.png" /> | ||
</h1> | ||
<div class="input-field"> | ||
<input id="font_family" class="control" list="font_family_list" /> | ||
<datalist id="font_family_list"> </datalist> | ||
</div> | ||
|
||
<div class="input-field"> | ||
<input id="font_family" class="control" list="font_family_list"> | ||
<datalist id="font_family_list"> | ||
</datalist> | ||
</div> | ||
<div class="input-field"> | ||
<input id="fonts_weight" class="control" list="fonts_weight_list" /> | ||
<datalist id="fonts_weight_list"> </datalist> | ||
</div> | ||
|
||
<div class="input-field"> | ||
<input id="fonts_weight" class="control" list="fonts_weight_list"> | ||
<datalist id="fonts_weight_list"> | ||
</datalist> | ||
</div> | ||
<div class="input-field"> | ||
<input id="fonts_size" class="control" placeholder="16px, 1em, 1.2rem" /> | ||
</div> | ||
|
||
<div class="checkbox-field"> | ||
<input type="checkbox" id="indentGuides" class="control" /> | ||
<label for="indentGuides" class="label">Hide indentation guides</label> | ||
</div> | ||
</form> | ||
<div class="checkbox-field"> | ||
<input type="checkbox" id="indentGuides" class="control" /> | ||
<label for="indentGuides" class="label">Hide indentation guides</label> | ||
</div> | ||
</form> | ||
|
||
<script src="./popup.js"></script> | ||
</body> | ||
</html> | ||
<script src="./popup.js"></script> | ||
</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