HTML

style3.css

Feb 7th, 2018
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.25 KB | None | 0 0
  1. body {
  2.             background:#000066;
  3. }
  4. footer {
  5.             text-align:center;
  6.             font-style:italic;
  7.             background-color:#CCCCFF;
  8.             clear:both;
  9. }
  10. h1 {
  11.             margin:0;
  12.             padding:10px;
  13. }
  14. header {
  15.             background:#CCCCFF;
  16. }
  17.  
  18. img {
  19.             max-width:100%;
  20.             max-height:100%;
  21.             margin:0;
  22.             padding:0;
  23. }
  24. main {
  25.             padding:25px;
  26.             background-color:#FFF;
  27.             overflow:auto;
  28. }
  29. nav {
  30.             float:left;
  31.             width:100%;
  32.             padding:10px;
  33. }
  34. nav a {
  35.             text-decoration:none;
  36.             padding-right:10px;
  37. }
  38. nav button {
  39.             background:#FFF;
  40.             color:#000066;
  41.             margin:5px;
  42.             width:90px;
  43.             height:45px;
  44.             font-size:1.2em;
  45.             border:2px solid #000066;
  46.             -moz-transition:all .2s ease-in;
  47.             -o-transition:all .2s ease-in;
  48.             -webkit-transition:all .2s ease-in;
  49. }
  50. nav button:hover, nav button.current {
  51.             background:#000066;
  52.             color:#FFF;
  53. }
  54. nav li {
  55.             display:inline;
  56. }
  57. ul {
  58.             list-style-type:none;
  59. }
  60. * {
  61.             box-sizing:border-box;
  62. }
  63. #gallery li {
  64.             display:inline-block;
  65.             width:225px;
  66.             padding-bottom:10px;
  67.             margin:10px;
  68.             background-color:#EAEAEA;
  69.             text-align:center;
  70.             font-style:italic;
  71.             font-family:Georgia,serif;
  72. }
  73. #wrapper {
  74.             width:1024px;
  75.             margin-left:auto;
  76.             margin-right:auto;
  77.             background:#EAEAEA;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment