Advertisement
Eulis

description-section-rebase-css

Oct 2nd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. .description-section-container{
  2. display: flex;
  3. flex-direction: column;
  4. /* width: 100%; */
  5. align-items: flex-start;
  6. justify-content: center;
  7. height: fit-content;
  8. min-height: 35vh;
  9. padding: 15px 50px 15px 50px;
  10. }
  11. .description-section-title-container{
  12. display: flex;
  13. align-items: flex-start;
  14. flex-direction: column;
  15. width: 35%;
  16. }
  17. .description-section-title{
  18. color: #1E1E1E;
  19. font-size: 0.9rem;
  20. letter-spacing: 4px;
  21. text-transform: uppercase;
  22. text-align: left;
  23. }
  24. .description-section-subtitle{
  25. color: #1E1E1E;
  26. font-size: 1rem;
  27. letter-spacing: 6px;
  28. text-transform: uppercase;
  29. padding-top: 8px;
  30. text-align: left;
  31. font-weight: 600;
  32. }
  33. .description-section-text{
  34. text-align: start;
  35. column-count: 2;
  36. /* column-width: 5%; */
  37. column-gap: 55px;
  38. padding-top: 30px;
  39. font-size: 0.87rem;
  40. column-width: 200px;
  41. }
  42. @media(max-width:1024px){
  43. .description-section-text{
  44. text-align: center;
  45. padding-bottom: 20px;
  46. }
  47. .description-section-subtitle{
  48. text-align: center;
  49. }
  50. .description-section-title{
  51. text-align: center;
  52. }
  53. .description-section-title-container{
  54. width: 100%;
  55. /* height: 60vh; */
  56. }
  57. .description-section-container{
  58. padding: 15px 25px 15px 25px;
  59. height: fit-content;
  60. }
  61. }
  62. @media(max-width: 320px){
  63. .description-section-container{
  64. padding: 25px;
  65. }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement