aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/main.scss
blob: 5aca22bdf9e2f7fe7eed3bdc584df9e4adfc4005 (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
html {
    height: 100%;
    background-size: cover;
}

body {
    font-size: 1.2rem;
    font-family: Arial;
    color: map-get($colors, font);
    margin: 5%;

    .parent {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        height: 100%;

        .item {
            .name {
                width: 100%;
                text-align: center;
                text-transform: uppercase;
                margin-top: -20%;
            }
        }
    }
}