Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.95 KB | None | 0 0
  1. body {
  2.     font-family: Georgia, serif;
  3.     text-align: center;
  4.     background-color: gray;
  5.     text-align: center;
  6. }
  7.  
  8. #header h1 {
  9.     font-size: 50px;
  10.     color: darkblue;
  11.     text-align: center;
  12.     margin: 0;
  13.     padding: 0;
  14. }
  15.  
  16. #container {
  17.     bacground-color: white;
  18.     padding: 20px;
  19.     width: 600px;
  20.     margin: 0 auto;
  21.     text-align: left;
  22.     -moz-border-radius: 7px;
  23.     -webkit-border-radius: 7px;
  24. }
  25.  
  26. #flashMessage {
  27.     background-color: darkblue;
  28.     color: white;
  29.     border: 1px solid black;
  30.     padding: 5px;
  31. }
  32.  
  33. .form-error {
  34.     border: 1px solid darkblue;
  35. }
  36.  
  37. .error-message {
  38.     bacground-color: darkblue;
  39.     color: white;
  40.     border: 1px solid black;
  41.     margin-bottom: 10px;
  42.     width: 100%;
  43. }
  44.  
  45. h2 {
  46.     color: darkblue;
  47. }
  48.  
  49. label {
  50.     display: block;
  51. }
  52.  
  53. input, textarea {
  54.     margin-bottom: 10px;
  55.     width: 100%;
  56. }
  57.  
  58. input[type=text] {
  59.     height: 20px;
  60. }
  61.  
  62. input[type=submit] {
  63.     width= auto;
  64. }
  65.  
  66. table {
  67.     width: 100%;
  68. }
  69.  
  70. th {
  71.     background-color: gray;
  72.     color: white;
  73. }
  74.  
  75. a:link, a:visited {
  76.     color: blue;
  77. }
  78.  
  79. a:hover {
  80.     color: darkblue;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement