layout | title | description | author | published | categories |
---|---|---|---|---|---|
post |
Text on Background Images |
Guidelines for styling text over background images |
Jen Strickland |
false |
accessibility, CSS, design - Category Name |
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
<form role="form"> <!-- if a search form make the role="search" --> | |
<label for="name">Name | |
<input type="text" id="name" name="name" size="27" class="required"/> | |
</label> | |
<label for="comments">Comments | |
<textarea name="comments" id="comments"></textarea> | |
</label> | |
<label for="robot_val">I am a *</label> | |
robot: <input type="radio" name="robot_val" value="robot" role="menuitemradio" checked="checked" /> | |
human: <input type="radio" name="robot_val" value="human" role="menuitemradio" /> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset=utf-8 /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="keywords" content=""> | |
<title>Title</title> |
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
<table role="table"> | |
<caption>Your table heading</caption> | |
<thead role="rowgroup"> | |
<tr role="row"> | |
<th scope="col" role="columnheader">th content</th> | |
<th scope="colgroup" role="columnheader" colspan="3">th content</th> | |
</tr> | |
</thead> | |
<tbody role="rowgroup"> | |
<tr role="row"> |
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
A couple of years ago, I collaborated with a team for a responsive redesign of Fidelity Investment's Retail Accounts & Trade pages. My efforts focused on a responsive solution for a massive data grid. The original solution used CSS only, resulted in a 75% increase in use of the page on mobile, and became the most viewed page on all of Fidelity.com. "Massive" is defined as thirteen or more columns, thousands of rows, plus an interactive drawer of additional information. This talk outlines brainstorming, iterating, and testing approaches for using HTML and CSS to more accurately address responsive solutions for design puzzles. |
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
<option value="AF">Afghanistan</option> | |
<option value="AL">Albania</option> | |
<option value="DZ">Algeria</option> | |
<option value="AS">American Samoa</option> | |
<option value="AD">Andorra</option> | |
<option value="AO">Angola</option> | |
<option value="AI">Anguilla</option> | |
<option value="AQ">Antarctica</option> | |
<option value="AG">Antigua and Barbuda</option> | |
<option value="AR">Argentina</option> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ " |