Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. /*about_styles.css*/
  2. * {box-sizing: border-box;}
  3. body {
  4. background-color: #f5f2f2;
  5. color: #008080;
  6. }
  7. .container {
  8. width:80%;
  9. margin: 0 auto;
  10. }
  11. .header h1 {
  12. text-align: center;
  13. background-image: url("../img/purple.jpg");
  14. background-size: contain;
  15. text-decoration: none;
  16. }
  17. .image {
  18. display: inline-block;
  19. float: left;
  20. margin-top: 35px;
  21. }
  22. .column {
  23. border: 4px ridge #008080;
  24. background-color: #330033;
  25. display: inline-block;
  26. width: 37%;
  27. padding: 0 20px;
  28. margin-left: 50%;
  29. }
  30. .intro {
  31. position: relative;
  32. padding: 20px 15px 0px 20px;
  33. margin: 35px 10px 0px 35px;
  34. }
  35. .skills {
  36. position: relative;
  37. float:right;
  38. margin: 35px 0px 20px 20px;
  39. padding-right: 20px;
  40. }
  41. .main_text {
  42. border: 4px ridge #008080;
  43. background-color: #330033;
  44. clear: both;
  45. padding: 2px 15px;
  46. position: relative;
  47. top:35px;
  48. left: -21px;
  49. width: 50%;
  50. margin-left: 25%;
  51. }
  52. #skill_list {
  53. padding: 0 0 0 30px;
  54. margin-left: 0px;
  55. }
  56.  
  57. /*typography*/
  58. h1, h2, h3 {
  59. font-family: 'Open Sans', Futura, Helvetica, Arial, sans-serif;
  60. color: #f5f2f2;
  61. text-transform: uppercase;
  62. text-decoration: underline;
  63. text-align: center;
  64. }
  65. p, li {
  66. font-family: 'Lora', Georgia, Times, Times New Roman, serif;
  67. }
  68. .intro p {
  69. font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
  70. font-size: 1.5em;
  71. font-weight: 500;
  72. -webkit-margin-before: 0;
  73. }
  74. .skills h3 {
  75. text-align: center;
  76. text-transform: uppercase;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement