123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- @font-face {
- font-family: 'TaipeiSansTCBeta-Regular';
- src: url('/script/font/TaipeiSansTCBeta-Regular.ttf');
- }
- h1, h2, h3, p, span, div { font-family: 'TaipeiSansTCBeta-Regular'}
- .ts.primary.button{
- background-color:#4287f5;
- border: 1px solid transparent;
- }
- .ts.primary.button:hover{
- background-color:#3570cf !important;
- }
- /* floatWindow CSS */
- .floatWindow{
- position:fixed;
- width:1024px;
- height:520px;
- left:0px;
- top:0px;
- border-radius: 6px;
- }
- .floatWindow .controls .title{
- color:white;
- display: inline-block;
- position:absolute;
- left:30px;
- top:3px;
- max-width:70%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .floatWindow .controls .moduleicon{
- height:75%;
- width:auto;
- margin-top:4px;
- margin-left:8px;
- display: inline-block;
- }
- .floatWindow .controls{
- position:absolute;
- top:0px;
- left:0px;
- width: 100%;
- height:22px;
- padding-bottom:2px;
- user-select: none;
- border-radius: 6px 6px 0px 0px;
- }
- .floatWindow .iframewrapper{
- position:absolute;
- top: 22px;
- width:100%;
- height: calc(100% - 22px);
- border-left: 3px solid #37393e;
- border-right: 3px solid #37393e;
- border-bottom: 3px solid #37393e;
- border-radius: 0px 0px 6px 6px;
- }
- .floatWindow .iframewrapper .iframecover{
- position:absolute;
- top:0px;
- left:0px;
- width:100%;
- height:100%;
- display:none;
- }
- .floatWindow .iframewrapper iframe{
- height:100%;
- width:100%;
- overflow:hidden;
- position:absolute;
- top:0px;
- left:0px;
- border-radius: 0px 0px 6px 6px;
- }
- .floatWindow .fwcontrol .buttons:hover{
- background-color: rgba(224, 224, 224,0.3);
- }
- .floatWindow .fwcontrol .buttons.close:hover{
- background-color: rgba(232,142,142,0.7);
- }
- @supports (backdrop-filter: none) {
- .floatWindow{
- box-shadow: rgb(61, 61, 61) 1px 1px 4px;
- }
- .floatWindow .controls {
- background-color:rgba(26, 26, 26, 0.85);
- backdrop-filter: blur(5px);
- }
- .floatWindow .controls .title{
- color: white;
- }
- .floatWindow .iframewrapper{
- border-left: 3px solid transparent;
- border-right: 3px solid transparent;
- border-bottom: 3px solid transparent;
- backdrop-filter: blur(5px);
- }
- .floatWindow .fwcontrol .buttons:hover{
- background-color: rgba(224, 224, 224,.3);
- }
- /*
- White theme
- */
- .floatWindow.white{
- /* Updates 27-12-2020: Added box shadow and transparent boarder under backdrop filter mode*/
- box-shadow: rgb(61, 61, 61) 1px 1px 4px;
- }
- .floatWindow.white .controls {
- background-color:rgba(255,255,255, 0.85);
- backdrop-filter: blur(5px);
-
- }
- .floatWindow.white .controls .title{
- font-weight: 130%;
- color: rgb(20, 20, 20);
- padding-right: 3px;
- }
- .floatWindow.white .iframewrapper{
- border-left: 3px solid rgba(255,255,255,0.6);
- border-right: 3px solid rgba(255,255,255,0.6);;
- border-bottom: 3px solid rgba(255,255,255,0.6);;
- backdrop-filter: blur(5px);
- }
- .floatWindow.white .fwcontrol .buttons:hover{
- background-color: rgba(180, 180, 180,1);
- }
- .floatWindow.white .fwcontrol .buttons.close:hover{
- background-color: rgba(232,142,142,0.7);
- }
-
-
- }
- .floatWindow .fwcontrol{
- position:absolute;
- top:0px;
- right:5px;
- display: inline-block;
- }
- .floatWindow .fwcontrol .buttons{
- vertical-align: top;
- padding-top:2px;
- padding-bottom:2px;
- padding-left:6px;
- padding-right:6px;
- display: inline-block;
- height:23px !important;
-
- color:white;
- cursor: pointer;
- }
- .floatWindow .fwcontrol .buttons img{
- width:18px;
- height:auto;
- }
- .floatWindow .iframewrapper.widthHover{
- cursor:w-resize;
- }
- .floatWindow .iframewrapper.rightCorner{
- cursor:se-resize;
- }
- .floatWindow .iframewrapper.leftCorner{
- cursor:sw-resize;
- }
- .floatWindow .iframewrapper.heighHover{
- cursor:s-resize;
- }
|