summaryrefslogtreecommitdiff
path: root/public/styles.css
blob: b92b8a1a1fa8c3fce2005aa5daef14198b053102 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
/* styles.css */

body {
    background-color: #1f1f1f;
    color: #e6e6e6;
    font-family: 'FreeSerif', serif;
    margin: 0;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 20px;
}

.title {
    font-size: 36px;
    font-family: 'Arial Black', sans-serif;
    color: #C4A000;
}

nav ul li.logo img {
    max-height: 70px; 
}

nav ul {
    list-style: none;
    padding: 0;
}

a {
    color: #643f7c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

nav ul li {
    display: inline;
    margin-right: 35px; 
}

nav ul li a {
    color: #716181;
    text-decoration: none;
}

.description {
    margin: 20px auto;
    font-size: 18px;
    max-width: 90%;
    padding: 0 10px;
}

.posts h2 {
    font-size: 24px;
    padding-bottom: 5px;
}

.posts {
    border-top: 1px solid #C0C0C0;
    padding-top: 10px;
}

.posts ul {
    list-style: none;
    padding: 0;
}

.posts ul li {
    margin-bottom: 10px;
}