Advertisement
JonneOpettaja

staff.css

Jul 24th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.62 KB | None | 0 0
  1. html {
  2.   height: 100%;
  3.   width: 100%;
  4. }
  5.  
  6. body {
  7.   height: 980px;
  8.   width: 100%;
  9.   margin: 0;
  10.   padding: 0;
  11. }
  12.  
  13. header {
  14.   width: 980px;
  15.   height: 40px;
  16.   margin: 0 0 10px 0;
  17.   padding: 0;
  18.   background: #0055DD;
  19.   color: white;
  20. }
  21.  
  22. header h1 {
  23.   margin: 0;
  24.   padding: 5px;
  25.   font-size: 20px;
  26.   font-family: Verdana, Arial, Helvetica, sans-serif;
  27.   text-align: center;
  28. }
  29.  
  30. navigation {
  31.   width: 980px;
  32.   margin: 0;
  33.   padding: 0;
  34.   text-align: center;
  35. }
  36.  
  37. navigation ul {
  38.   width: 980px;
  39.   list-style: none;
  40.   padding: 0;
  41.   margin: 0;
  42. }
  43.  
  44. navigation ul li {
  45.   display: inline;
  46.   margin-right: 1em;
  47. }
  48.  
  49. #content {
  50.   width: 920px;
  51.   min-height: 500px;
  52.   padding: 0 30px;
  53. }
  54.  
  55. footer {
  56.   width: 940px;
  57.   height: 20px;
  58.   margin: 0 0 10px 0;
  59.   padding: 10px 20px;
  60.   background: #0055DD;
  61.   color: white;
  62. }
  63.  
  64. /* Actions */
  65.  
  66. .actions {
  67.   margin-bottom: 1em;
  68. }
  69.  
  70.  
  71. /* Lists */
  72.  
  73. table {
  74.   border-collapse: collapse;
  75.   vertical-align: top;
  76. }
  77.  
  78. table.list {
  79.   width: 100%;
  80. }
  81.  
  82. table.list tr td {
  83.   border: 1px solid #999999;
  84. }
  85.  
  86. table.list tr th {
  87.   border: 1px solid #0055DD;
  88.   background: #0055DD;
  89.   color: white;
  90.   text-align: left;
  91. }
  92.  
  93. /* Forms */
  94.  
  95. dl {
  96.   clear: both;
  97.   overflow: hidden;
  98.   margin: 0.5em 0;
  99. }
  100.  
  101. dt {
  102.   float: left;
  103.   font-weight: bold;
  104.   width: 125px;
  105. }
  106.  
  107. dd {
  108.   float: left;
  109.   margin-left: 1em;
  110. }
  111.  
  112. #operations {
  113.   clear: both;
  114.   margin: 1em 0 1em 75px;
  115. }
  116.  
  117. /* Errors */
  118.  
  119. .errors {
  120.   display: inline-block;
  121.   border: 2px solid red;
  122.   color: red;
  123.   padding: 1em;
  124.   margin-bottom: 1em;
  125. }
  126.  
  127. .errors ul {
  128.   margin-bottom: 0;
  129.   padding-left: 1em;
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement