Guest User

Untitled

a guest
Oct 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. .lista_servicos{
  2. margin-top: 100px;
  3. li{
  4. margin-bottom: 50px;
  5. .box{
  6. padding: 50px;
  7. box-shadow: 15px 25.981px 60px 0px rgba(23, 20, 15, 0.2);
  8. .imagem{
  9. margin-bottom: 50px;
  10. }
  11. .nome_servico{
  12. font-family: $fonte;
  13. font-size: 28px;
  14. font-weight: 600;
  15. margin-bottom: 35px;
  16. min-height: 40px;
  17. img{
  18. margin-top: -3px;
  19. margin-right: 15px;
  20. }
  21. }
  22. .descricao{
  23. padding: 0px;
  24. margin-bottom: 50px;
  25. min-height: 190px;
  26. *{
  27. text-align: center;
  28. }
  29. }
  30. }
  31. &:nth-of-type(odd){
  32. .box{
  33. background: $primaria;
  34. .imagem{
  35. img{
  36. filter: grayscale(100%) brightness(10);
  37. }
  38. }
  39. .nome_servico{
  40. color: $branco;
  41. }
  42. .descricao{
  43. *{
  44. color: $branco;
  45. }
  46. }
  47. .botao{
  48. @extend .transparente;
  49. }
  50. }
  51. }
  52. &:nth-of-type(even){
  53. .box{
  54. background: $branco;
  55. .nome_servico{
  56. color: $primaria;
  57. }
  58. .descricao{
  59. *{
  60. color: $primaria;
  61. }
  62. }
  63. .botao{
  64. @extend .transparente_azul_escuro;
  65. }
  66. }
  67. }
  68. }
  69. }
Add Comment
Please, Sign In to add comment