1/** 2 * CSS for the IPA Typewriter Popup for the IPA Plugin 3 * 4 * @author Anika Henke <anika@selfthinker.org> 5 */ 6 7* { 8 margin: 0; 9 padding: 0; 10} 11body { 12 font-family: Arial, sans-serif; 13 font-size: 90%; 14 margin: 10px; 15 background-color: #fff; 16 color: #333; 17} 18 19table { 20 border: none; 21 text-align: center; 22 display: inline; 23 display: inline-table; 24 empty-cells: hide; 25 caption-side: top; 26} 27table.diacritics { 28 max-width: 30em; 29 min-width: 10em; 30} 31caption { 32 font-size: 75%; 33 text-align: left; 34 margin-left: 2px; 35} 36th { 37 display: none; 38} 39/* 40th { 41 font-size: .75em; 42 color: #ccc; 43 font-weight: normal; 44} 45*/ 46td { 47 border: 1px solid #ccc; 48} 49td, 50#txtIpa { 51 font-family: Arial Unicode MS, Lucida Sans Unicode, Lucida Grande, TITUS Cyberbit Basic, Code2000, MV Boli, MS Mincho, DejaVu Sans, Arial, sans-serif; 52} 53table.diacritics td, 54td.combine { 55 font-size: 170%; 56} 57table.diacritics td { 58 float: left; 59 margin: 0 2px 2px 0; 60} 61td a { 62 padding: 0.05em 0.2em; 63 display: block; 64 color: #006 !important; 65 text-decoration: none; 66} 67td a:link, td a:visited { 68 background-color: inherit; 69} 70td a:hover, td a:active, td a:focus { 71 background-color: #cfc; 72} 73td.impossible { 74 background-color: #ccc; 75} 76 77#copyIpa { 78 margin-top: 2em; 79 clear: both; 80} 81#txtIpa { 82 width: 95%; 83 margin-bottom: 0.5em; 84}