Advertisement
Guest User

Untitled

a guest
Jan 30th, 2017
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.73 KB | None | 0 0
  1. /*
  2.  * This is a manifest file that'll be compiled into application.css, which will include all the files
  3.  * listed below.
  4.  *
  5.  * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
  6.  * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
  7.  *
  8.  * You're free to add application-wide styles to this file and they'll appear at the bottom of the
  9.  * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
  10.  * files in this directory. Styles in this file should be added after the last require_* statement.
  11.  * It is generally better to create a new file per style scope.
  12.  *
  13.  *= require_tree .
  14.  *= require_self
  15.  */
  16.  
  17.  html, body {
  18.   margin: 0;
  19.   padding: 0;
  20.   background: White;
  21.   color: DarkSlateGrey;
  22.   font-family: Tahoma, Verdana, sans-serif;
  23.   font-size: 10pt;
  24. }
  25. div.main {
  26.   margin-top: 20px;
  27.   padding-left: 10px;
  28.   padding-right: 10px;
  29.   width:  96%;
  30. }
  31. a {
  32.   background: transparent;
  33.   color: maroon;
  34.   text-decoration: underline;
  35.   font-weight: bold;
  36. }
  37. h1 {
  38.   margin: 0 0 0;
  39.   padding: 10px;
  40.   text-align: center;
  41.   font-size: 2em;
  42.   font-style: normal;
  43. }
  44. h1.title {
  45.   margin: 0 0 0;
  46.   text-align: center;
  47.   font-size: 2em;
  48.   font-style: normal;
  49. }
  50. table#movies {
  51.   margin: 10px;
  52.   border-collapse: collapse;
  53.   width: 100%;
  54.   border-bottom: 2px solid black;
  55. }
  56. table#movies th {
  57.   border: 2px solid white;
  58.   font-weight: bold;
  59.   background-color: wheat;
  60. }
  61. table#movies th, table#movies td {
  62.   padding: 4px;
  63.   text-align: left;
  64. }
  65. #notice, #warning {
  66.   background: rosybrown;
  67. }
  68. form label {
  69.   display: block;
  70.   line-height: 25px;
  71.   font-weight: bold;
  72.   color: maroon;
  73. }
  74.  
  75. div.header {
  76.   width: 100%;
  77.   height: 75px;
  78. }
  79.  
  80. div.header h1.app-title {
  81.   padding-left: 12px;
  82.   color: maroon;
  83.   font-size: 150%;
  84.   text-decoration: none;
  85. }
  86.  
  87. div.header h1.app-title a {
  88.   padding-left: 12px;
  89.   padding-right: 12px;
  90.   color: maroon;
  91.   text-decoration: none;
  92.   font-size: 150%;
  93. }
  94.  
  95. div.header h1.app-title a:hover {
  96.   background-color: #dddddd;
  97.   padding-left: 12px;
  98.   color: orange;
  99.   font-size: 150%;
  100. }
  101.  
  102. ul.menu {
  103.   list-style-type: none;
  104.   margin: 0;
  105.   padding: 0;
  106.   background-color: #dddddd;
  107.   position: fixed;
  108.   width: 100%;
  109. }
  110.  
  111. ul.menu li {
  112.   display: inline;
  113.   color: #000;
  114.   padding: 8px 16px;
  115.   text-decoration: none;
  116.   float: left;
  117. }
  118.  
  119. ul.menu li.menu-item {
  120.   margin-top: 10px;
  121. }
  122.  
  123. ul.menu li a {
  124.   font-size: 120%;
  125.   display: block;
  126.   padding: 8px;
  127.   text-decoration: none;
  128.   background-color: #dddddd;
  129. }
  130.  
  131. /* Change the link color on hover */
  132. ul.menu li a:hover {
  133.   background-color: orange;
  134.   text-decoration: none;
  135.   color: white;
  136. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement