-
Notifications
You must be signed in to change notification settings - Fork 10
/
theme.css
82 lines (82 loc) · 1.59 KB
/
theme.css
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
#quickconnect .form-control {
margin-bottom: 10px;
}
.navbar-form-desktop {
display: none;
}
.navbar:first-of-type {
margin-bottom: 0px;
}
.jumbotron {
margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
.jumbotron h1,
.jumbotron .h1 {
font-size: 49px;
}
}
.glyphicon-text,
.pwg-button-text {
display: none;
}
#content .col-outer {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#content .col-inner .col-thumbnail .placeholder {
width: 260px;
height: 180px;
}
.content-grid .col-outer {
margin-top: 10px;
margin-bottom: 10px;
}
.content-grid .col-inner .col-thumbnail {
float: none;
margin-right: 0px;
}
.content-grid .col-inner .caption .description {
display: none;
}
.content-list .col-outer {
margin-top: 20px;
margin-bottom: 20px;
}
.content-list .col-inner .col-thumbnail {
float: left;
margin-right: 20px;
}
.content-list .col-inner .caption .description {
display: block;
}
.copyright {
padding: 30px;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media (min-width: 992px) {
.navbar-form-desktop {
display: block;
}
.dropdown-menu-scrollable {
height: auto;
max-height: 300px;
overflow-x: hidden;
}
.dropdown-menu-scrollable::-webkit-scrollbar {
width: 1em;
}
.dropdown-menu-scrollable::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.dropdown-menu-scrollable::-webkit-scrollbar-thumb {
background-color: #777777;
outline: 1px solid #777777;
}
}