blob: 122c4382242ac3dda945a57cd62434e4d28f1dad [file] [log] [blame]
Tyler Scott3c17d5f2015-06-23 17:49:29 -06001html, body {
2 width: 100%;
3 height: 100%;
4 margin: 0;
Tyler Scott696d38f2015-08-04 22:41:22 -06005 min-width: 650px;
Tyler Scottff4c3c32015-08-06 14:38:13 -06006 background-image: url(../background.jpg);
7 background-size: contain;
8 background-attachment: fixed;
Tyler Scott3c17d5f2015-06-23 17:49:29 -06009}
10
Tyler Scottff4c3c32015-08-06 14:38:13 -060011body#body {}
12
Tyler Scott3c17d5f2015-06-23 17:49:29 -060013.sidebar {
14 height: 100%;
15 max-height: 100%;
16 overflow: auto;
17}
Tyler Scottf08ab962015-06-30 16:31:29 -060018
Tyler Scotta1ac69d2015-07-02 17:42:03 -060019.fail {
Tyler Scottf65b7102015-06-30 18:40:14 -060020 color: red;
21}
22
Tyler Scotta1ac69d2015-07-02 17:42:03 -060023.sucess {
Tyler Scottf65b7102015-06-30 18:40:14 -060024 color: green;
Tyler Scottf08ab962015-06-30 16:31:29 -060025}
Tyler Scott7d076e22015-07-06 19:21:50 -060026
27.subnav {
28 display: none;
29 max-height: 500px;
30 overflow: auto;
31 margin-left: 15px;
32 border-left: gray 3px solid;
33}
Tyler Scotte815d3e2015-07-09 16:56:17 -060034
Tyler Scott93cae872015-07-21 14:58:23 -060035.autoComplete .list-group {
36 margin-bottom: 0;
37 border: none;
38}
39
Tyler Scottc55879f2015-07-28 14:56:37 -060040.pager {
41 /* margin: 0; */
42}
43
44#searchBar {
45 display: inline-block;
46}
47
Tyler Scotte815d3e2015-07-09 16:56:17 -060048#filters {
49 margin-bottom: 10px;
50 visibility: visible;
51 opacity: 1;
52 transition: visibility 1s ease-out, opacity 1s ease-out, margin-bottom 1s ease-out;
53}
54
55#filters .label {
56 /* display: none; */
57 font-size: inherit;
58 transition: background-color 1s,
59
60 border-color 2s;
Tyler Scott087aef72015-07-14 14:11:59 -060061 cursor: pointer;
Tyler Scotte815d3e2015-07-09 16:56:17 -060062}
63
Tyler Scotta1530052015-07-24 00:13:28 -060064#filters .label::after {
65 content: " \2716";
66}
67
Tyler Scotte815d3e2015-07-09 16:56:17 -060068#filters .label:hover {
69 /* font-size: 0; */
70 background-color: red;
71 border-color: red;
72}
73
74#filters .label:hover::before {
75 content: "Remove ";
76}
77
78#filters .label:hover::after {
79 content: "?";
80}
81
82#filters .label:not(:last-child) {
83 margin-right: 5px;
84}
85
86#filters:empty {
87 visibility: hidden;
88 opacity: 0;
89 margin-bottom: 0;
90}
91
92/* Magic filters text that won't get picked up in jquery.text */
93#filters:not(:empty)::before {
94 content: "Filters: ";
95}
Tyler Scottfe8e4932015-07-28 17:45:45 -060096
97#search {
Tyler Scott696d38f2015-08-04 22:41:22 -060098 min-width: 500px;
Tyler Scottfe8e4932015-07-28 17:45:45 -060099}
100
101.autoComplete {
102 max-height: 0;
103 overflow-y: auto;
104 position: absolute;
105 left: 0;
106 transition: max-height 1s;
107}
108
109*:focus ~ .autoComplete { /* If the parent detects focus on any subelement or itself */
110 max-height: 500px;
111}
Tyler Scott4e4865a2015-08-06 14:23:21 -0600112
113.pager li > div {
114 display: inline-block;
115}