aboutsummaryrefslogtreecommitdiff
path: root/src/routes/_layout.svelte
blob: bab4188463a3e500dfc0c7cc46119ba9d0a43d00 (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
<script lang="ts">
</script>

<style>
    .app-container  {
        font-family: Roboto, sans-serif;
        font-size: 1rem;
        letter-spacing: 0.05em;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        --bg-opacity: 1;
        background-color: #1a202c;
        background-color: rgba(26, 32, 44, var(--bg-opacity));
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    @media (min-width: 640px) {
        .app-container  {
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            font-family: Roboto, sans-serif;
            font-size: 1rem;
            letter-spacing: 0.05em;
            height: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            width: 375px;
            height: 812px;
        }
    }

    .menu-button {
        position: relative;
        top: .25rem;
        left: .75rem;
        color: #ffffff;
        font-size: 1.5rem;

    }

</style>

<div class="app-container">
    <!-- <div class="menu-button">
        <i class="fas fa-bars"></i>
    </div> -->

    <slot></slot>
</div>