Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index2.html 4.2 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>LessPass</title>
  6. <meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  8. <link rel="stylesheet" href="dist/lesspass.min.css">
  9. <style>
  10. html,body{
  11. height: 100%;
  12. }
  13. .header {
  14. color: #233141;
  15. border-bottom: 1px solid #eaeaea;
  16. }
  17. .header a {
  18. color: #233141 !important;
  19. }
  20. .hero {
  21. background: #288feb;
  22. color: #fff;
  23. }
  24. .heroContent {
  25. min-height: 500px;
  26. padding: 100px 0;
  27. }
  28. .componentContent {
  29. min-height: 500px;
  30. display: flex;
  31. flex-direction: column;
  32. justify-content: center;
  33. }
  34. .btn-dark {
  35. color: #ffffff;
  36. background-color: #233141;
  37. border-color: #233141;
  38. }
  39. .btn-dark:hover {
  40. color: #fff;
  41. background-color: #111820;
  42. border-color: #111820;
  43. }
  44. .btn-white {
  45. color: #ffffff;
  46. }
  47. .btn-white:hover {
  48. color: #ffffff;
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <section class="header">
  54. <nav class="navbar navbar-light">
  55. <div class="container">
  56. <a class="navbar-brand" href="#">
  57. <img src="dist/favicon.png" width="30" height="30" class="d-inline-block align-top" alt="">
  58. LessPass
  59. </a>
  60. <ul class="nav navbar-nav float-xs-right">
  61. <li class="nav-item active">
  62. <a class="nav-link"
  63. href="https://addons.mozilla.org/en-US/firefox/addon/lesspass/">
  64. <i class="fa fa-firefox" aria-hidden="true"></i> Firefox Extension
  65. </a>
  66. </li>
  67. <li class="nav-item active">
  68. <a class="nav-link"
  69. href="https://chrome.google.com/webstore/detail/lesspass/lcmbpoclaodbgkbjafnkbbinogcbnjih">
  70. <i class="fa fa-chrome" aria-hidden="true"></i> Chrome Extension
  71. </a>
  72. </li>
  73. <li class="nav-item active">
  74. <a class="nav-link" target="_blank" href="https://blog.lesspass.com/">
  75. Blog
  76. </a>
  77. </li>
  78. </ul>
  79. </div>
  80. </nav>
  81. </section>
  82. <section class="hero">
  83. <div class="container">
  84. <div class="row">
  85. <div class="col-md-5">
  86. <div class="heroContent">
  87. <p>No Sync &nbsp; - &nbsp; Open Source &nbsp; - &nbsp; Free</p>
  88. <h2>Next Gen<br>Password Manager</h2>
  89. <p>Stop wasting your time synchronizing your encrypted vault. Remember one master password to
  90. access your passwords, anywhere, anytime. No sync needed.</p>
  91. <p>
  92. <a href="https://blog.lesspass.com/lesspass-how-it-works-dde742dd18a4#.vbgschksh"
  93. class="btn btn-dark">
  94. How does it works?
  95. </a>
  96. <a href="https://github.com/lesspass/lesspass/" class="btn btn-link btn-white">See source
  97. code</a>
  98. </p>
  99. </div>
  100. </div>
  101. <div class="col-md-5 offset-md-2">
  102. <div class="componentContent">
  103. <div id="lesspass"></div>
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. </section>
  109. <section class="py-3">
  110. <div class="container text-xs-center text-sm-left py-3">
  111. <div class="row">
  112. <div class="col-xs-12">
  113. <small>
  114. Copyright LessPass <br>
  115. Created by <a href="https://twitter.com/guillaume20100">Guillaume Vincent</a>
  116. </small>
  117. </div>
  118. </div>
  119. </div>
  120. </section>
  121. <script src="dist/lesspass.min.js"></script>
  122. </body>
  123. </html>