Advertisement
Guest User

Untitled

a guest
Sep 20th, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.67 KB | None | 0 0
  1.  
  2. .blackout p {
  3.     font-family: BlackoutMidnight;
  4.     font-size: 40px;
  5. }
  6.  
  7. .futura p {
  8.     font-family: FuturaStd-Bold;
  9.     font-size: 40px;
  10. }
  11.  
  12. .museo p {
  13.     font-family: Museo_Slab_100;
  14.     font-size: 40px;
  15. }
  16.  
  17. .caslon p {
  18.     font-family: BigCaslon;
  19.     font-size: 40px;
  20. }
  21.  
  22. *{
  23.     margin:0;
  24.     padding:0;
  25. }
  26. body{
  27.     background:#000;
  28.     width:12000px;
  29.     position:absolute;
  30.     top:0px;
  31.     left:0px;
  32.     bottom:0px;
  33. }
  34.  
  35. #introduction {
  36.     width: 700px;
  37.     height: 558px;
  38.     text-align: right;
  39.     position: relative;
  40.     margin-left: auto;
  41.     margin-right: auto;
  42. }
  43.  
  44. #introduction h1 {
  45.     font-family: FuturaStd-Bold;
  46.     font-size: 115pt;
  47.     line-height: 75pt;
  48.     color: #e30048;
  49.     text-align: right;
  50.     position: absolute;
  51.     right: 0px;
  52.     top: 0px;
  53. }
  54.  
  55. .section{
  56.     margin:0px;
  57.     bottom:0px;
  58.     width:1920px;
  59.     float:left;
  60.     height:100%;
  61.     text-shadow:1px 1px 2px #f0f0f0;
  62. }
  63.  
  64. .section h2{
  65.     margin:50px 0px 30px 50px;
  66. }
  67.  
  68. .section p{
  69.     margin:20px 0px 0px 50px;
  70.     width:600px;
  71. }
  72. .black{
  73.     color:#fff;
  74.     background:#000;
  75.     background-image: url('../img/bg-b.png');
  76. }
  77. .white{
  78.     color:#000;
  79.     background:#fff;
  80.     background-image: url('../img/bg-n.png');
  81. }
  82. .section ul{
  83.     list-style:none;
  84.     margin:20px 0px 0px 550px;
  85. }
  86. .black ul li{
  87.     float:left;
  88.     padding:5px;
  89.     margin:5px;
  90.     color:#aaa;
  91. }
  92. .black ul li a{
  93.     display:block;
  94.     color:#f0f0f0;
  95. }
  96. .black ul li a:hover{
  97.     text-decoration:none;
  98.     color:#fff;
  99. }
  100. .white ul li{
  101.     float:left;
  102.     padding:5px;
  103.     margin:5px;
  104.     color:#aaa;
  105. }
  106. .white ul li a{
  107.     display:block;
  108.     color:#222;
  109. }
  110. .white ul li a:hover{
  111.     text-decoration:none;
  112.     color:#000;
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement