Advertisement
Guest User

CSS

a guest
Nov 28th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. /***************************************************
  2. Reset
  3. ***************************************************/
  4.  
  5. html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li, form, label, legend, caption, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section, summary {
  6. margin: 0;
  7. padding: 0;
  8. border: 0;
  9. outline: 0;
  10. font-weight: inherit;
  11. font-style: inherit;
  12. font-size: 100%;
  13. font-family: inherit;
  14. vertical-align: baseline;
  15. }
  16.  
  17. ol, ul {
  18. list-style: none;
  19. }
  20.  
  21.  
  22. a img {border:none}
  23. a:link, a:visited{color:#fff ;text-decoration:none;border: 0;}
  24. a:hover {text-decoration:none;}
  25.  
  26. aside, details, figcaption, figure,
  27. footer, header, hgroup, menu, nav, section {display: block}
  28.  
  29.  
  30. /***************************************************
  31. Global styles
  32. ***************************************************/
  33.  
  34.  
  35. html {
  36. background: url(images/background.jpg) no-repeat center center fixed;
  37. -webkit-background-size: cover;
  38. -moz-background-size: cover;
  39. -o-background-size: cover;
  40. background-size: cover;
  41. -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/blue_electronic_board.jpg', sizingMethod='scale')";
  42. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.images/background.jpg', sizingMethod='scale');
  43. }
  44.  
  45.  
  46. body {
  47. color: #FFFFFF;
  48. font-family: Source Sans Pro, sans-serif;
  49. text-align: center;
  50. font-size: 40px;
  51. }
  52.  
  53. #wrapper {
  54. width: 85%;
  55. margin: 100px auto;
  56. }
  57.  
  58. h1 {
  59. font-family: Source Sans Pro, Arial, sans-serif;
  60. /* text-transform: uppercase; */
  61. font-size: 48px;
  62. color: #FFD700;
  63. }
  64. h2 {
  65. font-size: 28px;
  66. }
  67.  
  68. p {
  69. margin-top: 30px;
  70. font-family: Source Sans Pro, Arial, sans-serif;
  71. font-size: 16px;
  72. }
  73.  
  74. img {
  75. margin-right: 10px;
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement