aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Watermark.js
blob: 2f6c8c6971d504936386113d82d1a46f692b173d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import styled from "styled-components";
import React from "react";
import Footer from "./Footer";

const Logo = styled.div`
    position: fixed;
    bottom: 1em;
    left: 2em;
    opacity: 0.3;
    transition: opacity 0.5s cubic-bezier(.25,.8,.25,1);
    
    &:hover {
        opacity: 1;
    }

    & > h1 {
        font-size: 50px;
        margin: 0 0;
      
        & > a {
            text-decoration: none;
            position: relative;
            color: ${p => p.theme.colors.text};
        }
    }
`
export const Watermark = () => <Logo>
    <h1>
        <a href="https://github.com/jackyzha0/ctrl-v">ctrl-v</a>
    </h1>
    <Footer />
</Logo>