Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.30 KB | None | 0 0
  1. .site{
  2.     position: absolute;
  3.  
  4.     width:100%;
  5.     height:100%;
  6.  
  7.     background: #fedd69; /* for non-css3 browsers
  8.     /* Opera  needs an "image" :( - using svg for this so it will scale properly without looking too ugly
  9. background:  url(button.svg) 0 0 no-repeat; */
  10.     background:  url(./../resources/images/gradient.svg) 0 0 no-repeat;
  11.     /* For WebKit (Safari, Google Chrome etc) */
  12.     background: -webkit-gradient(linear, left top, left bottom, from(#fdf4bd), to(#edb000));
  13.     /* For Konqueror */
  14.     background: -khtml-gradient(linear, left top, left bottom, from(#fdf4bd), to(#edb000));
  15.     /* For Mozilla/Gecko (Firefox etc) */
  16.     background: -moz-linear-gradient(top,  #fdf4bd,  #edb000);
  17.     /* For Internet Explorer 5.5 - 7 */
  18.     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdf4bd', endColorstr='#edb000');  
  19.     /* For Internet Explorer 8 */
  20.     F-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdf4bd, endColorstr=#edb000)";
  21.  
  22. }
  23.  
  24. .whole{
  25.     position:relative;
  26.     width:800px;
  27.     height:100%;
  28.     left: 50%;
  29.     margin-left: -400px;
  30.  
  31.     background: #fdf9e3;
  32.  
  33.     box-shadow:7px 15px 20px #333;
  34.     -moz-box-shadow:7px 15px 20px #333;
  35.     -webkit-box-shadow:4px 5px 20px #333;
  36. }
  37.  
  38. .alignTop{
  39.     vertical-align: top;
  40. }
  41.  
  42. .top {
  43.     clear: both;    
  44.     float: none;
  45.     position: relative;
  46.  
  47.     height: 211px;
  48.     width: 100%;
  49.  
  50.     border-bottom: solid black 1px;
  51.  
  52.     text-align: right;
  53.  
  54.     background-image: url(./../resources/images/header.png);
  55.     background-repeat: no-repeat;
  56. }
  57.  
  58. .middel{
  59.     position: relative;
  60.     float: none;
  61. }
  62.  
  63. /* navi: */
  64. .left {
  65.     position: absolute;
  66.  
  67.     width: 160px;
  68.     top: 0;
  69.     bottom: 0;
  70.  
  71.     background-color: #EEE;
  72. }
  73.  
  74. .content {
  75.     position: absolute;
  76.     left: 160px;
  77.     width: 628px;  /*640 - 10padd-left*/
  78.     top: 0;
  79.     bottom: 0;
  80.  
  81.     padding-left:  10px;
  82.  
  83.     padding-top: 10px;
  84.  
  85.     border-left: solid 2px;
  86.     border-color: #edb000;
  87.  
  88. /*     damit der footer nicht überdeckt wird*/
  89.     margin-bottom: 50px;
  90.  
  91.    
  92.  
  93.     background: #f9f7f1; /* for non-css3 browsers
  94.     /* Opera  needs an "image" :( - using svg for this so it will scale properly without looking too ugly*/
  95.     background:  url(./../resources/images/grad_cont.svg) 0 0 no-repeat;
  96.     /* For WebKit (Safari, Google Chrome etc) */
  97.     background: -webkit-gradient(linear, left top, left bottom, from(#eae3cc), to(#fff));
  98.     /* For Konqueror */
  99.     background: -khtml-gradient(linear, left top, left bottom, from(#eae3cc), to(#fff));
  100.     /* For Mozilla/Gecko (Firefox etc) */
  101.     background: -moz-linear-gradient(top,  #eae3cc, #fff);
  102.     /* For Internet Explorer 5.5 - 7 */
  103.     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eae3cc', endColorstr='#fff');
  104.     /* For Internet Explorer 8 */
  105.     F-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#eae3cc, endColorstr=#fff)";
  106. }
  107.  
  108. .bottom {
  109.     float: left;
  110.     clear: both;
  111.     position: relative;
  112.     text-align: center;
  113.  
  114.     height:50px;
  115.     width: 100%;
  116.     /*top: 10px;*/
  117.     left: 50%;
  118.     margin-top: -50px;
  119.     margin-left: -400px;
  120.  
  121.     background-color:#333333;
  122.     font-family: Arial,Helvetica,sans-serif;
  123.     font-size: 10px;
  124.     color: #cccccc;
  125.     vertical-align: baseline;    
  126.  
  127.     box-shadow:7px 15px 20px #333;
  128.     -moz-box-shadow:7px 15px 20px #333;
  129.     -webkit-box-shadow:4px 5px 20px #333;
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement