summaryrefslogtreecommitdiffstats
path: root/src/styles/main.scss
blob: e3fa60236e6a375b50e6a3e5725a7328c3df8f15 (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
::-webkit-scrollbar {
    display: none;
}

html {
    height: 100%;
    background-size: cover;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}
@keyframes blink{
    0%  { opacity: .25;}
    25% { opacity: .5;}
    50% { opacity: .1;}
    75% { opacity: .5;}
    100%{ opacity: .25;}
}
body {
    overflow: hidden;

    .speed {
        font-size: 8rem;
    }
    
    .log {
        display: none;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 1080px;
        background: white;
        font-size: 1.5rem;
    }
}