-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added many new accented letters: now it supports 66 letters (new 40 letters) - Some improvements - New icon
- Loading branch information
Showing
20 changed files
with
258 additions
and
198 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,33 +1,41 @@ | ||
<!--- | ||
Created by Saverio Morelli - saveriomorelli.com | ||
version 1.2 - last update 2019-12-09 | ||
---> | ||
<html> | ||
<head> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<link rel="stylesheet" href="./css/accentedletters.css"/> | ||
</head> | ||
<link rel="stylesheet" href="./css/accentedletters.css" /> | ||
</head> | ||
|
||
<body> | ||
<div id="popup-content"> | ||
<div id="titles"> | ||
<input type="button" class="section_title" id="lowercase" value="Lowercase" /><input type="button" class="section_title" id="uppercase" value="Uppercase" /> | ||
</div> | ||
<div id="letters"> | ||
<input type="button" class="letter" value="á" /><input type="button" class="letter" value="à" /><input type="button" class="letter" value="ä" /><input type="button" class="letter" value="â" /><input type="button" class="letter" value="å" /><input type="button" class="letter" value="ã" /> | ||
<br/> | ||
<input type="button" class="letter" value="é" /><input type="button" class="letter" value="è" /><input type="button" class="letter" value="ë" /><input type="button" class="letter" value="ê" /> | ||
<br/> | ||
<input type="button" class="letter" value="í" /><input type="button" class="letter" value="ì" /><input type="button" class="letter" value="ï" /><input type="button" class="letter" value="î" /> | ||
<br/> | ||
<input type="button" class="letter" value="ó" /><input type="button" class="letter" value="ò" /><input type="button" class="letter" value="ö" /><input type="button" class="letter" value="ô" /><input type="button" class="letter" value="õ" /> | ||
<br/> | ||
<input type="button" class="letter" value="ú" /><input type="button" class="letter" value="ù" /><input type="button" class="letter" value="ü" /><input type="button" class="letter" value="û" /> | ||
<br/> | ||
<input type="button" class="letter" value="ñ" /><input type="button" class="letter" value="ý" /><input type="button" class="letter" value="ÿ" /> | ||
</div> | ||
<input type="text" id="text_to_copy" style="display: none;" /> | ||
</div> | ||
<script src="./js/accentedletters.js"></script> | ||
<div id="popup-content"> | ||
<div id="titles"> | ||
<input type="button" class="section_title" id="lowercase" value="Lowercase" /><input type="button" class="section_title" id="uppercase" value="Uppercase" /> | ||
</div> | ||
<div id="letters"> | ||
<input type="button" class="letter" value="á" /><input type="button" class="letter" value="à" /><input type="button" class="letter" value="ä" /><input type="button" class="letter" value="â" /><input type="button" class="letter" value="å" /><input type="button" class="letter" value="ã" /><input type="button" class="letter" value="ā"><input type="button" class="letter" value="ă" /> | ||
<br/> | ||
<input type="button" class="letter" value="é" /><input type="button" class="letter" value="è" /><input type="button" class="letter" value="ë" /><input type="button" class="letter" value="ê" /><input type="button" class="letter" value="ė" /><input type="button" class="letter" value="ē" /><input type="button" class="letter" value="ĕ" /><input type="button" class="letter" value="ě" /> | ||
<br/> | ||
<input type="button" class="letter" value="í" /><input type="button" class="letter" value="ì" /><input type="button" class="letter" value="ï" /><input type="button" class="letter" value="î" /><input type="button" class="letter" value="ĩ" /><input type="button" class="letter" value="ī" /><input type="button" class="letter" value="ĭ" /> | ||
<br/> | ||
<input type="button" class="letter" value="ó" /><input type="button" class="letter" value="ò" /><input type="button" class="letter" value="ö" /><input type="button" class="letter" value="ô" /><input type="button" class="letter" value="õ" /><input type="button" class="letter" value="ō" /><input type="button" class="letter" value="ŏ" /><input type="button" class="letter" value="ő" /> | ||
<br/> | ||
<input type="button" class="letter" value="ú" /><input type="button" class="letter" value="ù" /><input type="button" class="letter" value="ü" /><input type="button" class="letter" value="û" /><input type="button" class="letter" value="ů" /><input type="button" class="letter" value="ũ" /><input type="button" class="letter" value="ū" /><input type="button" class="letter" value="ŭ" /><input type="button" class="letter" value="ű" /> | ||
<br/> | ||
<input type="button" class="letter" value="ć" /><input type="button" class="letter" value="ĉ" /><input type="button" class="letter" value="ċ" /><input type="button" class="letter" value="č" /><input type="button" class="letter" value="ý" /><input type="button" class="letter" value="ŷ" /><input type="button" class="letter" value="ÿ" /> | ||
<br/> | ||
<input type="button" class="letter" value="ń" /><input type="button" class="letter" value="ñ" /><input type="button" class="letter" value="ň" /><input type="button" class="letter" value="ǵ" /><input type="button" class="letter" value="ĝ" /><input type="button" class="letter" value="ġ" /><input type="button" class="letter" value="ğ" /><input type="button" class="letter" value="ģ" /> | ||
<br> | ||
<input type="button" class="letter" value="ď" /><input type="button" class="letter" value="ť" /><input type="button" class="letter" value="ĥ" /><input type="button" class="letter" value="ŵ" /><input type="button" class="letter" value="ŕ" /><input type="button" class="letter" value="ř" /> | ||
<br> | ||
<input type="button" class="letter" value="ś" /><input type="button" class="letter" value="ŝ" /><input type="button" class="letter" value="ź" /><input type="button" class="letter" value="ż" /><input type="button" class="letter" value="ž" /> | ||
</div> | ||
<input type="text" id="text_to_copy" style="display: none;" /> | ||
<!--Model: <input type="button" class="letter" value="" />--> | ||
</div> | ||
<script src="./js/accentedletters.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,119 +1,122 @@ | ||
@font-face | ||
{ | ||
font-family: source code pro; | ||
src: url("../font/sourcecodepro.ttf"); | ||
@font-face { | ||
font-family: source code pro; | ||
src: url("../font/sourcecodepro.ttf"); | ||
} | ||
@font-face | ||
{ | ||
font-family: zilla slab; | ||
src: url("../font/zillaslab.otf"); | ||
|
||
@font-face { | ||
font-family: zilla slab; | ||
src: url("../font/zillaslab.otf"); | ||
} | ||
body | ||
{ | ||
|
||
body { | ||
background-color: transparent; | ||
color: black; | ||
width: 284px; | ||
height: 323px; | ||
overflow: hidden; | ||
/* 46*n_columns + 10 */ | ||
width: 332px; | ||
/* 46*n_rows + 14 + height_titles (36)*/ | ||
height: 322px; | ||
overflow: hidden; | ||
} | ||
#popup-content | ||
{ | ||
width: 284px; | ||
height: 323px; | ||
margin: 2px; | ||
margin-left: -1px; | ||
margin-right: -1px; | ||
background-color: transparent; | ||
border: 1px solid transparent; | ||
position: relative; | ||
|
||
#popup-content { | ||
width: 100%; | ||
height: 100%; | ||
margin: 0px; | ||
background-color: transparent; | ||
border: 1px solid transparent; | ||
position: relative; | ||
overflow: hidden; | ||
} | ||
#titles | ||
{ | ||
position: absolute; | ||
width: 288px; | ||
height: 36px; | ||
top: 0px; | ||
left: 0px; | ||
overflow: hidden; | ||
|
||
#titles { | ||
position: absolute; | ||
width: auto; | ||
height: 36px; | ||
top: 0px; | ||
left: 0px; | ||
right: 0px; | ||
overflow: hidden; | ||
} | ||
#letters | ||
{ | ||
position: absolute; | ||
width: 288px; | ||
height: 284px; | ||
top: 38px; | ||
left: 0px; | ||
padding: 2px; | ||
padding-left: 4px; | ||
padding-right: 4px; | ||
overflow: hidden; | ||
|
||
#letters { | ||
position: absolute; | ||
width: 100%; | ||
height: 100%; | ||
top: 38px; | ||
left: 0px; | ||
padding: 2px; | ||
padding-left: 4px; | ||
padding-right: 4px; | ||
overflow: hidden; | ||
} | ||
.section_title | ||
{ | ||
background-color: transparent; | ||
width: 50%; | ||
height: 100%; | ||
padding: 3px; | ||
color: rgb(10, 132, 255); | ||
border: 0px; | ||
border-radius: 0px; | ||
font-size: 14px; | ||
border-top: 3px solid rgb(10, 132, 255); | ||
border-bottom: 1px solid rgb(201, 202, 203); | ||
font-family: zilla slab; | ||
margin: 0px; | ||
cursor: pointer; | ||
position: relative; | ||
font-weight: bold; | ||
transition: 0.1s; | ||
|
||
.section_title { | ||
background-color: transparent; | ||
width: 50%; | ||
height: 100%; | ||
padding: 3px; | ||
color: rgb(10, 132, 255); | ||
border: 0px; | ||
border-radius: 0px; | ||
font-size: 14px; | ||
border-top: 3px solid rgb(10, 132, 255); | ||
border-bottom: 1px solid rgb(201, 202, 203); | ||
font-family: zilla slab; | ||
margin: 0px; | ||
cursor: pointer; | ||
position: relative; | ||
font-weight: bold; | ||
transition: 0.1s; | ||
} | ||
.letter | ||
{ | ||
background-color: rgb(255, 255, 255); | ||
padding: 5px; | ||
width: 40px; | ||
height: 40px; | ||
color: black; | ||
border: 0px; | ||
border-radius: 3px; | ||
font-size: 14px; | ||
font-family: source code pro; | ||
margin: 3px; | ||
cursor: pointer; | ||
position: relative; | ||
transition: 0.1s; | ||
|
||
.letter { | ||
background-color: rgb(255, 255, 255); | ||
padding: 5px; | ||
width: 40px; | ||
height: 40px; | ||
color: black; | ||
border: 0px; | ||
border-radius: 3px; | ||
font-size: 16px; | ||
font-family: source code pro; | ||
margin: 3px; | ||
cursor: pointer; | ||
position: relative; | ||
transition: 0.1s; | ||
} | ||
.section_title:hover, .letter:hover | ||
{ | ||
background-color: rgb(221, 222, 223); | ||
|
||
.section_title:hover, | ||
.letter:hover { | ||
background-color: rgb(221, 222, 223); | ||
} | ||
.letter:active, .letter:focus | ||
{ | ||
box-shadow: 0px 0px 0px 2px #0a84ff, 0px 0px 0px 5px #b1d6fc; | ||
|
||
.letter:active, | ||
.letter:focus { | ||
box-shadow: 0px 0px 0px 2px #0a84ff, 0px 0px 0px 5px #b1d6fc; | ||
} | ||
.section_title:active | ||
{ | ||
background-color: rgb(201, 202, 203); | ||
|
||
.section_title:active { | ||
background-color: rgb(201, 202, 203); | ||
} | ||
|
||
b.character-copied { | ||
position: fixed; | ||
bottom: 3px; | ||
right: 30%; | ||
left: 30%; | ||
text-align: center; | ||
height: auto; | ||
width: auto; | ||
font-size: 16px; | ||
color: rgb(221, 222, 223); | ||
z-index: 999; | ||
background-color: #0a84ff; | ||
border-radius: 3px; | ||
padding: 5px; | ||
margin: 0px; | ||
border: 0px solid transparent; | ||
text-align: center; | ||
width: auto; | ||
font-weight: bold; | ||
font-family: zilla slab; | ||
position: fixed; | ||
bottom: 3px; | ||
right: 30%; | ||
left: 30%; | ||
text-align: center; | ||
height: auto; | ||
width: auto; | ||
font-size: 16px; | ||
color: rgb(221, 222, 223); | ||
z-index: 999; | ||
background-color: #0a84ff; | ||
border-radius: 3px; | ||
padding: 5px; | ||
margin: 0px; | ||
border: 0px solid transparent; | ||
text-align: center; | ||
width: auto; | ||
font-weight: bold; | ||
font-family: zilla slab; | ||
} |
Binary file not shown.
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.
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.
Oops, something went wrong.