public interface: rework
This commit is contained in:
parent
d4177f6228
commit
7240cbb414
3 changed files with 377 additions and 157 deletions
|
@ -29,9 +29,15 @@ body {
|
|||
.point {
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
}
|
||||
.navbar-inverse .point {
|
||||
text-shadow: 0 0 12px #0055ff;
|
||||
}
|
||||
.end .point {
|
||||
text-shadow: 0 0 20px #ff5500;
|
||||
}
|
||||
.navbar-inverse .end .point {
|
||||
text-shadow: 0 0 12px #ff5500;
|
||||
}
|
||||
@-webkit-keyframes clockanim {
|
||||
0% { opacity: 1.0; }
|
||||
50% { opacity: 0; }
|
||||
|
@ -107,3 +113,53 @@ h1 small.authors {
|
|||
transition-delay: 0.7s;
|
||||
transition-duration: 0s;
|
||||
}
|
||||
|
||||
.carousel-indicators {
|
||||
bottom: -10px;
|
||||
}
|
||||
.carousel-caption {
|
||||
padding: 0;
|
||||
position: static;
|
||||
}
|
||||
.carousel .table {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.carousel .table-condensed td {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.table th.frotated {
|
||||
border: 0;
|
||||
}
|
||||
.table th.rotated {
|
||||
height: 100px;
|
||||
width: 40px;
|
||||
min-width: 40px;
|
||||
max-width: 40px;
|
||||
position: relative;
|
||||
vertical-align: bottom;
|
||||
padding: 0;
|
||||
font-size: 12px;
|
||||
line-height: 0.9;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
th.rotated > div {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
left: -50px;
|
||||
height: 100%;
|
||||
transform: skew(45deg,0deg);
|
||||
overflow: hidden;
|
||||
border: 1px solid #000;
|
||||
}
|
||||
th.rotated div span {
|
||||
transform: skew(-45deg,0deg) rotate(45deg);
|
||||
position: absolute;
|
||||
bottom: 40px;
|
||||
left: -35px;
|
||||
display: inline-block;
|
||||
width: 110px;
|
||||
text-align: left;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
|
Reference in a new issue