blob: 418ce8fa44527817875f3ade38e9a5050434e389 (
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
|
html {
height: 100%;
}
body {
display: flex;
flex-direction: column;
height: 100%;
}
.uk-offcanvas-content {
flex: 1 0 auto;
}
.uk-background-secondary .uk-navbar-dropdown-nav .uk-active a {
color: white !important;
}
.uk-background-secondary .uk-navbar-dropdown-nav .uk-nav-header {
color: #666 !important;
text-transform: none !important;
font-weight: bold !important;
font-size: 120% !important;
padding: 0 !important;
}
.uk-background-secondary .uk-navbar-dropdown-nav .uk-nav-header.uk-active {
color: white !important;
}
.uk-background-secondary .uk-navbar-dropbar {
background: #222222 !important;
}
.uk-navbar-container,
.uk-sticky-placeholder,
.uk-navbar-nav > li > a,
.uk-navbar-left > a{
height: 70px;
}
.navbar-logo{
margin-left: -10px;
padding-left: 3px;
margin-top: 2px;
height: 60%
}
.uk-navbar-dropdown {
top: 45px !important;
}
.hover-title a {
visibility: hidden;
opacity: 0;
transition: opacity 200ms ease-in-out;
-moz-transition: opacity 200ms ease-in-out;
-webkit-transition: opacity 200ms ease-in-out;
}
.hover-title:hover a {
visibility: visible;
opacity: 1;
transition: opacity 200ms ease-in-out;
-moz-transition: opacity 200ms ease-in-out;
-webkit-transition: opacity 200ms ease-in-out;
}
.uk-article-title {
margin-bottom: 0 !important;
}
.uk-article-meta {
margin-top: 0 !important;
}
.uk-section {
padding-top: 20px;
padding-bottom: 30px;
}
.uk-heading-divider .uk-article-meta {
margin-bottom: 0;
}
img.uk-border-rounded {
border: 1px #25292f solid;
}
footer {
flex-shrink: 0;
}
footer div.uk-section {
padding: 0 0 0 0;
}
footer div.uk-section div.uk-text-center {
margin-top: 20px;
}
|