HTML

style1.css

Feb 7th, 2018
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.26 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.             margin-left:100px;
  26.             padding:10px;
  27.             background-color:#FFF;
  28.             overflow:auto;
  29. }
  30. nav {
  31.             float:left;
  32.             width:195px;
  33.             padding:10px;
  34. }
  35. nav a {
  36.             text-decoration:none;
  37.             padding-right:10px;
  38. }
  39. nav button {
  40.             background:#FFF;
  41.             color:#000066;
  42.             margin:5px;
  43.             width:90px;
  44.             height:45px;
  45.             font-size:1.2em;
  46.             border:2px solid #000066;
  47.             -moz-transition:all .2s ease-in;
  48.             -o-transition:all .2s ease-in;
  49.             -webkit-transition:all .2s ease-in;
  50. }
  51. nav button:hover, nav button.current {
  52.             background:#000066;
  53.             color:#FFF;
  54. }
  55. nav ul {
  56.             list-style-type:none;
  57. }
  58. * {
  59.             box-sizing:border-box;
  60. }
  61. .galleryitem {
  62.             border:0px solid #000;
  63.             max-width:30%;
  64.             width:30%;
  65.             height:275px;
  66.             margin:3px 3px 0px 3px;
  67.             float:left;
  68.             vertical-align:top;
  69. }
  70. #gallery {
  71.             margin-left:auto;
  72.             margin-right:auto;
  73. }
  74. #wrapper {
  75.             width:1024px;
  76.             margin-left:auto;
  77.             margin-right:auto;
  78.             background:#EAEAEA;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment