blob: 3a676b16eb2736fcf5374e41b4ef2d07cb3f18ad (
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
|
/******************************************************************************
* Content
******************************************************************************/
body {
padding-bottom: 70px;
color: var(--global-text-color);
background-color: var(--global-bg-color);
}
body.fixed-top-nav {
// Add some padding for the nav-bar.
padding-top: 56px;
}
body.sticky-bottom-footer {
// Remove padding below footer.
padding-bottom: 0;
}
.container {
max-width: $max-content-width;
}
// Profile
.profile {
img {
width: 100%;
}
}
// TODO: redefine content layout.
/******************************************************************************
* Publications
******************************************************************************/
// TODO: redefine publications layout.
/*****************************************************************************
* Projects
*****************************************************************************/
// TODO: redefine projects layout.
|