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 103 104 105 106 107 108 109 110 111
|
table.frameworks {
width: 100%;
border-collapse: collapse;
}
table.frameworks td, table.frameworks th{
border: solid 1px #0057ae;
}
table.frameworks h3 {
margin: 0;
padding: 0;
}
table.frameworks td {
padding: 0.5em;
}
table.frameworks th {
background: #0057ae;
color:white;
font-size: 1.1em;
line-height: 1.7em;
}
.framework-main-column {
vertical-align: top;
}
.framework-detail-column {
text-align: center;
width: 120px;
}
.framework-fancyname {
font-size: 120%;
}
.framework-platforms {
float: right;
font-size: 80%;
}
.framework-platform {
color: #666;
padding-left: 6px;
margin-left: 6px;
border-left: 1px solid #ccc;
}
.framework-platform:first-child {
padding-left: 0;
border-left: none;
}
.framework-platform a {
text-decoration: none;
}
.framework-platform-unsupported .framework-platform-text {
text-decoration: line-through;
color: #aaa;
}
/* Platform filtering --------------------------------*/
.not-available-indicator, .available-indicator {
display: none;
float: left;
padding-right: 0.5em;
}
.not-available .not-available-indicator {
display: inline;
}
.available .available-indicator {
display: inline;
}
.not-available {
background-color: #f8f8f8;
}
.not-available .framework-description {
display: none;
}
.framework-platform-required .framework-platform-text {
color: green;
}
.framework-platform-required.framework-platform-unsupported .framework-platform-text {
color: red;
}
/* Platform note -------------------------------------*/
.note-tip {
display: none;
z-index: 3000;
position: absolute;
background-color: #222;
color: white;
padding: 6px;
border-radius: 5px;
}
a.note-close, a.note-close:active, a.note-close:visited {
color: white;
text-decoration: none;
margin-left: 6px;
}
|