Advertisement
Guest User

Untitled

a guest
Sep 14th, 2013
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.24 KB | None | 0 0
  1. body {
  2.     background: #000000 url('Logo.png') no-repeat center;
  3.     background-size: 85%;  
  4.     background-attachment:fixed;
  5.     margin: auto;
  6.     padding: 0px;
  7.     width: 100%;
  8.  
  9. }
  10.  
  11.    
  12. .Header ul {
  13.    list-style: none;
  14.    display: block;
  15.  
  16. }
  17.  
  18. .Header ul li {
  19.    float: left;
  20.    display: block;
  21.    
  22. }
  23.  
  24. .Header ul li a{
  25.    -webkit-opacity: 0.25;
  26.    -moz-opacity: 0.25;
  27.    opacity: 0.25;
  28.    -webkit-transition: all 1s ease;
  29.    -moz-transition: all 1s ease;
  30.    -ms-transition: all 1s ease;
  31.    -o-transition: all 1s ease;
  32.    transition: all 1s ease;
  33.    color: #FFF ;
  34.    font-size: 12px;
  35.    font-family: arial;
  36.    text-transform; uppercase;
  37.    text-decoration: none;
  38.    padding-top: 80px;
  39.    padding-right: 30px;
  40.    padding-bottom: 10px;
  41.    padding-left: 100px;
  42.    display: block;
  43.    height: 0px;
  44.    width:80%;
  45.    margin: 0 auto;
  46.  
  47.    
  48. }
  49.  
  50. .Header ul li a:hover {
  51.    -webkit-opacity: 1;
  52.    -moz-opacity: 1;
  53.    opacity: 1;
  54.    text-shadow: 0 0 15px #FFF;
  55. }
  56.  
  57.    
  58. .Progbar img {
  59.    padding-top: 20%;
  60.    margin: 0 auto;
  61.    position:absolute;
  62.    left:30%;
  63.    top:0px;
  64.    z-index:-1;
  65.    display:block;
  66.    
  67.  
  68.    
  69. }
  70.  
  71.    
  72. .About {
  73.    display: block;
  74.    width: 1280px;
  75.    height: 720px;
  76.    background: url('bg.png');
  77.    margin-left: 13%;
  78.    position:absolute;
  79.    left:0;
  80.    top:20%;
  81.    z-index:-1;
  82.  
  83. }
  84.  
  85. .About p{
  86.    color: #FFF;
  87.    font-family: arial;
  88.    font-size: 20px;
  89.    text-align: center;
  90.    overflow: auto;
  91.    }
  92.    
  93. .About img{
  94.    width: 854px;
  95.    height:480px;
  96.    margin: 2px auto;
  97.    margin-left: 16%
  98.  
  99. }  
  100.  
  101. .About h2{
  102.    color: #FFF;
  103.    font-family: Arial;
  104.    text-align: center;
  105.    text-shadow: 0 0 15px #FFF;  
  106.    
  107.   }
  108.  
  109. .Devs_text {
  110.    display: block;
  111.    width: 640px;
  112.    height: 640px;
  113.    background: url('bg.png');
  114.    position:absolute;
  115.    left:30%;
  116.    top:15%;
  117.    z-index:-1;
  118.    
  119.   }
  120.  
  121. .Devs_text h2{
  122.    color: #FFF;
  123.    font-family: Arial;
  124.    text-align: center;
  125.    text-shadow: 0 0 15px #FFF;  
  126.    
  127.   }
  128.  
  129.   .Devs_text h3{
  130.    color: #FFF;
  131.    font-family: Arial;
  132.    text-align: center;
  133.    text-shadow: 0 0 15px #FFF;
  134.    
  135.   }
  136.  
  137.     .Devs_text p{
  138.    color: #FFF;
  139.    font-family: Arial;
  140.    text-align: center;
  141.    
  142. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement