Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4.  
  5. .container {
  6. width: 80%;
  7. margin: 0 auto;
  8. }
  9.  
  10. .header h1 {
  11. text-align: center;
  12. margin-bottom: 40px;
  13. }
  14.  
  15. .image {
  16. display: inline-block;
  17. float: left;
  18. }
  19.  
  20. .column {
  21. width: 30%;
  22. display: inline-block;
  23. float: left;
  24. padding: 0 20px;
  25. }
  26.  
  27. .main_text {
  28. clear: both;
  29. padding-top: 60px;
  30. }
  31.  
  32. .greyBG {
  33. background-color: #000000;
  34. opacity: 0.5;
  35. filter: alpha(opacity=50);
  36. /* For IE8 and earlier */
  37.  
  38. padding: 2%;
  39. }
  40.  
  41. .skills {
  42. background-color: #ffffff;
  43. opacity: 0.5;
  44. filter: alpha(opacity=50);
  45. /* For IE8 and earlier */
  46.  
  47. padding: 20px;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement