123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /**
- * @name infobox.css
- * @author Tobias Reich
- * @copyright 2014 by Tobias Reich
- */
- #infobox_overlay {
- z-index: 3;
- position: fixed;
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- background-color: rgba(0,0,0,.8);
- }
- #infobox {
- z-index: 4;
- position: fixed;
- right: 0px;
- width: 350px;
- height: 100%;
- background-color: rgba(20,20,20,0.98);
- box-shadow: -1px 0px 2px rgba(0,0,0,.8);
- display: none;
- transform: translateX(370px);
- transition: transform .3s cubic-bezier(0.51,.92,.24,1.15);
- }
- #infobox.active {
- transform: translateX(50px);
- }
- /* Misc ------------------------------------------------*/
- #infobox .wrapper {
- float: left;
- height: 100%;
- width: 300px;
- overflow: scroll;
- -webkit-overflow-scrolling: touch;
- }
- #infobox .edit {
- display: inline;
- margin-left: 3px;
- width: 20px;
- height: 5px;
- cursor: pointer;
- }
- #infobox .bumper {
- float: left;
- width: 100%;
- height: 50px;
- }
- /* Header ------------------------------------------------*/
- #infobox .header {
- float: left;
- height: 49px;
- width: 100%;
- background-image: linear-gradient(to bottom, #2A2A2A, #131313);
- border-bottom: 1px solid #000;
- }
- #infobox .header h1 {
- position: absolute;
- margin: 15px 30% 15px calc(30% - 25px);
- width: 40%;
- color: #fff;
- font-size: 16px;
- font-weight: bold;
- text-align: center;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, .8);
- }
- #infobox .header a {
- float: right;
- padding: 15px 65px 15px 15px;
- color: #fff;
- font-size: 20px;
- font-weight: bold;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, .8);
- opacity: .5;
- cursor: pointer;
- }
- #infobox .header a:hover {
- opacity: 1;
- }
- /* Seperator ------------------------------------------------*/
- #infobox .separator {
- float: left;
- width: 100%;
- border-top: 1px solid rgba(255,255,255,.04);
- box-shadow: 0px -1px 0px #000;
- }
- #infobox .separator h1 {
- margin: 20px 0px 5px 20px;
- color: #fff;
- font-size: 14px;
- font-weight: bold;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, .8);
- }
- /* Table ------------------------------------------------*/
- #infobox table {
- float: left;
- margin: 10px 0px 15px 20px;
- }
- #infobox table tr td {
- padding: 5px 0px;
- color: #fff;
- font-size: 14px;
- line-height: 19px;
- -webkit-user-select: text;
- -moz-user-select: text;
- user-select: text;
- }
- #infobox table tr td:first-child {
- width: 110px;
- }
- #infobox table tr td:last-child {
- padding-right: 10px;
- }
- /* Tags ------------------------------------------------*/
- #infobox #tags {
- width: calc(100% - 40px);
- margin: 16px 20px 12px 20px;
- color: #fff;
- display: inline-block;
- }
- #infobox #tags .empty {
- font-size: 14px;
- margin-bottom: 8px;
- }
- #infobox #tags .edit {
- display: inline-block;
- }
- #infobox #tags .empty .edit {
- display: inline;
- }
- #infobox .tag {
- float: left;
- padding: 4px 7px;
- margin: 0px 6px 8px 0px;
- background-color: rgba(0,0,0,.5);
- border: 2px solid rgba(255,255,255,.3);
- border-radius: 100px;
- font-size: 12px;
- transition: border .3s;
- }
- #infobox .tag:hover {
- border: 2px solid #aaa;
- }
- #infobox .tag span {
- float: right;
- width: 0px;
- padding: 0px;
- margin: 0px 0px -2px 0px;
- color: red;
- font-size: 11px;
- cursor: pointer;
- overflow: hidden;
- transform: scale(0);
- transition: width .3s, margin .3s, transform .3s;
- }
- #infobox .tag:hover span {
- width: 10px;
- margin: 0px 0px -2px 6px;
- transform: scale(1);
- }
|