Switch to unified view

a b/qiita_pet/static/css/style.css
1
/*
2
  Original source https://stackoverflow.com/a/18529465
3
  Link
4
*/
5
.navbar-default .navbar-nav > li > a {
6
  font-size: 14px;
7
  color: #EEE;
8
}
9
10
.navbar-default .navbar-nav > li > a:hover,
11
.navbar-default .navbar-nav > li > a:focus {
12
  color: #CCC;
13
}
14
/* Link END */
15
16
#qiita-main {
17
  position: relative;
18
  height: 100%;
19
  width: 100%;
20
}
21
#template-content{
22
  padding: 10px;
23
  height: 100%;
24
  width: 100%;
25
}
26
27
td.more-info-processing-jobs{
28
  cursor: pointer;
29
  background: url('../img/details_open.png') no-repeat center center;
30
}
31
tr.shown td.more-info-processing-jobs{
32
  cursor: pointer;
33
  background: url('../img/details_close.png') no-repeat center center;
34
}
35
36
div.details-control{
37
  cursor: pointer;
38
  background: url('../img/details_open.png') no-repeat center center;
39
}
40
tr.shown div.details-control{
41
  cursor: pointer;
42
  background: url('../img/details_close.png') no-repeat center center;
43
}
44
45
.blinking-message {
46
  animation: blinker 2s linear infinite;
47
}
48
49
@keyframes blinker {
50
  50% { opacity: 0.3; background: #CCC; }
51
  100% { opacity: 1.0; background: #FFF; }
52
}
53
54
/* table in the study description that holds the investigation type elements */
55
.investigation-type-table td {
56
  padding-top: 6px;
57
  padding-bottom: 6px;
58
}
59
60
.dropdown:hover .dropdown-menu{
61
    display: block;
62
 }
63
64
/* hover is a pseudoclass and can't be controlled - use the class below to trigger
65
the same behavior as the hover pseudoclass */
66
.custom-dropdown-menu {
67
    display: block;
68
}
69
70
.info-menu {
71
  word-wrap: break-word;
72
  white-space: normal;
73
}
74
75
.info-menu > li > a {
76
  display: inline;
77
  color:#428bca;
78
  padding:0px;
79
}
80
81
.truncated {
82
  white-space: nowrap;
83
  width:300px;
84
  overflow: hidden;
85
  text-overflow: ellipsis;
86
}
87
88
.topfloat{
89
  position: fixed;
90
  padding-top: 5px;
91
  height:55px;
92
  top:50px;
93
  z-index:6;
94
  background:white;
95
  width:100%;
96
}
97
98
.graph {
99
  width:100%;
100
  height:300px;
101
  border: 1px solid #ccc;
102
}