aboutsummaryrefslogtreecommitdiff
path: root/src/components/greeter/Greeter.css
blob: 510164696f9660fd871876d7663178f054b8f3d9 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.container {
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #2f2f2f;
    color: #dedede;
}

.cockatoo {
    font-size: 0.4em;
    padding-right: 4em;
}

.contentContainer {
    max-width: 40vw;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.infoContainer {
    padding-top: 2rem;
    
    display: flex;
    justify-content: center;
    font-size: 0.70em;
    text-align: center;
}
.infoContainer a {
    text-decoration: underline;
    color: white;
}

.footer {
    position: absolute;
    inset: auto 1rem 0.5rem auto;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    font-size: 0.8rem;
}
.footer:hover {
    color: white;
}