summaryrefslogtreecommitdiff
path: root/discord/psycho/css/main.css
blob: 256f11729284f60dfbf67dae40a7a0436aec2359 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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;
    box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
  0 41.8px 33.4px rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12)
;
}

#vid {
    position: fixed;
    min-width: 103%;
    min-height: 103%;
    opacity: 0.5;
    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%
}