Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.81 KB | None | 0 0
  1. * {
  2.     box-sizing: border-box;
  3. }
  4. body {
  5.     color: #3F2860;
  6.     background-color: #3F2860;
  7.     font-family: Verdana, Arial, Sans-serif;
  8. }
  9. header {
  10.     background-color: #9BC1C2;
  11.     background-image: url(lilyheader.jpg);
  12.     background-position: right;
  13.     background-repeat: no-repeat;
  14.     height: 150px;
  15. }
  16. h1 {
  17.     padding-top: 50px;
  18.     padding-left: 2em;
  19. }
  20. nav {
  21.     text-align: center;
  22.     font-weight: bold;
  23.     padding: 1em;
  24.     float: left;
  25.     width: 190px;
  26. }
  27. nav ul {
  28.     list-style: none;
  29.     padding-left: 0;
  30.     font-size: 1.2em;
  31. }
  32. nav a {
  33.     text-decoration: none;
  34.     display: block;
  35.     text-align: center;
  36.     font-weight: bold;
  37.     border: 3px #CCC;
  38.     padding: 1em;
  39.     margin-bottom: 1em;
  40.     border: 3px #CCCCCC outset;
  41. }
  42. nav a:link {
  43.     color: #3F2860;
  44. }
  45. nav a:visited {
  46.     color: #497777;
  47. }
  48. nav a:hover {
  49.     color: #A26100;
  50.     border: 3px #333 inset;
  51. }
  52. main {
  53.     padding-top: 0px;
  54.     padding-left: 3em;
  55.     padding-right: 3em;
  56.     padding-bottom: 3em;
  57.     display: block;
  58.     margin-left: 170px;
  59. }
  60. li {
  61.     font-size: 90%;
  62. }
  63. dt {
  64.     font-weight: bold;
  65. }
  66. footer {
  67.     background-color: #9BC1C2;
  68.     text-align: center;
  69.     font-size: small;
  70.     font-style: italic;
  71.     padding: 1em;
  72. }
  73. .floatleft {
  74.     float: left;
  75.     margin-right: 4em;
  76. }
  77. .clear {
  78.     clear: both;
  79. }
  80. #wrapper {
  81.     margin-left: auto;
  82.     margin-right: auto;
  83.     width: 80%;
  84.     min-width: 550px;
  85.     max-width: 1280px;
  86.     color: #3F2860;
  87.     background-color: #F5F5F5;
  88. }
  89. #mathero {
  90.     height: 300px;
  91.     background-image: url(yogamat.jpg);
  92.     background-size: 100% 100%;
  93.     background-repeat: no-repeat;
  94. }
  95. #loungehero {
  96.     height: 300px;
  97.     background-image: url(yogalounge.jpg);
  98.     background-size: 100% 100%;
  99.     background-repeat: no-repeat;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement