Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.27 KB | None | 0 0
  1. html, body, div, span, applet, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code,
  4. del, dfn, em, img, ins, kbd, q, s, samp,
  5. small, strike, strong, sub, sup, tt, var,
  6. b, u, i, center,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, embed,
  11. figure, figcaption, footer, header, hgroup,
  12. menu, nav, output, ruby, section, summary,
  13. time, mark, audio, video {
  14.     margin: 0;
  15.     padding: 0;
  16.     border: 0;
  17.     font-size: 100%;
  18.     font: inherit;
  19.     vertical-align: baseline;
  20. }
  21. /* HTML5 display-role reset for older browsers */
  22. article, aside, details, figcaption, figure,
  23. footer, header, hgroup, menu, nav, section {
  24.     display: block;
  25. }
  26. body {
  27.     line-height: 1;
  28.     cursor:default;
  29. }
  30. ol, ul {
  31.     list-style: none;
  32. }
  33. blockquote, q {
  34.     quotes: none;
  35. }
  36. blockquote:before, blockquote:after,
  37. q:before, q:after {
  38.     content: '';
  39.     content: none;
  40. }
  41. table {
  42.     border-collapse: collapse;
  43.     border-spacing: 0;
  44. }
  45. .clear{
  46.     clear:both;
  47. }
  48. #wrapper{
  49.     min-width:700px;
  50.     max-width:1000px;
  51.     width:60%;
  52.     margin:5% auto 0 auto;
  53. }
  54. a:link,
  55. a:visited,
  56. a:active{
  57.     text-decoration:none;
  58. }
  59. /* ICONS */
  60. @font-face {
  61.     font-family: 'heydings_iconsregular';
  62.     src: url('fonts/heydings_icons-webfont.eot');
  63.     src: url('fonts/heydings_icons-webfont.eot?#iefix') format('embedded-opentype'),
  64.          url('fonts/heydings_icons-webfont.woff') format('woff'),
  65.          url('fonts/heydings_icons-webfont.ttf') format('truetype'),
  66.          url('fonts/heydings_icons-webfont.svg#heydings_iconsregular') format('svg');
  67.     font-weight: normal;
  68.     font-style: normal;
  69.  
  70. }
  71. /* TIME STYLES */
  72. #fulltime{
  73.     float:left;
  74.     text-transform:uppercase;
  75. }
  76. #time{
  77.     font-size:1.2em;
  78. }
  79. #time span{
  80.     animation: blink 4s linear infinite;
  81.     -moz-animation: blink 4s linear infinite;
  82.     -webkit-animation: blink 4s linear infinite;
  83.     vertical-align:top;
  84. }
  85. @-webkit-keyframes blink {
  86.     0% {
  87.         opacity: 1.0;
  88.         }
  89.     25% {
  90.         opacity: .25;
  91.     }
  92.     50% {
  93.         opacity: .5;
  94.     }
  95.     75% {
  96.         opacity: .75;
  97.     }
  98.     100% {
  99.         opacity: 1.0;
  100.     }  
  101. }
  102. @-moz-keyframes blink {
  103.     0% {
  104.         opacity: 1.0;
  105.         }
  106.     25% {
  107.         opacity: .25;
  108.     }
  109.     50% {
  110.         opacity: .5;
  111.     }
  112.     75% {
  113.         opacity: .75;
  114.     }
  115.     100% {
  116.         opacity: 1.0;
  117.     }
  118. }
  119. #day{
  120.     font-size:4em;
  121.     font-weight:bold;
  122.     margin-top:-5%;
  123. }
  124. #date{
  125.     text-align:right;
  126.     font-size:1.2em;
  127.     margin-top:-4px;
  128. }
  129. /* WEATHER WIDGET STYLES*/
  130. #weather .weatherForecastRange,
  131. #weather .weatherForecastText,
  132. #weather .weatherForecastDate,
  133. #weather .weatherCity,
  134. #weather .weatherTemp,
  135. #weather .weatherDesc,
  136. #weather .weatherRange{
  137.     display:none;
  138. }
  139. #weather{
  140.     float:right;
  141.     width:50%;
  142.     margin-top:2%;
  143.     background:transparent !important;
  144. }
  145. #weather .weatherForecastItem{
  146.     float:left;
  147.     width:20%;
  148.     padding-top:40px;
  149.     background-position:top center;
  150. }
  151. #weather .weatherForecastDay{
  152.     text-align:center;
  153.     text-transform:uppercase;
  154. }
  155. /* BOOKMARK STYLES */
  156. #bm{
  157.     margin-top:5%;
  158. }
  159. #bm ul{
  160.     float:left;
  161.     width:22%;
  162.     border-left:1px solid #fff;
  163.     color:#fff;
  164.     padding:1%;
  165. }
  166. #bm li{
  167.     font-size:.9em;
  168.     margin:1% 0;
  169. }
  170. #bm .title{
  171.     text-transform:uppercase;
  172.     font-size:1.2em;   
  173.     margin-bottom:5%;
  174.    
  175. }
  176. #bm a{
  177.     display:block;
  178. }
  179. #bm a:hover{
  180.     margin-left:1%;
  181. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement