All Projects → Mottie → input-password-bullet

Mottie / input-password-bullet

Licence: other
How to replace the input password bullet in most browsers

Programming Languages

CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to input-password-bullet

dalmoori-font
예쁜 도트 그래픽 한글 글꼴
Stars: ✭ 82 (+9.33%)
Mutual labels:  font
gatsby-omni-font-loader
Font loader optimized for maximum performance. Removes render-blocking font resources and loads them asynchronusly. Handle FOUT & FOUC with font loading status watcher. Supports both local-hosted fonts and web fonts.
Stars: ✭ 98 (+30.67%)
Mutual labels:  font
vault
Vault - cross-platform GPG KV store for teams made easy
Stars: ✭ 35 (-53.33%)
Mutual labels:  password
Scribble-Font
Scribble Font for Prototyping & Wireframing
Stars: ✭ 48 (-36%)
Mutual labels:  font
MlkPwgen
Secure random password generator for .NET and PowerShell
Stars: ✭ 57 (-24%)
Mutual labels:  password
yaldevi-font
A Font family supporting Sinhala, Tamil and Latin.
Stars: ✭ 14 (-81.33%)
Mutual labels:  font
Ligatured-Hack
Automatically patch latest Hack Font with latest JetBrains Mono / FiraCode Ligatures
Stars: ✭ 196 (+161.33%)
Mutual labels:  font
yozai-font
A Chinese handwriting font derived from YozFont. 一款衍生于 YozFont 的中文手写字型。
Stars: ✭ 431 (+474.67%)
Mutual labels:  font
alt-hack
A stylistic alternate glyph library for the Hack typeface
Stars: ✭ 85 (+13.33%)
Mutual labels:  font
Huruf
A simple chrome extension to make reading Arabic easier
Stars: ✭ 23 (-69.33%)
Mutual labels:  font
perplexed
OTF monospace typeface, a derivative of IBM Plex Mono with Powerline glyphs added
Stars: ✭ 23 (-69.33%)
Mutual labels:  font
cfd-demos
A collection of useful Call Flow Designer sample projects shared with the developer community
Stars: ✭ 29 (-61.33%)
Mutual labels:  how-to
DevBrute-A Password Brute Forcer
DevBrute is a Password Brute Forcer, It can Brute Force almost all Social Media Accounts or Any Web Application.
Stars: ✭ 91 (+21.33%)
Mutual labels:  password
bookshelf-secure-password
A Bookshelf.js plugin for handling secure passwords
Stars: ✭ 24 (-68%)
Mutual labels:  password
CLI-Cheat-Sheet
The essential tasks on the command line interface for web developers.
Stars: ✭ 19 (-74.67%)
Mutual labels:  how-to
terminal-themes
rc files for vim, tmux, iterm and zsh
Stars: ✭ 18 (-76%)
Mutual labels:  font
Ob3vil1on
Another archive cracker created in python | cracking [zip/7z/rar] by bruteforcing [ NOT MAINTAINED ]
Stars: ✭ 17 (-77.33%)
Mutual labels:  password
WindowTextExtractor
WindowTextExtractor allows you to get a text from any window of an operating system including asterisk passwords
Stars: ✭ 128 (+70.67%)
Mutual labels:  password
rust-font-loader
A font loading utility written in rust.
Stars: ✭ 44 (-41.33%)
Mutual labels:  font
dbus-sample
Sample C/C++ code for basic D-Bus use case
Stars: ✭ 76 (+1.33%)
Mutual labels:  how-to

Changing the input password bullet

This repo provides instructions & a simple demo showing how to replace the input password bullet in most browsers.

  • Go to Fontello, or equivalent site.

  • Choose or upload an icon.

    fontello-select-glyph

  • Select "Customize Codes" tab.

  • Change the glyph destination to U+"2022" to replace the bullet symbol in webkit browsers.

  • Change the glyph destination to U+"25CF" to replace the bullet symbol in Firefox & MS Edge.

    fontello-customize-code

  • Download webfont.

  • Include the font files on your site, and include the following css (Note, the 0000 will change depending on the glyph & glyph destination)

/* Use the css below to change the password input symbol */
@font-face {
	font-family: 'fontello';
	src: url('./font/fontello.eot?0000');
	src: url('./font/fontello.eot?0000#iefix') format('embedded-opentype'),
	     url('./font/fontello.woff2?0000') format('woff2'),
	     url('./font/fontello.woff?0000') format('woff'),
	     url('./font/fontello.ttf?0000') format('truetype'),
	     url('./font/fontello.svg?0000#fontello') format('svg');
	font-weight: normal;
	font-style: normal;
}

input[type="password"] {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;

	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;

	/* Font smoothing. That was taken from TWBS */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */

	/* add spacing to better separate each image */
	letter-spacing: 2px;
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].