Merge branch 'main' into computer

This commit is contained in:
2025-03-11 11:09:30 +00:00
committed by GitHub
3 changed files with 98 additions and 1113 deletions

View File

@@ -0,0 +1,65 @@
// n is number of stars required
@function multiple-box-shadow ($n)
$value: '#{random(2000)}px #{random(2000)}px #ebebeb'
@for $i from 2 through $n
$value: '#{$value} , #{random(4000)}px #{random(2000)}px #ebebeb'
@return unquote($value)
$shadows-small: multiple-box-shadow(1400)
$shadows-medium: multiple-box-shadow(400)
$shadows-big: multiple-box-shadow(200)
#stars
width: 1px
height: 1px
background: transparent
box-shadow: $shadows-small
animation: animStar 50s linear infinite
&:after
content: " "
position: absolute
top: 2000px
width: 1px
height: 1px
background: transparent
box-shadow: $shadows-small
#stars2
width: 2px
height: 2px
background: transparent
box-shadow: $shadows-medium
animation: animStar 100s linear infinite
&:after
content: " "
position: absolute
top: 2000px
width: 2px
height: 2px
background: transparent
box-shadow: $shadows-medium
#stars3
width: 3px
height: 3px
background: transparent
box-shadow: $shadows-big
animation: animStar 150s linear infinite
&:after
content: " "
position: absolute
top: 2000px
width: 3px
height: 3px
background: transparent
box-shadow: $shadows-big
@keyframes animStar
from
transform: translateY(0px)
to
transform: translateY(-2000px)

File diff suppressed because one or more lines are too long

View File

@@ -33,10 +33,7 @@ pass init email@example.com
#### Import an Existing Password Set
```Shell
pass import <path_to_csv> # Import decrypted passwords
gpg --decrypt passwords.pgp | pass import # Decrypt pass export file
```
You can either use the `pass-import` extension, or download and run the appropriate [official migration script](https://git.zx2c4.com/password-store/tree/contrib/importers/).
#### Clone a `password-store` Repository