HTML

style4.css

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