Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

42 строки
1.3 KiB

  1. <style>
  2. .lesspass-features {
  3. background-color: #0275D8;
  4. }
  5. .lesspass-features ul {
  6. line-height: 1.8em;
  7. font-size: 1.15em;
  8. margin: 0px auto;
  9. padding: 0px;
  10. list-style-type: none;
  11. }
  12. .lesspass-features ul li::before {
  13. content: "";
  14. display: inline-block;
  15. width: 24px;
  16. height: 24px;
  17. background: transparent url("../assets/images/check.png") no-repeat scroll center center / 24px 24px;
  18. margin-right: 10px;
  19. position: relative;
  20. top: 4px;
  21. }
  22. </style>
  23. <template>
  24. <div class="lesspass-features p-y-3 m-t-2">
  25. <div class="container">
  26. <div class="row">
  27. <div class="col-lg-8 col-lg-offset-2">
  28. <h2>{{ $t('features.you_should_use_lesspass') }}</h2>
  29. <ul>
  30. <li>{{{ $t('features.unique_password') }}}&nbsp;;</li>
  31. <li>{{{ $t('features.love_open_source') }}}&nbsp;;</li>
  32. <li>{{{ $t('features.works_everywhere') }}}&nbsp;;</li>
  33. <li>{{{ $t('features.no_cloud') }}}&nbsp;;</li>
  34. <li>{{{ $t('features.only_one_password') }}}.</li>
  35. </ul>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </template>