Advertisement
Guest User

Untitled

a guest
May 25th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. font-family: "open sans",sans-serif;
  5. }
  6. .about-section{
  7. width: 100%;
  8. background: #f1f1f1;
  9. padding: 40px 0;
  10. }
  11. .inner-width{
  12. max-width: 1000px;
  13. overflow: hidden;
  14. padding: 0 20px;
  15. margin: auto;
  16. }
  17. .about-section h1{
  18. text-align: center;
  19. }
  20. .border{
  21. width: 100px;
  22. height: 3px;
  23. background: #e74c3c;
  24. margin: 40px auto;
  25. }
  26. .about-section-row{
  27. display: flex;
  28. flex-wrap: wrap;
  29. }
  30. .about-section-col{
  31. flex: 50%;
  32. }
  33. .about{
  34. padding-right: 30px;
  35. }
  36. .about p{
  37. text-align: justify;
  38. margin-bottom: 20px;
  39. }
  40. a {
  41. color: blue;
  42. text-decoration: none;
  43.  
  44. }
  45. .about a:hover{
  46. color: #fff;
  47. background: #e74c3c;
  48. }
  49. .skills{
  50. padding-left: 30px;
  51. }
  52. .skill{
  53. margin-bottom: 10px;
  54. }
  55. .progress{
  56. width: 100%;
  57. height: 12px;
  58. background: #ddd;
  59. border-radius: 12px;
  60. }
  61. .progress-bar{
  62. height: 12px;
  63. background: #e74c3c;
  64. border-radius: 12px;
  65. }
  66. .p1{
  67. width: 90%;
  68. }
  69. .p2{
  70. width: 70%;
  71. }
  72. .p3{
  73. width: 50%;
  74. }
  75. .progress-bar span{
  76. float: right;
  77. margin-right: 6px;
  78. line-height: 13px;
  79. color: #fff;
  80. font-size: 12px;
  81. }
  82. @media screen and (max-width:700px) {
  83. .about-section-col{
  84. flex: 100%;
  85. margin: 10px 0;
  86. }
  87. .about,.skills{
  88. padding: 0;
  89. }
  90. .about{
  91. text-align: center;
  92. }
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement