Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
3.8 KiB

  1. @charset "UTF-8";
  2. /**
  3. * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
  4. *
  5. * (en) YAML-Addon: Microformats Support
  6. * (de) YAML-Addon: Unterstützung für Microformate
  7. *
  8. * @note Many thanks to Michael Jendryschik (http://jendryschik.de/) for contribution
  9. *
  10. * @copyright Copyright 2005-2009, Dirk Jesse
  11. * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
  12. * YAML-C (http://www.yaml.de/en/license/license-conditions.html)
  13. * @link http://www.yaml.de
  14. * @package yaml
  15. * @version 3.1
  16. * @revision $Revision: 343 $
  17. * @lastmodified $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
  18. */
  19. /* hCards + hCalendars */
  20. .vcard,
  21. .vevent {
  22. border: 2px solid #e0e7b8 !important;
  23. padding: 30px 5px 5px 5px !important;
  24. -moz-border-radius: 8px;
  25. -webkit-border-radius: 8px;
  26. border-radius: 8px;
  27. margin: 5px 0 !important;
  28. /* small IE-Fix for background images */
  29. zoom:1;
  30. }
  31. span.vcard,
  32. span.vevent {
  33. padding: 2px 1px 2px 70px !important;
  34. margin: 0 2px 0 !important;
  35. }
  36. .vcard { background:#f8f8ec url(images/hcard.png) 5px 5px no-repeat !important; }
  37. .vcard a { padding-left: 11px; background:url(images/external_link.gif) top left no-repeat; color: #679A06; }
  38. .vcard .adr { display: block; margin: 0.5em 0; }
  39. .vcard .email { font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier; }
  40. .vevent { background:#f8f8ec url(images/hcalendar.png) 5px 5px no-repeat !important; }
  41. .vevent a { padding-left: 11px; background:url(images/external_link.gif) top left no-repeat; color: #679A06; }
  42. .vevent p { margin-bottom:0.5em; }
  43. .vevent .description { display: block; margin-top: 1em; }
  44. .vevent .location { display: block; color: #679A06; }
  45. .vevent .summary { display: block; color: #679A06; font-weight: bold; }
  46. /* XFN relationship */
  47. a.xfnRelationship {
  48. padding-right: 26px; background: url(images/xfn/xfn-small.png) no-repeat right;
  49. }
  50. a.xfnRelationship[rel~="colleague"],
  51. a.xfnRelationship[rel~="co-worker"]
  52. {
  53. padding-right: 21px;
  54. background: url(images/xfn/xfn-colleague.png) no-repeat right;
  55. }
  56. a.xfnRelationship[rel~="met"]
  57. {
  58. padding-right: 32px;
  59. background: url(images/icon-xfn.png) no-repeat right;
  60. }
  61. a.xfnRelationship[rel~="colleague"][rel~="met"],
  62. a.xfnRelationship[rel~="co-worker"][rel~="met"]
  63. {
  64. padding-right: 26px;
  65. background: url(images/xfn/xfn-colleague-met.png) no-repeat right;
  66. }
  67. a.xfnRelationship[rel~="friend"]
  68. {
  69. padding-right: 21px;
  70. background: url(images/xfn/xfn-friend.png) no-repeat right;
  71. }
  72. a.xfnRelationship[rel~="friend"][rel~="met"]
  73. {
  74. padding-right: 26px;
  75. background: url(images/xfn/xfn-friend-met.png) no-repeat right;
  76. }
  77. a.xfnRelationship[rel~="sweetheart"]
  78. {
  79. padding-right: 21px;
  80. background: url(images/xfn/xfn-sweetheart.png) no-repeat right;
  81. }
  82. a.xfnRelationship[rel~="sweetheart"][rel~="met"]
  83. {
  84. padding-right: 26px;
  85. background: url(images/xfn/xfn-sweetheart-met.png) no-repeat right;
  86. }
  87. a.xfnRelationship[rel~="child"]
  88. {
  89. padding-right: 21px;
  90. background: url(images/xfn/xfn-child.png) no-repeat right;
  91. }
  92. a.xfnRelationship[rel~="parent"]
  93. {
  94. padding-right: 21px;
  95. background: url(images/xfn/xfn-parent.png) no-repeat right;
  96. }
  97. a.xfnRelationship[rel~="spouse"]
  98. {
  99. padding-right: 21px;
  100. background: url(images/xfn//xfn-spouse.png) no-repeat right;
  101. }
  102. a.xfnRelationship[rel~="me"]
  103. {
  104. padding-right: 21px;
  105. background: url(images/xfn/xfn-me.png) no-repeat right;
  106. }
  107. /* rel-tag */
  108. a[rel~="tag"]
  109. {
  110. padding-right: 32px;
  111. background: url(images/icon-rel-tag.png) no-repeat right;
  112. }
  113. /* geo */
  114. abbr[class~="geo"]
  115. {
  116. padding-right: 32px;
  117. background: url(images/icon-geo.png) no-repeat right;
  118. border: none;
  119. cursor: default;
  120. }