Advertisement
Guest User

Untitled

a guest
Aug 27th, 2012
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1.  
  2. <!--
  3.  
  4. Wondering why you do not see HTML5 Boilerplate?
  5.  
  6. Read http://JonathansCorner.com/faq/#boilerplate
  7.  
  8. -->
  9. <html>
  10. <head>
  11. <meta http-equiv='X-UA-Compatible' content='chrome=1' />
  12. <title>Liturgical clock</title>
  13. <style type='text/css'>
  14. a
  15. {
  16. color: gold;
  17. text-decoration: none;
  18. }
  19. body
  20. {
  21. background-image: url(/protected/PrivateMenu/greenmenubackground.jpg);
  22. color: white;
  23. font-family: Verdana, sans;
  24. font-size: larger;
  25. }
  26. #clock
  27. {
  28. stroke: black;
  29. stroke-linecap: round;
  30. fill: #eeeeff;
  31. }
  32. #face
  33. {
  34. stroke-width: 3px;
  35. }
  36. #hourhand
  37. {
  38. stroke-width: 5px;
  39. }
  40. #minutehand
  41. {
  42. stroke-width: 3px;
  43. }
  44. #numbers
  45. {
  46. font-family: sans-serif;
  47. font-size: 7pt;
  48. font-weight: bold;
  49. text-anchor: middle;
  50. stroke: none;
  51. fill: black;
  52. }
  53. #ticks
  54. {
  55. stroke-width: 2px;
  56. }
  57. p#liturgical
  58. {
  59. margin-bottom: 0;
  60. margin-top: 0;
  61. }
  62. p#official
  63. {
  64. }
  65. p#prayer
  66. {
  67. margin-bottom: 0;
  68. }
  69. span.now
  70. {
  71. font-size: 3em;
  72. }
  73. </style>
  74. </head>
  75. <body>
  76. <p name='official' id='official'>Time coming...</p>
  77. <p name='liturgical' id='liturgical'><a name='liturgical_link'
  78. id='liturgical_link' target='_blank'
  79. href='/clock/combined.cgi'>Time
  80. coming...</a></p>
  81. <!--
  82. <script
  83. src='http://www.gmodules.com/ig/ifr?url=http://static.die.net/moon/gadget.xml&amp;up_size=medium&amp;up_info=1&amp;up_date=0&amp;synd=open&amp;w=320&amp;h=170&amp;title=&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js'></script>
  84. -->
  85. <svg id='wallclock' viewbox='0 0 100 100' width='500' height='500'>
  86. <defs>
  87. <filter id='shadow' x='-50%' y='-50%' width='200%'
  88. height='200%'>
  89. <feGaussianBlur in='SourceAlpha' stdDeviation='1'
  90. result='blur' />
  91. <feOffset in='blur' dx='1' dy='1' result='shadow'>
  92. <feMerge>
  93. <feMergeNode in='SourceGraphic' />
  94. <feMergeNode in='shadow'>
  95. </feMerge>
  96. </filter>
  97. </defs>
  98. <circle id='face' cx='50' cy='50' r='45' />
  99. <g id='ticks'>
  100. <line x1='50.00' y1='5.00' x2='50.00' y2='10.00' />
  101. <line x1='72.50' y1='11.03' x2='70.00' y2='15.36' />
  102. <line x1='88.97' y1='27.50' x2='84.64' y2='30.00' />
  103. <line x1='95.00' y1='50.00' x2='90.00' y2='50.00' />
  104. <line x1='88.97' y1='72.50' x2='84.64' y2='70.00' />
  105. <line x1='72.50' y1='88.97' x2='70.00' y2='84.64' />
  106. <line x1='50.00' y1='95.00' x2='50.00' y2='90.00' />
  107. <line x1='27.50' y1='88.97' x2='30.00' y2='84.64' />
  108. <line x1='11.03' y1='72.50' x2='15.36' y2='70.00' />
  109. <line x1='5.00' y1='50.00' x2='10.00' y2='50.00' />
  110. <line x1='11.03' y1='11.03' x2='30.00' y2='15.36' />
  111. </g>
  112. <g id='numbers'>
  113. <text x='50' y='18'>12</text>
  114. <text x='85' y='53'>3</text>
  115. <text x='50' y='88'>6</text>
  116. <text x='15' y='53'>9</text>
  117. </g>
  118. <g id='hands' filter='url(#shadow)'>
  119. <line id='hourhand' x1='50' y1='50' x2='50' y2='24' />
  120. <line id='minutehand' x1='50' y1='50' x2='50' y2='20' />
  121. </g>
  122. </svg>
  123. <noscript><strong><p>You will need JavaScript to use this
  124. clock.</strong></p></noscript>
  125. <script language='JavaScript' src='clock.js'>// --></script>
  126. </body>
  127. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement