25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

68 lines
2.8 KiB

  1. <style>
  2. #features {
  3. background-color: #384d55;
  4. color: white;
  5. padding-top: 3em;
  6. padding-bottom: 3em;
  7. }
  8. #features .features__img_block{
  9. max-width: 140px;
  10. }
  11. </style>
  12. <template>
  13. <div id="features">
  14. <div class="container">
  15. <div class="row features__row">
  16. <div class="col-md-6">
  17. <div class="media m-y-3">
  18. <a class="media-left media-middle text-xs-center features__img_block" href="#">
  19. <img src="./responsive.png" alt="" class="img-fluid">
  20. </a>
  21. <div class="media-body">
  22. <h4 class="media-heading">{{{ $t('features.responsive_title') }}}</h4>
  23. <p class="lead">{{{ $t('features.responsive') }}}</p>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="col-md-6">
  28. <div class="media m-y-3">
  29. <a class="media-left media-middle text-xs-center features__img_block" href="#">
  30. <img src="./no-cloud.png" alt="" class="img-fluid">
  31. </a>
  32. <div class="media-body">
  33. <h4 class="media-heading">{{{ $t('features.no_cloud_title') }}}</h4>
  34. <p class="lead">{{{ $t('features.no_cloud') }}}</p>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. <div class="row features__row">
  40. <div class="col-md-6">
  41. <div class="media m-y-3">
  42. <a class="media-left media-middle text-xs-center features__img_block" href="#">
  43. <img src="./open-source.png" alt="" class="img-fluid">
  44. </a>
  45. <div class="media-body">
  46. <h4 class="media-heading">{{{ $t('features.open_source_title') }}}</h4>
  47. <p class="lead">{{{ $t('features.open_source') }}}</p>
  48. </div>
  49. </div>
  50. </div>
  51. <div class="col-md-6">
  52. <div class="media m-y-3">
  53. <a class="media-left media-middle text-xs-center features__img_block" href="#">
  54. <img src="./free.png" alt="" class="img-fluid">
  55. </a>
  56. <div class="media-body">
  57. <h4 class="media-heading">{{{ $t('features.free_title') }}}</h4>
  58. <p class="lead">{{{ $t('features.free') }}}</p>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </template>