Facebook
From css, 1 Month ago, written in Plain Text.
This paste is a reply to biblioteka from css - view diff
Embed
Download Paste or View Raw
Hits: 120
  1. *{
  2.     font-family: Verdana;
  3. }
  4. header,footer{
  5.     background-color: #004D40;
  6.     color: white;
  7.     padding: 10px;
  8.     text-align: center;
  9. }
  10. aside{
  11.     background-color: #80CBC4;
  12.     color: white;
  13.     height: 500px;
  14.     width: 30%;
  15.     float: left;
  16. }
  17. main{
  18.     background-color: #E0F2F1;
  19.     height: 500px;
  20.     width: 30%;
  21.     text-align: center;
  22.     float: left;
  23. }
  24. section{
  25.     height: 250px;
  26.     width: 40%;
  27.     float: left;
  28. }
  29. #d1{
  30.     background-color: #E0F2F1;
  31. }
  32. #d2{
  33.     background-color: #B2DFDB;
  34. }
  35. h3{
  36.     text-align: center;
  37. }
  38. img{
  39.     padding: 5px;
  40.     height: 150px;
  41.     border-style: dotted;
  42.     border-width: 1px;
  43.     border-color: #004D40;
  44.     border-radius: 5px;
  45. }
  46. input{
  47.     margin: 10px;
  48. }
  49.