Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. * { box-sizing: border-box;}
  2.  
  3. .container {
  4. width: 80%;
  5. margin: 0 auto;
  6. }
  7. /*80% of the horizontal space and centered*/
  8.  
  9.  
  10. .header h1 {
  11. text-align: center;
  12. margin-bottom: 40px;
  13. margin-top: 0px;
  14. padding-top: 20px;
  15. padding-bottom: 10px;
  16. box-shadow: 1px 1px 5px grey;
  17. }
  18.  
  19. selector {
  20. position: relative;
  21. }
  22.  
  23. .image {
  24. display: inline-block;
  25. float: left;
  26. }
  27.  
  28. .column {
  29. display: inline-block;
  30. width: 30%;
  31. padding: 0 20px;
  32. float: left;
  33. }
  34.  
  35. .main_text {
  36. clear:both;
  37. padding-top: 60px;
  38. padding-bottom: 50px;
  39. }
  40.  
  41. .back {
  42. position:fixed;
  43. bottom:0px;
  44. height:30px;
  45. width:80%;
  46. margin: 0 auto;
  47. background: white;
  48. padding: 5px 0 0 5px;
  49. box-shadow: 1px -1px 5px grey;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement