Advertisement
M0n5t3r

Css

Sep 18th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.59 KB | None | 0 0
  1. body {
  2.     background-image: url('Images/Background.jpg');
  3.     margin: 0;
  4. }
  5.    
  6.  
  7. header {
  8.     border-bottom-right-radius: 20px;
  9.     background: #999;
  10.     color: white;
  11.     margin: 0;
  12. }
  13.  
  14. header h1 {
  15.     margin: 0;
  16.     display: inline;
  17.     padding-left: 60px;
  18.     font-style: oblique;
  19.  
  20. }
  21.  
  22. test h1{
  23.     background: #999;
  24.     color: #19D1FF;
  25.     margin: 0;
  26.     padding-left: 0px;
  27.     font-family: "Brush Script MT", cursive;
  28. }
  29.  
  30. nav ul li{
  31.     list-style-type: none;
  32.     display: inline-block;
  33.     padding: 3px 12px 3px 12px;
  34.     margin-bottom: 4px;
  35.     background: #19D1FF;
  36.     color: white;
  37.     text-decoration: none;
  38.     font-size: 24px;
  39.     border-radius: 10px;
  40.     font-style: oblique;
  41.     font-family: "Brush Script MT", cursive;
  42. }
  43.  
  44.  
  45. nav ul{
  46.     margin: 0;
  47.     display: inline;
  48.  
  49. }
  50.  
  51. body p, h1{
  52.     padding-left: 15px;
  53. }
  54.  
  55. a:hover, a:visited, a:link
  56. {
  57.     text-decoration: none;
  58.     color: white;
  59. }
  60.  
  61. footer{
  62.     padding-left: 1%;
  63.     position: absolute;
  64.     bottom: 0%;
  65. }
  66.  
  67. img{
  68.     padding-left: 0.7%;
  69.     padding-top: 1%;
  70.  
  71. }
  72.  
  73. .image
  74. {
  75.     position:relative;
  76.     height: 312px;
  77.     -webkit-transition: height 1.2s;
  78.     transition: height 1.2s;
  79.  
  80.  
  81.    
  82. }
  83. .image:hover {
  84.     height: 15%;}
  85.  
  86. .text
  87. {
  88.     width: 225px;
  89.     height: 312px;
  90.     position: absolute;
  91.    
  92. }
  93.  
  94. .container
  95. {
  96.     display: block;
  97.     float: left;
  98.     margin-right: 5px;
  99.    
  100.     width: 225px;
  101.     height: 312px;
  102.     float: left;
  103.     overflow: hidden;
  104.     position: relative;
  105.  
  106.      
  107.     padding-left: 0.7%;
  108.     padding-top: 1%
  109. }
  110.  
  111. .wrapper    {  display: inline-block; }
  112. .text   { padding: 70px 15px 0 15px; color: #777; background: white; }
  113. .text h1    { margin: 0 0 5px 0; color: #666; font: 20px sans-serif; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement