diff options
| author | s1n <[email protected]> | 2020-03-28 10:31:08 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2020-03-28 10:31:08 -0700 |
| commit | 6b81836e6b9815a2996a55ad37dcaa4d89f99e42 (patch) | |
| tree | 74bb9aa78ca31a6acfffd908e34dfb0df433c707 /links/css | |
| parent | Create .gitignore (diff) | |
| download | cyne.cf-backup-master.tar.xz cyne.cf-backup-master.zip | |
Diffstat (limited to 'links/css')
| -rw-r--r-- | links/css/main.css | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/links/css/main.css b/links/css/main.css new file mode 100644 index 0000000..6050ca8 --- /dev/null +++ b/links/css/main.css @@ -0,0 +1,52 @@ +html { + background: black; +} + +.main { + color: #fff; + font-family: Helvetica,"Helvetica Neue",Arial,"Lucida Grande", sans-serif; + text-align: center; + z-index: 1; + margin: auto; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} + +a:hover { + letter-spacing: 2px; + transition: .5s +} + +#bld:hover { + letter-spacing: 4px; +} + +a { + transition: .5s; + text-decoration: none; + color: #fff; +} + +#vid { + position: fixed; + min-width: 103%; + min-height: 103%; + opacity: 1; + width: auto; + height: auto; + z-index: -100; + transform: translateX(-50%) translateY(-50%); + background-size: cover; + overflow: hidden; + -webkit-filter: blur(15px); + -moz-filter: blur(15px); + -o-filter: blur(15px); + -ms-filter: blur(15px); + filter: blur(15px); + background: rgba(7, 9, 21, .5); + filter: brightness(42.5%); + top: 50%; + left: 50% +}
\ No newline at end of file |