Advertisement
EntranceRT

CSS

Dec 1st, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 6.15 KB | None | 0 0
  1. /*
  2.  
  3.  
  4.   Author:       xxxxx
  5.   Author URI:   http://xxxx.de
  6.  
  7.   Version:      1.3  
  8.  
  9. */
  10.  
  11.  
  12. * {
  13.     margin: 0;
  14.     padding: 0;
  15. }
  16.  
  17. body {
  18.     font: .74em Tahoma, Arial, "Trebuchet MS", Tahoma, sans-serif;
  19.     margin: 10px 0 0 0;
  20.     padding: 0;
  21.     line-height: 1.64em;
  22.     background: #fff;
  23.     color: #444;
  24. }
  25.  
  26. /* Layout
  27. ----------------------------------------------------- */
  28.  
  29. #ram {
  30.     width: 920px;
  31.     margin: 0px auto;
  32. }
  33.  
  34. #header {
  35.     background: url(images/logo.jpg) 0px 5px no-repeat;
  36.     float: left;
  37.     border-bottom: 5px solid #ccc;
  38.     height: 60px;
  39.     width: 870px;
  40.     padding-left: 50px;
  41. }
  42.  
  43. #navi {
  44.     float: right;
  45.     width: 520px;
  46.     padding: 10px 20px 10px 0;
  47.     margin: 21px 0 5px 0;
  48.     border-bottom: 5px solid #e0e0e0;
  49. }
  50.     #navi li {
  51.         font-size: 1.1em;
  52.         display: inline;
  53.     }
  54.    
  55.     #navi li a {
  56.         padding: 17px 15px 0 10px;
  57.         margin: 0 31px 0 0;
  58.         color: #808080;
  59.         border-left: 1px solid #E0E0E0;
  60.     }
  61.    
  62.     #navi li a:hover {
  63.         color: #000;
  64.         border-left: 1px solid #507DB4;
  65.     }
  66.    
  67. #content {
  68.     clear: left;
  69.     float: left;
  70.     width: 550px;
  71.     padding: 0 34px 0 5px;
  72.     margin: 15px 0 15px;
  73.    
  74. }
  75.     #content img {
  76.         border: 1px solid #ccc;
  77.         padding: 1px;
  78.         float: left;
  79.         margin: 0 15px 5px 0;
  80.     }
  81.  
  82. #sidebar {
  83.     position: relative;
  84.     top: 0px;
  85.     margin: 0 15px 0 0;
  86.     padding: 15px;
  87.     float: right;
  88.     width: 284px;
  89.     font-size: .9em;
  90.     background: #fff;
  91.    
  92. }
  93.     #sidebar img {
  94.         border: 1px solid #ccc;
  95.         padding: 1px;
  96.         margin: 0 0 8px;
  97.     }
  98.  
  99. #footer {
  100.     border-top: 1px solid #ccc;
  101.     background: #fff;
  102.     clear: both;
  103.     width: 920px;
  104.     margin: 10px auto 0;
  105.     padding: 0px;
  106.     font-size: .9em;
  107.     color: #9b9b9b;
  108. }
  109.    
  110. /* Links - Verweise
  111. ----------------------------------------------------- */
  112.  
  113. a{
  114.     color: #446FA6;
  115.     text-decoration: none;
  116. }
  117.  
  118. a:visited{
  119.     color: #737373;
  120. }
  121.  
  122. a:visited:hover{
  123.     color: #446FA6;
  124. }
  125.  
  126. a:hover{
  127.     color: #808080;
  128. }
  129.  
  130. #footer a{
  131.     color: #808080;
  132.     font-weight: bold;
  133.    
  134. }
  135.  
  136. h2 a{
  137.     font-weight: normal;
  138. }
  139.  
  140. /* Headlines
  141. ----------------------------------------------------- */
  142.  
  143. h1{
  144.     font: normal 2.7em Georgia, Arial, Sans-Serif;
  145.     margin: 15px 0 0 5px;
  146. }
  147.  
  148. h1 a:hover{
  149.     color: #ddd;
  150. }
  151.  
  152. h2{
  153.     font: bold 1.6em Arial, Sans-Serif;
  154.     margin: 0 0 12px;
  155. }
  156.  
  157.     h2 small{
  158.         display: block;
  159.         color: #737373;
  160.         font-weight: normal;
  161.         font-size: .6em;
  162.     }
  163.  
  164.     #sidebar h2{
  165.         margin: 2px 0px;
  166.     }
  167.  
  168. h3{
  169.     color: #808080;
  170.     font-weight: normal;
  171.     font-size: 1.2em;
  172. }
  173.  
  174. h4{
  175.     color: #444444;
  176.     font-weight: bold;
  177.     font-size: 1.2em;
  178.     margin: 0 0 0px;
  179. }
  180.     h4 small{
  181.         display: block;
  182.         color: #808080;
  183.         font-weight: normal;
  184.         font-size: .8em;
  185.     }
  186.  
  187. /* Sonstiges
  188. ----------------------------------------------------- */
  189.  
  190. p { padding: 5px; margin:0px; }
  191.  
  192. ul{
  193.     list-style: square;
  194.     margin-left: 25px;
  195. }
  196.  
  197. blockqoute{
  198.    
  199. }
  200. .blue{ color: #507DB4;}
  201.  
  202. .info {
  203.     border: 1px solid #e0e0e0;
  204.     background: #F8F8F8;
  205.     padding: 8px;
  206.     margin: 0 0 5px;
  207. }
  208.  
  209. .right{
  210.     float: right;
  211.     padding: 0 0 0 15px;
  212.    
  213. }
  214.  
  215. .left{
  216.     text-align: left;
  217. }
  218.  
  219. .clear_left{ clear: left; }
  220.  
  221. .center{ text-align: center; }
  222.  
  223. .error{
  224.     padding: 5px;
  225.     border: 1px solid #D53F11;
  226.     background: #FEF1ED;
  227. }
  228.     .error h2{
  229.         padding: 0px 0px 5px 2px;
  230.         font-size: 1.2em;
  231.         border-bottom: 1px dotted #F06C46;
  232.     }
  233.    
  234. .hr{
  235.     border-bottom: 1px dashed #e0e0e0;
  236.     padding: 5px 2px;
  237.     margin: 5px 0px;
  238. }
  239.  
  240. .news{
  241.     border-bottom: 2px solid #E0E0E0;
  242.     padding: 5px 2px;
  243.     margin: 0px 0px 10px;
  244. }
  245.  
  246. pre, code {
  247.     border: 1px solid #eee;
  248.     font-size: 1.2em;
  249.     display: block;
  250.     padding: 3px;
  251.     overflow: auto;
  252.     color: black;
  253. }
  254. /* Seitennavigation
  255. ----------------------------------------------------- */
  256. #navigation A {
  257.     border: 1px solid #E0E0E0;
  258.     margin: 0 1px;
  259.     padding: 4px 7px;
  260.     color: #444;
  261.     font-weight: bold;
  262.     text-decoration: none;
  263. }
  264.  
  265. #navigation A:visited {
  266.     color: #507DB4;
  267.     font-weight: normal;
  268.     text-decoration: none;
  269. }
  270.  
  271. #navigation A:hover, #navigation A:active {
  272.     border: 1px solid #507DB4;
  273.     background: #F8F8F8;
  274.     color: #737373;
  275.     text-decoration: none;
  276. }
  277.  
  278. .current {
  279.     border: 1px solid #E0E0E0;
  280.     padding: 4px 7px;
  281.     color: #444;
  282. }
  283.  
  284. .pages{
  285.     border: 1px solid #E0E0E0;
  286.     padding: 2px 7px;
  287.     float: right;
  288.     margin: -3px 0 0;
  289. }
  290.  
  291. /* Tab list
  292. ----------------------------------------------------- */
  293.  
  294. .list ul{
  295.     margin: 0;
  296.     padding: 0;
  297. }
  298.  
  299. .list li  {
  300.     border-top: 2px solid #E0E0E0;
  301.     list-style:none inside none;
  302.  
  303.     padding: 4px 5px;
  304.     margin: 0 0px 0 -25px;
  305. }
  306.  
  307.     * html .list li{
  308.         margin: 0 0 0 -15px;
  309.     }
  310.  
  311.     .list li small{
  312.         display: block;
  313.         margin-top: -5px;
  314.         color: #808080;
  315.     }
  316.  
  317. .list li.last {
  318.     margin: 0;
  319. }
  320.  
  321. /* Formulars
  322. ----------------------------------------------------- */
  323.  
  324. fieldset{
  325.     padding: 10px 10px;
  326.     margin: 0px 0px 5px;
  327.  
  328.     border-top: 2px solid #737373;
  329.     border-bottom: 2px solid #737373;
  330.     border-left: none;
  331.     border-right: none;
  332. }
  333.  
  334.     .bbcode img{
  335.         margin: 5px 1px ! important;
  336.         padding: 3px ! important;
  337.         float: none ! important;
  338.     }
  339.  
  340. legend{
  341.     padding: 5px 10px;
  342.     font-size: 1.6em;
  343.     color: #808080;
  344. }
  345.  
  346. label{
  347.     display: block;
  348.     font-weight: bold;
  349. }
  350.  
  351. input, textarea{
  352.     font: 1.1em Tahoma, Arial, "Trebuchet MS", Tahoma, sans-serif;
  353.     border: 1px solid #e0e0e0;
  354.     background: #fff;
  355.     margin: 0px 0px 1px;    
  356.     padding: 2px;
  357. }
  358.  
  359. input, select { width: 280px;}
  360.  
  361. .button{
  362.     width: 150px;
  363.  
  364.     background: #F8F8F8 url(images/newslist.jpg) center repeat-x;
  365.     border: 1px solid #E0E0E0;
  366.     border-radius: 5px;
  367.        
  368.     -moz-border-radius: 11px;
  369.     -khtml-border-radius: 11px;
  370.     -webkit-border-radius: 11px;
  371. }
  372.  
  373. .the_button{
  374.     display: block;
  375.     width: 200px;
  376.     padding: 2px 10px;
  377.     margin: 5px 0px;
  378.     text-align: center;
  379.     outline:none;
  380.     color: #444444 ! important;
  381.    
  382.     background: #F8F8F8 url(images/newslist.jpg) center repeat-x;
  383.     border: 1px solid #E0E0E0;
  384.     border-radius: 5px;
  385.    
  386.     -moz-border-radius: 11px;
  387.     -khtml-border-radius: 11px;
  388.     -webkit-border-radius: 11px;
  389. }
  390.  
  391. .the_button:hover{
  392.     color: #507DB4 ! important;
  393. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement