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
|
.site-title {
@extend .noselect;
background-image: linear-gradient(to bottom, darken($gentoo-purple-grey, 10%) 0%, $gentoo-purple-grey 20%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbeb8db', endColorstr='#ffdddaec', GradientType=0);
background-color: #eeeeee;
height: 63px;
}
.site-label {
@extend .badge;
background-color: $gentoo-purple;
color: white;
cursor: default;
padding: 0.55em;
border-radius: 2.625px;
}
.site-label-svg-fix {
vertical-align: 225%;
}
.site-title-buttons {
margin-top: 1em;
margin-right: 1em;
@extend .float-right;
}
.site-title-button-group {
@extend .btn-group;
}
.site-title-button-group > .btn {
@extend .btn-sm;
}
.get-gentoo {
@extend .btn;
@extend .btn-primary;
@extend .d-none;
@extend .d-sm-block;
}
.btn-group-sm > .get-gentoo {
color: white;
padding: 5px 10px;
}
@include media-breakpoint-down(xs) {
.gentoo-org-sites {
border-top-left-radius: $border-radius-small !important;
border-bottom-left-radius: $border-radius-small !important;
}
}
.gentoo-org-sites:active:hover, .gentoo-org-sites.active:hover, .show > .dropdown-toggle.gentoo-org-sites:hover, .gentoo-org-sites:active:focus, .gentoo-org-sites.active:focus, .show > .dropdown-toggle.gentoo-org-sites:focus, .gentoo-org-sites:active.focus, .gentoo-org-sites.active.focus, .show > .dropdown-toggle.gentoo-org-sites.focus {
background-color: #d4d4d4;
border-color: #8c8c8c;
box-shadow: none;
}
.gentoo-org-sites:focus, .focus.get-gentoo, .focus.gentoo-org-sites {
box-shadow: none !important;
}
.gentoo-org-sites {
@extend .btn;
background-color: #fff;
border-color: #ccc;
}
.logo {
@extend .noselect;
display: inline-block;
cursor: default;
}
.site-logo {
display: inline-block;
height: 63px;
object {
pointer-events: none;
vertical-align: middle;
}
}
body {
border-top: 1px solid $gentoo-purple;
}
|