jebin2 commited on
Commit
a984d3d
Β·
1 Parent(s): 5534454
Files changed (1) hide show
  1. index.html +51 -10
index.html CHANGED
@@ -121,7 +121,7 @@
121
  .card-front,
122
  .card-back {
123
  text-align: center;
124
- padding: 48px 44px;
125
  border-radius: var(--radius);
126
  background: var(--bg-card);
127
  border: 2px solid var(--border);
@@ -141,6 +141,7 @@
141
  top: 0;
142
  left: 0;
143
  right: 0;
 
144
  transform: rotateY(180deg);
145
  z-index: 1;
146
  }
@@ -258,6 +259,28 @@
258
  padding: 0;
259
  margin: 0 0 24px 0;
260
  text-align: left;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  }
262
 
263
  .info-list li {
@@ -644,7 +667,7 @@
644
 
645
  .card-front,
646
  .card-back {
647
- padding: 32px 24px;
648
  }
649
 
650
  .card-front h1 {
@@ -653,14 +676,27 @@
653
 
654
  .login-subtitle {
655
  font-size: 14px;
 
 
 
 
 
656
  }
657
 
658
  .info-list li {
659
- font-size: 12px;
 
 
660
  }
661
 
662
  .info-title {
663
- font-size: 18px;
 
 
 
 
 
 
664
  }
665
  }
666
  </style>
@@ -691,12 +727,17 @@
691
  <div class="back-icon" onclick="flipCard()" title="Back to login">X</div>
692
  <h3 class="info-title">About Paper ✨</h3>
693
  <ul class="info-list">
694
- <li><strong>What is it?</strong> A simple, secure notepad for temporary notes that you can
695
- access from anywhere.</li>
696
- <li><strong>Encryption:</strong> Your notes are encrypted using your password. We never store
697
- your password.</li>
698
- <li><strong>Retention:</strong> Notes are automatically deleted after 2 days of inactivity.</li>
699
- <li><strong>Privacy:</strong> No tracking, no analytics, no cookies. Just notes.</li>
 
 
 
 
 
700
  </ul>
701
  <a href="https://github.com/jebin2/Paper" target="_blank" class="info-link">
702
  πŸ”— View source on GitHub
 
121
  .card-front,
122
  .card-back {
123
  text-align: center;
124
+ padding: 40px 36px;
125
  border-radius: var(--radius);
126
  background: var(--bg-card);
127
  border: 2px solid var(--border);
 
141
  top: 0;
142
  left: 0;
143
  right: 0;
144
+ bottom: 0;
145
  transform: rotateY(180deg);
146
  z-index: 1;
147
  }
 
259
  padding: 0;
260
  margin: 0 0 24px 0;
261
  text-align: left;
262
+ max-height: 200px;
263
+ overflow-y: auto;
264
+ padding-right: 8px;
265
+ }
266
+
267
+ /* Info list scrollbar */
268
+ .info-list::-webkit-scrollbar {
269
+ width: 6px;
270
+ }
271
+
272
+ .info-list::-webkit-scrollbar-track {
273
+ background: var(--bg-tertiary);
274
+ border-radius: 6px;
275
+ }
276
+
277
+ .info-list::-webkit-scrollbar-thumb {
278
+ background: var(--gradient-primary);
279
+ border-radius: 6px;
280
+ }
281
+
282
+ .info-list::-webkit-scrollbar-thumb:hover {
283
+ background: var(--gradient-hover);
284
  }
285
 
286
  .info-list li {
 
667
 
668
  .card-front,
669
  .card-back {
670
+ padding: 28px 20px;
671
  }
672
 
673
  .card-front h1 {
 
676
 
677
  .login-subtitle {
678
  font-size: 14px;
679
+ margin-bottom: 24px;
680
+ }
681
+
682
+ .info-list {
683
+ margin-bottom: 16px;
684
  }
685
 
686
  .info-list li {
687
+ font-size: 11px;
688
+ padding: 6px 0;
689
+ padding-left: 20px;
690
  }
691
 
692
  .info-title {
693
+ font-size: 16px;
694
+ margin-bottom: 12px;
695
+ }
696
+
697
+ .info-link {
698
+ font-size: 11px;
699
+ padding: 8px 12px;
700
  }
701
  }
702
  </style>
 
727
  <div class="back-icon" onclick="flipCard()" title="Back to login">X</div>
728
  <h3 class="info-title">About Paper ✨</h3>
729
  <ul class="info-list">
730
+ <li><strong>What is it?</strong> A secure notepad for temporary notes you can access from
731
+ anywhere.</li>
732
+ <li><strong>Encryption:</strong> Notes encrypted client-side with your password. Never sent to
733
+ server.</li>
734
+ <li><strong>Open Source:</strong> 100% open. Deployed on Hugging Face, Open for everyone to see.
735
+ </li>
736
+ <li><strong>Zero Access:</strong> Even the developer cannot read your notes. Only encrypted
737
+ blobs stored.</li>
738
+ <li><strong>Auto-Delete:</strong> Notes automatically deleted after 2 days of inactivity.</li>
739
+ <li><strong>Pro tip:</strong> Use a strong password! If someone guesses it... well, that's on
740
+ you πŸ˜…</li>
741
  </ul>
742
  <a href="https://github.com/jebin2/Paper" target="_blank" class="info-link">
743
  πŸ”— View source on GitHub