senkesha

exposition css

Oct 5th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.14 KB | None | 0 0
  1. /*basic declaration*/
  2. body {
  3.     font-family: tahoma, sans-serif;
  4.     font-size: 12px;
  5.     color: #000;
  6.     background: #000;
  7. }
  8.  
  9. pre {
  10.     white-space: pre-wrap;
  11.     word-wrap: break-word;
  12. }
  13.  
  14. a {
  15.     text-decoration: none;
  16. }
  17.  
  18. /*wrapper*/
  19. #wrapper {
  20.     margin: 0 auto;
  21.     width: 700px;
  22.     overflow: hidden;
  23.     display: block;
  24. }
  25.  
  26. /*container*/
  27. #container {
  28.     width: 690px;
  29.     height: 560px;
  30.     background: #fff;
  31.     display: inline-block;
  32.     vertical-align: top;
  33.     border: 1px solid #fff;
  34.     margin-top: 50%;
  35.     transform: translateY(-50%);
  36.     margin-bottom: -39%;
  37. }
  38.  
  39. /*column div*/
  40. #nav-column {
  41.     width: 235px;
  42.     background: #000;
  43.     vertical-align: top;
  44.     display: inline-block;
  45.     border-right: 1px solid red;
  46.     color: #fff;
  47.     height: 100%;
  48. }
  49.  
  50. /*scrollbar text*/
  51. #content {
  52.     height: 555px;
  53.     overflow: auto;
  54.     width: 450px;
  55.     display: inline-block;
  56.     margin: 10px;
  57.     padding: 5px;
  58.     font-family: Tahoma, sans-serif;
  59.     font-size: 12px;
  60.     text-align: justify;
  61.     line-height: 105%;
  62. }
  63.  
  64. #content a, #content a:visited, #content a:active {
  65.     color: #0000ec;
  66.     transition: all 0.4s ease-in;
  67. }
  68.  
  69. #content a:hover {
  70.     color: #000;
  71. }
  72.  
  73. #content p {
  74.     margin: 3px 0;
  75. }
Add Comment
Please, Sign In to add comment