about summary refs log tree commit diff
path: root/css/default.css
blob: d61b8af0770c766447e61ddc40a3a4b10eb99d67 (plain) (blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
html {
     /* to allow the #footer to be properly positioned
    at the bottom, even when #content is longer than
    the viewport high */
    min-height: 100%;
    position: relative;
}

body {
    color: black;
    font-size: 16px;
    margin: 0px;
}

header {
    margin-bottom: 0px;
    padding: 50px;
    background: linear-gradient(to right,#19111f 0%,#2c1e37 100%);
}

div.logo a {
    color: #FFFFFF;
    float: left;
    font-family:  sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

header nav {
    text-align: right;
}

header nav a {
    color: #d1cddc!important;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-left: 12px;
    text-decoration: none;
    text-transform: uppercase;
}

header nav a:hover{
  color: #FFFFFF;
}

main {
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 5.5rem; /* footer-height + 1.5rem */
}

main h1{
  color: #6e618d;
  font-size: 25px;
  font-family: sans-serif;
}

main h2{
  color: #6e618d;
  font-size: 20px;
  font-family: sans-serif;
}

main, /* this line for archives page */
main p{
    color: #333333;
    font-family: sans-serif;
    font-size: 15px;
}

main a{
  color: #428bca;
  text-decoration: none;
}

footer {
    color: #999999;
    font-size: 12px;
    text-align: center;
    height: 4em;
    background-color: #323232;
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    padding-top: 1em;
    font-family: sans-serif;
}

footer a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

section.header {
    color: #555;
    font-size: 14px;
    font-style: italic;
}