Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

117 lignes
2.5 KiB

  1. <!DOCTYPE html>
  2. <meta charset="UTF-8">
  3. <title>LessPass</title>
  4. <style>
  5. * {
  6. box-sizing: border-box
  7. }
  8. body {
  9. background-color: #3398EB;
  10. }
  11. .lesspass__login-box {
  12. width: 320px;
  13. position: absolute;
  14. left: 50%;
  15. margin-left: -160px;
  16. padding: 1rem;
  17. }
  18. .lesspass__card {
  19. background-color: #fff;
  20. border-radius: 1px;
  21. }
  22. .sr-only {
  23. position: absolute;
  24. width: 1px;
  25. height: 1px;
  26. padding: 0;
  27. margin: -1px;
  28. overflow: hidden;
  29. clip: rect(0, 0, 0, 0);
  30. border: 0;
  31. }
  32. .lesspass__form-group {
  33. margin-bottom: 1rem;
  34. }
  35. .lesspass__form-control {
  36. background-color: rgb(255, 255, 255);
  37. border-image-outset: 0 0 0 0;
  38. border-radius: 1px;
  39. border: 1px solid rgb(221, 221, 221);
  40. box-sizing: border-box;
  41. color: #454545;
  42. display: inline-block;
  43. font-size: 14px;
  44. font-weight: 400;
  45. height: 42px;
  46. line-height: 20px;
  47. margin: 0;
  48. padding: 9px;
  49. transition-delay: 0s, 0s, 0s;
  50. vertical-align: middle;
  51. width: 100%;
  52. }
  53. .lesspass__button {
  54. background: #2b71b1 linear-gradient(#2375b4, #3384c3) repeat-x;
  55. border-radius: 1px;
  56. border: none;
  57. box-shadow: none;
  58. color: #ffffff;
  59. cursor: pointer;
  60. display: block;
  61. font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  62. font-size: 17px;
  63. font-weight: 500;
  64. margin: 0;
  65. padding: 9px;
  66. text-align: center;
  67. text-shadow: none;
  68. vertical-align: middle;
  69. }
  70. .lesspass__title {
  71. color: #3e4552;
  72. font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  73. font-size: 20px;
  74. font-weight: 400;
  75. margin: 20px 0;
  76. text-rendering: optimizelegibility;
  77. }
  78. </style>
  79. <body>
  80. <div class="lesspass__login-box lesspass__card">
  81. <h2 class="lesspass__title">LessPass Move</h2>
  82. <form class="lesspass__form">
  83. <div class="lesspass__form-group">
  84. <label for="email" class="sr-only">Login</label>
  85. <input id="email"
  86. name="email"
  87. type="email"
  88. class="lesspass__form-control"
  89. placeholder="Email">
  90. </div>
  91. <div class="lesspass__form-group">
  92. <label for="password" class="sr-only">Master Password</label>
  93. <input id="password"
  94. name="password"
  95. type="password"
  96. class="lesspass__form-control"
  97. placeholder="Master Password">
  98. </div>
  99. <div class="lesspass__form-group">
  100. <button type="button" class="lesspass__button">
  101. Log In
  102. </button>
  103. </div>
  104. </form>
  105. </div>
  106. </body>