Guest User

Untitled

a guest
Jun 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. /* about_styles.css
  2. *
  3. * Main layout for about page.
  4. *
  5. */
  6.  
  7. /* General Styling */
  8. * { box-sizing: border-box; }
  9.  
  10. html,
  11. body {
  12. background-color: #4d4d4d;
  13. color: #FBFBFB;
  14. }
  15.  
  16. .container {
  17. margin: 0 auto;
  18. width: 80%;
  19. }
  20.  
  21. .image img {
  22. width: 100%;
  23. border-radius: 50%;
  24. }
  25.  
  26. /* Column Settings */
  27. .column {
  28. display: inline-block;
  29. float: left;
  30. padding-right: 35px;
  31. width: 33.33333333333333%;
  32. }
  33.  
  34. /* Header Styling */
  35. .header { margin-bottom: 48px; }
  36.  
  37. .header h1 { text-align: center; }
  38.  
  39. /* Content Styling */
  40. .main-text {
  41. padding-top: 40px;
  42. clear: both;
  43. }
Add Comment
Please, Sign In to add comment