about summary refs log tree commit diff
path: root/assets/public/css/app.css
blob: e23d13dc3a6ef4976408ab4646be8604d17155ee (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
html,
body,
#app {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: 35px;
    font-weight: 400;
}

p {
    color: #626262;
    font-size: 16px;
    margin-bottom: 30px;
}

main {
    display: flex;
    align-items: center;
    height: 100%;
    margin: auto;
    justify-content: space-between;
    width: 75%;
}

@media (max-width: 850px) {
    main {
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }

    .left-segment {
        margin-top: 10rem;
    }
}

@media (min-width: 1400px) {
    main {
        width: 50%;
    }
}

.left-segment {
    width: 315px;
    box-sizing: border-box;
}

.right-segment {
    width: 315px;
    box-sizing: border-box;
}