Advertisement
Guest User

boomref.css

a guest
Nov 17th, 2015
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.35 KB | None | 0 0
  1.  
  2. a {
  3.     color: #9f9
  4.  
  5. }
  6.  
  7. /* Anchor tags are not links as such, so make them more subtle. */
  8. a[name] {
  9.     color: #bbf;
  10. }
  11.  
  12. .side-float {
  13.     float: right;
  14.     clear: right;
  15.     font-family: Arial, Helvetica, sans-serif;
  16.     width: 20em;
  17.     border: 1px solid black;
  18.     padding: 10px;
  19.     margin-bottom: 10px;
  20. }
  21.  
  22. .side-float img {
  23.     float: left;
  24.     margin-top: 12px;
  25.     margin-bottom: 12px;
  26.     margin-right: 10px;
  27. }
  28.  
  29. .info-float img {
  30.     /* Give a bit more margin because info floats are taller. */
  31.     margin-top: 20px;
  32.     margin-bottom: 20px;
  33. }
  34.  
  35. .calc-float {
  36.     background-color: #448;
  37. }
  38.  
  39. .video-float {
  40.     background-color: #555;
  41. }
  42.  
  43. .video-popup {
  44.     width: 480px;
  45. }
  46.  
  47. .screenshot-float {
  48.     background-color: #343;
  49. }
  50.  
  51. .screenshot-float img {
  52.     /* Scale to 4:3 aspect ratio */
  53.     width: 80px;
  54.     height: 60px;
  55.     cursor: pointer;
  56. }
  57.  
  58. .screenshot-popup img {
  59.     /* Scale to 4:3 aspect ratio */
  60.     width: 640px;
  61.     height: 480px;
  62. }
  63.  
  64. #content pre {
  65.     margin: 0;
  66.     margin-top: 1em;
  67. }
  68.  
  69. #content p {
  70.     white-space: pre;
  71.     font-family: monospace;
  72.     margin: 0;
  73. }
  74.  
  75. #content p[breakable="true"] {
  76.     margin-top: 1em;
  77.     white-space: normal;
  78. }
  79.  
  80. #content[proportional="true"] p {
  81.     display: block;
  82.     white-space: normal;
  83.     font-family: Helvetica;
  84.     text-align: justify;
  85.  
  86.     width: 34em;
  87.     margin-top: 1em;
  88.     margin-bottom: 1em;
  89. }
  90.  
  91. body {
  92.     background-color: #222;
  93.     color: #fed;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement