aboutsummaryrefslogtreecommitdiffstats
path: root/src/public/css/style.css
blob: 5677e91c1e8081a4300438ecf6c83a3775104d19 (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
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
    background: #fafafa;
}

header {
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
    padding: 0.75rem 1rem;
}

header nav {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.nav-links a {
    margin-left: 1rem;
    text-decoration: none;
    color: #0095f6;
}

main {
    flex: 1;
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1rem;
    width: 100%;
}

footer {
    text-align: center;
    padding: 1rem;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #dbdbdb;
}

@media (max-width: 600px) {
    header nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}