Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

styles.css 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. /* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
  2. This file is licensed under the Affero General Public License version 3 or later.
  3. See the COPYING-README file. */
  4. html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; cursor:default; }
  5. html, body { height:100%; overflow:auto; }
  6. article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; }
  7. body { line-height:1.5; }
  8. table { border-collapse:separate; border-spacing:0; white-space:nowrap; }
  9. caption, th, td { text-align:left; font-weight:normal; }
  10. table, td, th { vertical-align:middle; }
  11. a { border:0; color:#000; text-decoration:none;}
  12. a, a *, input, input *, select, .button span, li, label { cursor:pointer; }
  13. ul { list-style:none; }
  14. body { background:#fefefe; font:normal .8em/1.6em "Lucida Grande", Arial, Verdana, sans-serif; color:#000; }
  15. /* HEADERS */
  16. #body-user #header, #body-settings #header { position:fixed; top:0; left:0; right:0; z-index:100; height:2.5em; line-height:2.5em; padding:.5em; background:#1d2d44; -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; }
  17. #body-login #header { margin:-2em auto 0; text-align:center; height:10em; padding:1em 0 .5em;
  18. -moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5);
  19. background:#1d2d44; /* Old browsers */
  20. background:-moz-linear-gradient(top, #35537a 0%, #1d2d42 100%); /* FF3.6+ */
  21. background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d42)); /* Chrome,Safari4+ */
  22. background:-webkit-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Chrome10+,Safari5.1+ */
  23. background:-o-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Opera11.10+ */
  24. background:-ms-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* IE10+ */
  25. background:linear-gradient(top, #35537a 0%,#1d2d42 100%); /* W3C */
  26. filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d42',GradientType=0 ); /* IE6-9 */ }
  27. #owncloud { float:left; vertical-align:middle; }
  28. .header-right { float:right; vertical-align:middle; padding:0 0.5em; }
  29. .header-right > * { vertical-align:middle; }
  30. /* INPUTS */
  31. input[type="text"], input[type="password"] { cursor:text; }
  32. input, textarea, select, button, .button, #quota, div.jp-progress, .pager li a {
  33. width:10em; margin:.3em; padding:.6em .5em .4em;
  34. font-size:1em; font-family:Arial, Verdana, sans-serif;
  35. background:#fff; color:#333; border:1px solid #ddd; outline:none;
  36. -moz-box-shadow:0 1px 1px #fff, 0 2px 0 #bbb inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset;
  37. -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
  38. }
  39. input[type="hidden"] { height:0; width:0; }
  40. input[type="text"], input[type="password"], input[type="search"], textarea { background:#f8f8f8; color:#555; cursor:text; }
  41. input[type="text"], input[type="password"], input[type="search"] { -webkit-appearance:textfield; -moz-appearance:textfield; -webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box; }
  42. input[type="text"]:hover, input[type="text"]:focus, input[type="text"]:active,
  43. input[type="password"]:hover, input[type="password"]:focus, input[type="password"]:active,
  44. .searchbox input[type="search"]:hover, .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active,
  45. textarea:hover, textarea:focus, textarea:active { background-color:#fff; color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
  46. input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; }
  47. input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; }
  48. #quota { cursor:default; }
  49. /* BUTTONS */
  50. input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a {
  51. width:auto; padding:.4em;
  52. background-color:rgba(230,230,230,.5); font-weight:bold; color:#555; text-shadow:#fff 0 1px 0; border:1px solid #bbb; border:1px solid rgba(180,180,180,.5); cursor:pointer;
  53. -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
  54. -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
  55. }
  56. input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, select:hover, select:focus, select:active, input[type="button"]:focus, .button:hover {
  57. background:rgba(255,255,255,.5); color:#333;
  58. }
  59. input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; }
  60. /* Primary action button, use sparingly */
  61. .primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary {
  62. border:1px solid #1d2d44;
  63. background:#35537a; color:#ddd; text-shadow:#000 0 -1px 0;
  64. -moz-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset; box-shadow:0 0 1px #000,0 1px 1px #6d7d94 inset;
  65. }
  66. .primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover,
  67. .primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus {
  68. border:1px solid #1d2d44;
  69. background:#2d3d54; color:#fff; text-shadow:#000 0 -1px 0;
  70. -moz-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; -webkit-box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset; box-shadow:0 0 1px #000,0 1px 1px #5d6d84 inset;
  71. }
  72. .primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
  73. border:1px solid #1d2d44;
  74. background:#1d2d42; color:#bbb; text-shadow:#000 0 -1px 0;
  75. -moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset;
  76. }
  77. #body-login input { font-size:1.5em; }
  78. #body-login input[type="text"], #body-login input[type="password"] { width:13em; }
  79. #body-login input.login { width:auto; float:right; }
  80. #remember_login { margin:.8em .2em 0 1em; }
  81. .searchbox input[type="search"] { font-size:1.2em; padding:.2em .5em .2em 1.5em; background:#fff url('../img/actions/search.svg') no-repeat .5em center; border:0; -moz-border-radius:1em; -webkit-border-radius:1em; border-radius:1em; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70);opacity:.7; -webkit-transition:opacity 300ms; -moz-transition:opacity 300ms; -o-transition:opacity 300ms; transition:opacity 300ms; }
  82. input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; -webkit-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; }
  83. #select_all{ margin-top:.4em !important;}
  84. /* CONTENT ------------------------------------------------------------------ */
  85. #controls { padding:0 0.5em; width:100%; top:3.5em; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; }
  86. #controls .button { display:inline-block; }
  87. #content { height: 100%; width: 100%; position: relative; }
  88. #content-wrapper { height: 100%; width: 100%; padding-top: 3.5em; padding-left: 12.5em; box-sizing: border-box; -moz-box-sizing: border-box; position: absolute;}
  89. #leftcontent, .leftcontent { position:fixed; top: 0; overflow:auto; width:20em; background:#f8f8f8; border-right:1px solid #ddd; box-sizing: border-box; -moz-box-sizing: border-box; height: 100%; padding-top: 6.4em }
  90. #leftcontent li, .leftcontent li { background:#f8f8f8; padding:.5em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; }
  91. #leftcontent li:hover, #leftcontent li:active, #leftcontent li.active, .leftcontent li:hover, .leftcontent li:active, .leftcontent li.active { background:#eee; }
  92. #leftcontent li.active, .leftcontent li.active { font-weight:bold; }
  93. #leftcontent li:hover, .leftcontent li:hover { color:#333; background:#ddd; }
  94. #leftcontent a { height:100%; display:block; margin:0; padding:0 1em 0 0; float:left; }
  95. #rightcontent, .rightcontent { position:fixed; top:6.4em; left:32.5em; overflow:auto }
  96. /* LOG IN & INSTALLATION ------------------------------------------------------------ */
  97. #body-login { background:#ddd; }
  98. #body-login div.buttons { text-align:center; }
  99. #body-login p.info { width:22em; text-align:center; margin:2em auto; color:#777; text-shadow:#fff 0 1px 0; }
  100. #body-login p.info a { font-weight:bold; color:#777; }
  101. #login { min-height:30em; margin:2em auto 0; border-bottom:1px solid #f8f8f8; background:#eee; }
  102. #login form { width:22em; margin:2em auto 2em; padding:0; }
  103. #login form fieldset { margin-bottom:20px; }
  104. #login form #adminaccount { margin-bottom:5px; }
  105. #login form fieldset legend, #datadirContent label {
  106. width:100%; text-align:center;
  107. font-weight:bold; color:#999; text-shadow:0 1px 0 white;
  108. }
  109. #login form fieldset legend a { color:#999; }
  110. #login #datadirContent label { display:block; margin:0; color:#999; }
  111. #login form #datadirField legend { margin-bottom:15px; }
  112. /* Icons for username and password fields to better recognize them */
  113. #adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; }
  114. #adminlogin+label, #adminpass+label, #user+label, #password+label { left:2.2em; }
  115. #adminlogin+label+img, #adminpass+label+img, #user+label+img, #password+label+img {
  116. position:absolute; left:1.25em; top:1.65em;
  117. opacity:.3;
  118. }
  119. #adminpass+label+img, #password+label+img { top:1.1em; }
  120. /* Nicely grouping input field sets */
  121. .grouptop input {
  122. margin-bottom:0;
  123. border-bottom:0; border-bottom-left-radius:0; border-bottom-right-radius:0;
  124. }
  125. .groupmiddle input {
  126. margin-top:0; margin-bottom:0;
  127. border-top:0; border-radius:0;
  128. box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
  129. }
  130. .groupbottom input {
  131. margin-top:0;
  132. border-top:0; border-top-right-radius:0; border-top-left-radius:0;
  133. box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset;
  134. }
  135. #login form label { color:#666; }
  136. #login .groupmiddle label, #login .groupbottom label { top:.65em; }
  137. /* NEEDED FOR INFIELD LABELS */
  138. p.infield { position:relative; }
  139. label.infield { cursor:text !important; top:1.05em; left:.85em; }
  140. #login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; }
  141. #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; }
  142. #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; }
  143. #login form #selectDbType { text-align:center; }
  144. #login form #selectDbType label {
  145. position:static; margin:0 -3px 5px; padding:.4em;
  146. font-size:12px; font-weight:bold; background:#f8f8f8; color:#888; cursor:pointer;
  147. border:1px solid #ddd; text-shadow:#eee 0 1px 0;
  148. -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset;
  149. }
  150. #login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; }
  151. fieldset.warning {
  152. padding:8px;
  153. color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7;
  154. border-radius:5px;
  155. }
  156. fieldset.warning legend { color:#b94a48 !important; }
  157. /* NAVIGATION ------------------------------------------------------------- */
  158. #navigation { position:fixed; top:3.5em; float:left; width:12.5em; padding:0; z-index:75; height:100%; background:#eee; border-right:1px #ccc solid; -moz-box-shadow:-3px 0 7px #000; -webkit-box-shadow:-3px 0 7px #000; box-shadow:-3px 0 7px #000; overflow:hidden;}
  159. #navigation a { display:block; padding:.6em .5em .4em 2.5em; background:#eee 1em center no-repeat; border-bottom:1px solid #ddd; border-top:1px solid #fff; text-decoration:none; font-size:1.2em; color:#666; text-shadow:#f8f8f8 0 1px 0; }
  160. #navigation a.active, #navigation a:hover, #navigation a:focus { background-color:#dbdbdb; border-top:1px solid #d4d4d4; border-bottom:1px solid #ccc; color:#333; }
  161. #navigation a.active { background-color:#ddd; }
  162. #navigation #settings { position:absolute; bottom:3.5em; width:100%; }
  163. #expand { position:relative; z-index:100; margin-bottom:-.5em; padding:.5em 10.1em .7em 1.2em; cursor:pointer; }
  164. #expand+span { position:absolute; z-index:99; margin:-1.7em 0 0 2.5em; font-size:1.2em; color:#666; text-shadow:#f8f8f8 0 1px 0; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; -webkit-transition:opacity 300ms; -moz-transition:opacity 300ms; -o-transition:opacity 300ms; transition:opacity 300ms; }
  165. #expand:hover+span, #expand+span:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; cursor:pointer; }
  166. /* VARIOUS REUSABLE SELECTORS */
  167. .hidden { display:none; }
  168. .bold { font-weight:bold; }
  169. .center { text-align:center; }
  170. #notification-container { position: fixed; top: 0px; width: 100%; text-align: center; z-index: 101; line-height: 1.2;}
  171. #notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position: relative; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; }
  172. #notification span { cursor:pointer; font-weight:bold; margin-left:1em; }
  173. tr .action, .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; }
  174. tr:hover .action, .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; }
  175. tr .action { width:16px; height:16px; }
  176. .header-action { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; }
  177. tr:hover .action:hover, .selectedActions a:hover, .header-action:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
  178. tbody tr:hover, tr:active { background-color:#f8f8f8; }
  179. #body-settings .personalblock, #body-settings .helpblock { padding:.5em 1em; margin:1em; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; }
  180. #body-settings .personalblock#quota { position:relative; padding:0; }
  181. #body-settings #controls+.helpblock { position:relative; margin-top:3em; }
  182. .personalblock > legend { margin-top:2em; }
  183. .personalblock > legend, th, dt, label { font-weight:bold; }
  184. code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; }
  185. #quota div, div.jp-play-bar, div.jp-seek-bar { padding:0; background:#e6e6e6; font-weight:normal; white-space:nowrap; -moz-border-radius-bottomleft:.4em; -webkit-border-bottom-left-radius:.4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft:.4em; -webkit-border-top-left-radius:.4em; border-top-left-radius:.4em; }
  186. #quotatext {padding:.6em 1em;}
  187. div.jp-play-bar, div.jp-seek-bar { padding:0; }
  188. .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; }
  189. .pager li { display:inline-block; }
  190. li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; }
  191. .error { color:#FF3B3B; }
  192. .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; }
  193. .hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777777; padding-left:25px; background-position:0 0.3em;}
  194. .separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; }
  195. a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;padding-top:0px;padding-bottom:2px; text-decoration:none; margin-top:5px }
  196. .exception{color:#000000;}
  197. .exception textarea{width:95%;height:200px;background:#ffe;border:0;}
  198. .ui-icon-circle-triangle-e{ background-image:url('../img/actions/play-next.svg'); }
  199. .ui-icon-circle-triangle-w{ background-image:url('../img/actions/play-previous.svg'); }
  200. .ui-datepicker-prev,.ui-datepicker-next{ border:1px solid #ddd; background:#ffffff; }
  201. /* ---- DIALOGS ---- */
  202. #dirtree {width:100%;}
  203. #filelist {height:270px; overflow:scroll; background-color:white; width:100%;}
  204. .filepicker_element_selected { background-color:lightblue;}
  205. .filepicker_loader {height:120px; width:100%; background-color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3; visibility:visible; position:absolute; top:0; left:0; text-align:center; padding-top:150px;}
  206. /* ---- CATEGORIES ---- */
  207. #categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; }
  208. #categoryform .bottombuttons { position:absolute; bottom:10px;}
  209. #categoryform .bottombuttons * { float:left;}
  210. /*#categorylist { border:1px solid #ddd;}*/
  211. #categorylist li { background:#f8f8f8; padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; }
  212. #categorylist li:hover, #categorylist li:active { background:#eee; }
  213. #category_addinput { width:10em; }
  214. /* ---- APP SETTINGS ---- */
  215. .popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888888; color:#333333; padding:10px; position:fixed !important; z-index:200; }
  216. .popup.topright { top:7em; right:1em; }
  217. .popup.bottomleft { bottom:1em; left:33em; }
  218. .popup .close { position:absolute; top:0.2em; right:0.2em; height:20px; width:20px; background:url('../img/actions/delete.svg') no-repeat center; }
  219. .popup h2 { font-weight:bold; font-size:1.2em; }
  220. .arrow { border-bottom:10px solid white; border-left:10px solid transparent; border-right:10px solid transparent; display:block; height:0; position:absolute; width:0; z-index:201; }
  221. .arrow.left { left:-13px; bottom:1.2em; -webkit-transform:rotate(270deg); -moz-transform:rotate(270deg); -o-transform:rotate(270deg); -ms-transform:rotate(270deg); transform:rotate(270deg); }
  222. .arrow.up { top:-8px; right:2em; }
  223. .arrow.down { -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg); transform:rotate(180deg); }
  224. /* ---- BREADCRUMB ---- */
  225. div.crumb { float:left; display:block; background:no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; }
  226. div.crumb:first-child { padding-left:1em; }
  227. div.crumb.last { font-weight:bold; }