[879b32]: / qiita_pet / static / css / style.css

Download this file

103 lines (88 with data), 1.9 kB

  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
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
/*
Original source https://stackoverflow.com/a/18529465
Link
*/
.navbar-default .navbar-nav > li > a {
font-size: 14px;
color: #EEE;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #CCC;
}
/* Link END */
#qiita-main {
position: relative;
height: 100%;
width: 100%;
}
#template-content{
padding: 10px;
height: 100%;
width: 100%;
}
td.more-info-processing-jobs{
cursor: pointer;
background: url('../img/details_open.png') no-repeat center center;
}
tr.shown td.more-info-processing-jobs{
cursor: pointer;
background: url('../img/details_close.png') no-repeat center center;
}
div.details-control{
cursor: pointer;
background: url('../img/details_open.png') no-repeat center center;
}
tr.shown div.details-control{
cursor: pointer;
background: url('../img/details_close.png') no-repeat center center;
}
.blinking-message {
animation: blinker 2s linear infinite;
}
@keyframes blinker {
50% { opacity: 0.3; background: #CCC; }
100% { opacity: 1.0; background: #FFF; }
}
/* table in the study description that holds the investigation type elements */
.investigation-type-table td {
padding-top: 6px;
padding-bottom: 6px;
}
.dropdown:hover .dropdown-menu{
display: block;
}
/* hover is a pseudoclass and can't be controlled - use the class below to trigger
the same behavior as the hover pseudoclass */
.custom-dropdown-menu {
display: block;
}
.info-menu {
word-wrap: break-word;
white-space: normal;
}
.info-menu > li > a {
display: inline;
color:#428bca;
padding:0px;
}
.truncated {
white-space: nowrap;
width:300px;
overflow: hidden;
text-overflow: ellipsis;
}
.topfloat{
position: fixed;
padding-top: 5px;
height:55px;
top:50px;
z-index:6;
background:white;
width:100%;
}
.graph {
width:100%;
height:300px;
border: 1px solid #ccc;
}