aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
blob: 36fd15d9acd801dcb5dc0d51a325729f3183f2dc (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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-Thin.ttf);
  font-weight: 100;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-ExtraLight.ttf);
  font-weight: 200;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-ExtraBold.ttf);
  font-weight: 800;
}

@font-face {
  font-family: Inter;
  src: url(/fonts/Inter-Black.ttf);
  font-weight: 900;
}

body {
  max-width: 1050px;
  margin: 0 auto;
  background-color: #282828;
  color: #ebdbb2;
  font-family: Inter;
}

p {
  color: #a89984;
}

a {
  color: #458588;
  font-style: underline;
}

a:visited {
  color: #b16286;
  font-style: underline;
}

a:hover {
  color: #83a598;
  font-style: underline;
}

.navbar {
  padding: 20px 0;
  font-size: 20px;
  display: block;
}

.navbar-title {
  font-weight: 600;
  padding-right: 10px;
  padding-top: 2px;
}

.nav {
  display: inline;
  padding-left: 0;
  padding-bottom: 1px;
}

.navbar-item {
  font-size: 18px;
  padding-right: 10px;
  padding-bottom: 5px;
  list-style-type: none;
  display: inline;
}

.time {
  float: right;
  font-size: 17px;
  padding-top: 2px;
}

img.pfp {
  max-width: 40%;
  border-radius: 15px;
}

.box {
  background-color: #3c3836;
}

.list {
  background-color: #3c3836;
  margin-bottom: 8px;
}

.list a {
  font-weight: bold;
  font-size: 18px;
}

.sidebar {
  max-height: 13em;
  min-height: 13em;
  font-size: 15px;
}

.project img {
  max-width: 100%;
}

footer {
  text-align: center;
  padding: 30px 0;
  color: #7c6f64;
}