blob: 02ccba84f385d4af9dd43fdc06bddf681f9f9c0d (
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
|
#django-logo {
height: 20px;
background: url(https://static.djangoproject.com/img/logos/django-logo-negative.png) no-repeat center;
filter: grayscale(1) invert(0.04);
background-size: 50px;
background-position: 0 0;
color: #00000000;
}
#bulma-logo {
padding-left: 18px;
height: 20px;
background: url(https://bulma.io/images/bulma-logo-white.png) no-repeat center;
background-size: 60px;
color: #00000000;
}
#pydis-text {
font-weight: bold;
}
body.site {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main.site-content {
flex: 1;
}
|