Welcome to mirror list, hosted at ThFree Co, Russian Federation.

buttons.css « css « static - github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06e5c2bd4eaf37f24d8b56720217d6c75e4307c5 (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
.btn {
    display: inline-block;
    font-size: 13px;
	border: 1px solid #ffffff;
	padding: 6px 12px;
}

.btn:hover {
    background-color: #bdbdbd4d;
}

a > .btn:hover {
  text-decoration: none;
}

/*
XXX Maybe but this in? Somethimes it's not smooth and that makes it ugly...
.btn, .btn-primary, a.btn-default, a {
    transition: all 0.1s linear;
}
*/

.btn-older-posts {
    float: left;
}

.btn-newer-posts {
    float: right;
}

.btn-home {
    position: absolute;
    left: 20px;
}
@media (min-width: 900px) {
  .btn-home {
    top: 20px;
  }
}