Blame view

build/files/style.css 1.27 KB
5a739853   patrick.he   commit
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
   body {
  	padding-top: 45px;
   }
   .navbar-fixed-top {
  	text-align:center;
  
  	background-color: rgba(120, 160, 200, 0.25);
  	background-color: rgba(0, 0, 0, 0.3);
  	
  	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  	height: 60px;
  	line-height: 60px;
  	
  	transition-property: all;
  	transition-duration: 0.15s;
  	transition-delay: 1.5s;
  	
  	top: -30px;
   }
   .navbar-fixed-top:hover {
  	top: 0;
  	transition-delay: 0s;
  	
  	background-color: rgba(120, 160, 200, 0.35);
  	background-color: rgba(0, 0, 0, 0.5);
  	opacity: 1;
   }
   .list-group-item label {
  	display: block;
   }
   
  
   .list-group-item + .list-group-item {
  		margin-top: 0;
   }
   .list-group-item:hover {
  	background-color: #DEECF2;
  	border-color: #B3D2E0;
   }
   .list-group-item.active {
  	background-color: #C2DCE8 !important;
  	border-color: #81ADC1 !important;
  	color: #254654 !important;
  	z-index: 2;
   }
   .list-group-container {
    margin: 5px 0;
   }
   .list-group-container .list-group-item:first-child:not(:only-child) {
    border-bottom-style: dashed;
   }
   .list-group-container .list-group-item + .list-group-item {
    border-top-style: dashed;
   }
  
   .list-group-item b {
  	color: #3E7087;
   }
   
   .filesize {
    font-size: 12px;
    color: #31708F;
    float: right;
    margin-left: 18px;
   }
   
   .dropdown-filelist > li.separator > hr {
     margin-top: 8px;
     margin-bottom: 8px;
   }