HTML

style.css (site1)

Feb 23rd, 2017
184
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.29 KB | None | 0 0
  1. body {
  2.     background-color:black;
  3.     font-family:courier;
  4. }
  5. h1,h2 {
  6.     font-family:Verdana;
  7.     color:#4095BF;
  8. }
  9. h2 {
  10.     color:#4095BF;
  11. }
  12. header {
  13.     background-color:#4095BF;
  14.     color:white;
  15.     width:800px;
  16.     padding:10px;
  17.     margin-left:auto;
  18.     margin-right:auto;
  19. }
  20. /*force the ordered list to appear inline, horiztonally */
  21. nav ul li {
  22.     display:inline-block;
  23.     background-color:yellow;
  24.     padding:10px;
  25.     font-size:1.2em;
  26.     width:15%;
  27.     text-align:center;
  28.     color:#000;
  29. }
  30. nav a {
  31.     color:darkgray;
  32. }
  33. footer {
  34.     background-color:white;
  35.     font-size:.7em;
  36.     width:800px;
  37.     padding:10px;
  38.     margin-left:auto;
  39.     margin-right:auto;
  40. }
  41. /*the id is used to make layout on the center of the page*/
  42. #wrapper {
  43.     background-color:darkgray;
  44.     width:800px;
  45.     margin-left:auto;
  46.     margin-right:auto;
  47.     color:white;
  48.     padding:10px;
  49. }
  50. /*the class to use on divs to make them appear next to each other*/
  51. /*the width of these divs is set to be half the width of the wrapper, minus 5 for margin and 5 for padding*/
  52. .left {
  53.     float:left;
  54.     display:inline-block;
  55.     background-color:white;
  56.     width:290px;
  57.     margin:5px;
  58.     padding:5px;
  59.     clear:both;
  60.     color:black;
  61.     height:100%;
  62. }
  63. .right {
  64.     display:inline-block;
  65.     width:400px;
  66.     margin:5px;
  67.     padding:5px;
  68. }
  69. #notes dt {
  70.     font-weight:bold;
  71.     color:#4095BF;
  72.     font-size:1.2em;
  73. }
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment