KillianMills

SMTStyle.css

Apr 8th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.89 KB | None | 0 0
  1. body{
  2.     background-image: url(images/mountainBackground.jpg);
  3.     /*background-image: url(images/RockStars.gif);*/
  4.     background-size: 100% 100%;
  5.     background-repeat: no-repeat;
  6.     background-attachment: fixed;
  7. }
  8.  
  9. #source{
  10.     padding: 20px;
  11.     margin: 0 0;
  12.     background-color: rgba(52, 73, 94, 0.8);/* transparent*/
  13.     color: white;
  14.     overflow-y: hidden;
  15.     overflow-x: auto;
  16.     padding-right: 20px;
  17.     height: 105px;
  18.     padding-bottom: 32px;
  19. }
  20.  
  21. #result{
  22.     padding: 20px;
  23.     margin: 0 0;
  24.     background-color: rgba(52, 73, 94, 0.8);/* transparent*/
  25.     color: white;
  26.     overflow-y: hidden;
  27.     overflow-x: auto;
  28.     padding-right: 20px;
  29.     height: 105px;
  30.     padding-bottom: 32px;
  31. }
  32.  
  33. /*
  34. <textarea id="source" name="text" wrap="SOFT" tabindex="0" dir="ltr" spellcheck="false" autocapitalize="off" autocomplete="off"
  35. autocorrect="off" class="goog-textarea" style="box-sizing: border-box;
  36. overflow-y: hidden; overflow-x: auto; padding-right: 20px; height: 105px; padding-bottom: 32px;"></textarea>
  37. */
  38.  
  39. /*
  40. <div class="gt-hl-layer" dir="ltr" style="box-sizing: content-box;
  41. width: 578px; height: 65px; left: 0px; top: 0px; padding-left: 8px; padding-right: 20px;"></div>
  42. */
  43.  
  44. /*
  45. .row {
  46.     width: 578px;
  47.     height: 65px;
  48.     left: 0px;
  49.     top: 0px;
  50.     padding-left: 8px;
  51.     padding-right: 20px;
  52. }
  53. */
  54.  
  55. /* Remove the navbar's default margin-bottom and rounded borders */
  56. .navbar {
  57.   margin-bottom: 0;
  58.   border-radius: 0;
  59. }
  60.  
  61. /* Set height of the grid so .sidenav can be 100% (adjust as needed) */
  62. .row.content {height: 450px}
  63.  
  64. /* Set black background color, white text and some padding */
  65. footer {
  66.   position: absolute;
  67.   bottom: 0;
  68.   width: 100%;
  69.   background-color: #34495e;
  70.   color: white;
  71.   padding: 15px;
  72. }
  73.  
  74. /* On small screens, set height to 'auto' for sidenav and grid */
  75. @media screen and (max-width: 767px) {
  76.   .sidenav {
  77.     height: auto;
  78.     padding: 15px;
  79.   }
  80.   .row.content {height:auto;}
  81. }
Add Comment
Please, Sign In to add comment