Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.35 KB | None | 0 0
  1. /* site.css */
  2. header, footer{
  3.   background-color: lightgray;
  4.   border: solid 1px black;
  5.   font-family: 'Times New Roman', serif;
  6. }
  7.  
  8. footer{
  9.   padding: 10px;
  10.   border-radius: 3px;
  11. }
  12.  
  13. body{
  14.   font-family: Segoe UI, Arial, Helvetica, sans-sans-serif;
  15.   font-size: 14px;
  16.   background-color: darkgreen;
  17. }
  18.  
  19. .bordered-image{
  20.   border: solid 1px #444;
  21.   border-radius: 2px;
  22. }
  23.  
  24. #main{
  25.   border: solid 1px #ccc;
  26.   border-radius: 5px;
  27.   color: #202020;
  28.   margin: 20px 0;
  29.   padding: 5px;
  30. }
  31.  
  32. html, body{
  33.   padding: 0;
  34.   margin: 0;
  35. }
  36.  
  37. #results{
  38.   padding: 20px;
  39.   width: 600px;
  40.   display: inline-block;
  41.   vertical-align: top;
  42. }
  43.  
  44.  
  45. .simple-form{
  46.   padding: 2px;
  47.   width: 300px;
  48.   display: inline-block;
  49.   vertical-align: top;
  50. /*  position: absolute;
  51.   bottom: 5px;
  52.   right: 5px;
  53. */}
  54.  
  55. .simple-form label{
  56.   font-weight: bold;
  57. }
  58.  
  59. .simple-form input[type=text],
  60. .simple-form select,
  61. .simple-form input[type=password],
  62. .simple-form textarea{
  63.   width: 150px;
  64. }
  65.  
  66. a{
  67.   color: green;
  68. }
  69.  
  70. #main input[type=submit]{
  71.   background-color: green;
  72.   color: white;
  73.   border-radius: 15px;
  74.   padding: 3px;
  75.   margin-top: 5px;
  76. }
  77.  
  78. .container{
  79.   width: 989px;
  80.   margin: 0 auto;
  81.   background-color: white;
  82.   padding: 5px;
  83. }
  84.  
  85. header nav {
  86.   float: right;
  87.   margin-right: 5px;
  88. }
  89.  
  90. header nav li{
  91.   display: inline;
  92.   font-size: 12px;
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement