summaryrefslogtreecommitdiff
path: root/examples/simple-catppuccin.css
blob: 1b3945b18ee3cfa9379e3efd6848f8a08e162aed (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
body {
    background-color: #1e1e2e;
    color: #cdd6f4;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(7, 2fr);
    align-items: center;
    gap: 20px;
    margin: 13px;
}

.card {
    background-color: #313244;
    border-radius: 12px;
    text-align: center;
    padding-bottom: 20px;
}

h2 {
    color: #74c7ec;
    margin-bottom: 5px;
}

a {
    color: #bac2de;
    display: block;
    margin: 5px 0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}