noname/layout/default/menu.css

1586 lines
35 KiB
CSS
Raw Normal View History

2015-10-29 17:36:14 +00:00
.menu-container{
2015-11-29 11:46:51 +00:00
z-index:8;
2015-10-29 17:36:14 +00:00
}
.menu-container div{
position: relative;
}
.menu-container.hidden{
pointer-events: none;
}
#menu-button{
z-index:6;
}
.popup-container{
z-index:10;
}
2017-02-07 06:39:56 +00:00
.popup-container.filter-character{
text-align: center;
overflow: scroll;
2017-02-07 11:14:07 +00:00
opacity: 0;
transition: all 0.3s;
}
.popup-container.filter-character.shown{
opacity: 1;
}
.popup-container.filter-character.removing>div{
pointer-events: none;
2017-02-07 06:39:56 +00:00
}
.popup-container.filter-character>div{
left: 0;
top:0;
left: 0;
width: 100%;
height: auto;
margin: 0;
padding: 0;
transition: all 0s;
position: relative;
}
.popup-container.filter-character>div>div{
position: relative;
margin: 10px;
}
.popup-container.filter-character>div>.capt{
width: 80px;
height: 80px;
padding: 0;
font-size: 60px;
line-height: 90px;
}
2015-10-29 17:36:14 +00:00
.menu-container,.popup-container{
width:100%;
height:100%;
left:0;
top:0;
position: absolute;
}
2015-10-30 15:32:48 +00:00
.menu-buttons,.menu-sym{
padding-bottom: 5px !important;
width: calc(100% - 10px) !important;
padding-right: 5px !important;
}
2017-02-07 03:14:55 +00:00
.menu-buttons.leftbutton{
text-align: left;
margin-left: 10px;
2017-05-06 17:25:44 +00:00
}
.menu-buttons.leftbutton:not(.commandbutton){
width: calc(100% - 30px) !important;
2017-05-02 09:13:09 +00:00
}
.menu.main>.menu-content>div>.right.pane>.menu-buttons.leftbutton>.config.toggle:first-child,
.menu.main>.menu-content>div>.right.pane>.menu-buttons.leftbutton>.config.toggle:first-child+.config.toggle{
margin-left: 3px !important;
width: calc(100% - 15px) !important;
2017-02-07 03:14:55 +00:00
}
2015-10-30 15:32:48 +00:00
.menu-buttons div{
position: absolute;
}
.menu-buttons>.glow{
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px, rgba(0, 133, 255, 0.8) 0 0 10px, rgba(0, 133, 255, 0.8) 0 0 10px, rgba(0, 133, 255, 0.8) 0 0 15px !important;
}
.menu-cheat>div{
margin:5px;
}
.menu-cheat>.selecting{
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(255, 0, 0, 0.8) 0 0 5px, rgba(255, 0, 0, 0.8) 0 0 5px !important
}
2015-11-04 01:59:00 +00:00
.menu-cheat.config>.menubutton{
height:16px;
line-height: 16px;
transform: translateY(-10px);
}
.menu-cheat.config{
transition-property: opacity;
}
2015-11-28 03:45:23 +00:00
.menu-buttons>.toggle,
.menu-buttons>.config.more{
2015-10-30 15:32:48 +00:00
position:relative;
margin-bottom: 10px !important;
margin-left: 10px !important;
margin-right: 10px !important;
width: calc(100% - 25px) !important;
display: inline-block;
}
2015-11-28 03:45:23 +00:00
.menu-buttons>.config.more,
.menu-buttons>.toggle.cardpilecfg{
margin-bottom: 0 !important;
display: block;
}
2017-03-16 04:54:13 +00:00
.menu-buttons>.config.more.pile{
margin-top: 5px !important;
2017-04-23 15:50:01 +00:00
margin-left: 3px !important;
2017-03-16 04:54:13 +00:00
}
2015-11-28 03:45:23 +00:00
.menu-buttons>.toggle.cardpilecfgadd:not(.hidden){
margin-top: 0 !important;
}
2016-01-24 16:07:47 +00:00
.menu-buttons>.toggle.cardpilecfg:not(.nomarginleft){
2015-11-28 03:45:23 +00:00
margin-left: 20px !important;
width: calc(100% - 35px) !important;
}
.menu-buttons>.config.more *{
position: relative;
}
2015-10-30 15:32:48 +00:00
.menu-buttons>.button{
zoom:0.75;
}
2016-01-13 03:09:44 +00:00
.menu-buttons .cardpiledelete,
.toggle>.cardpiledelete{
2015-11-28 03:45:23 +00:00
display: inline-block;
position: relative;
float: right;
margin-right: 4px;
}
2017-03-16 04:54:13 +00:00
.menu-buttons .menuplaceholder{
display: block;
margin: 0;
padding: 0;
width: 100%;
height: 10px;
}
.menu-buttons .menuplaceholder.slim{
height: 5px;
}
#window:not(.nopointer) .cardpiledelete{
cursor: pointer;
}
2015-10-30 15:32:48 +00:00
.menu-help{
width: calc(100% - 30px) !important;
text-align: left !important;
}
.menu-help li{
margin-bottom: 10px !important;
}
2015-10-29 17:36:14 +00:00
.menu-container>.menu.main{
left: 15px;
top: 52px;
}
.menu-container>.menu.main.center{
left:calc(50% - 200px);
top:calc(50% - 150px);
}
2015-11-21 05:30:26 +00:00
.menu-container.hidden>.menu.main{
transform:scale(0.5);
transform-origin:2px -35px;
opacity:0;
}
.menu-container>.menu.main{
transition: all 0.3s;
transform-origin:2px -35px;
2015-10-29 17:36:14 +00:00
}
2016-04-12 07:49:02 +00:00
.menu-container.hidden>.menu.main.center{
/*transform:translateY(300px);*/
transform-origin: center center;
}
.menu-container>.menu.main.center{
transform-origin: center center;
2015-10-29 17:36:14 +00:00
}
.menu.main{
width: 400px;
height:300px;
position: absolute;
overflow:hidden;
padding:0;
}
2017-02-19 04:39:08 +00:00
.removing>.menubg.charactercard{
transform: scale(0.8);
opacity: 0;
transition: all 0.3s;
}
.menubg.charactercard{
width: 500px;
height: 300px;
left: calc(50% - 250px);
top: calc(50% - 150px);
animation: dialog_start2 0.3s;
-webkit-animation: dialog_start2 0.3s;
}
.menubg.charactercard>.menubutton.large.ava{
width: 180px;
height: 240px;
left: 10px;
top: 10px;
overflow: hidden;
2017-02-19 14:09:31 +00:00
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 0 5px !important;
2017-02-19 04:39:08 +00:00
}
.menubg.charactercard>.menubutton.large{
width: 85px;
height: 30px;
bottom: 10px;
line-height: 30px;
padding: 0;
font-size: 20px;
}
.menubg.charactercard>.menubutton.ban{
left: 10px;
}
.menubg.charactercard>.menubutton.fav{
left: 105px;
}
.menubg.charactercard>.ava>.changeskin{
bottom: 6px;
left: 6px;
font-family: 'xinwei';
font-size: 16px;
z-index: 2;
color: white;
text-shadow: black 0 0 2px;
height: 16px;
line-height: 16px;
pointer-events: none;
opacity: 0.6;
}
2017-02-20 12:05:50 +00:00
#window:not(.nopointer) .menubg.charactercard .menubutton:not(.ava):not(.intro):not(.unselectable),
2017-02-19 04:39:08 +00:00
#window:not(.nopointer) .menubg.charactercard>.ava>.avatars>div{
cursor: pointer;
}
2017-02-19 05:54:28 +00:00
.menubg.charactercard>.characterskill{
left: 191px;
padding-left: 9px;
padding-right: 10px;
width: 290px;
top: 125px;
height: 50px;
white-space: nowrap;
overflow-x: scroll;
}
.menubg.charactercard>.characterskill>.menubutton.large{
height: 20px;
line-height: 20px;
padding: 5px;
margin-top: 10px;
position: relative;
font-size: 20px;
margin-right: 10px;
}
.menubg.charactercard .characterintro{
left: 200px;
width: 280px;
height: 105px;
padding: 5px;
overflow: scroll;
border-radius: 4px;
box-shadow: rgba(0,0,0,0.2) 0 0 0 1px;
}
.menubg.charactercard .characterintro:not(.intro2){
top: 10px;
bottom: auto;
}
.menubg.charactercard .characterintro.intro2{
top: auto;
bottom: 10px;
}
2017-02-19 04:39:08 +00:00
.menubg.charactercard>.ava>.avatars{
opacity: 0;
pointer-events: none;
width: 100%;
height: 100%;
left: 0;
top: 0;
margin: 0;
padding: 0;
overflow: hidden;
line-height: 0;
text-align: left;
transform: scale(0.8);
}
.menubg.charactercard>.ava>.avatars.scroll{
overflow: scroll;
}
.menubg.charactercard>.ava>.avatars>div{
position: relative;
margin:3px;
width: 81px;
height: 111px;
border-radius: 4px;
background-size: cover;
background-position: 50% 0;
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 0 5px
}
.menubg.charactercard>.ava>.avatars>div:first-child,
.menubg.charactercard>.ava>.avatars>div:first-child+div{
margin-top: 6px;
}
.menubg.charactercard>.ava>.avatars>div:nth-of-type(odd){
margin-left: 6px;
}
.menubg.charactercard>.ava.scroll>.avatars{
opacity: 1;
pointer-events: auto;
transform: scale(1);
}
.menubg.charactercard>.ava.scroll>.changeskin{
opacity: 0;
}
.menubg.charactercard>.ava.scroll>.avatar{
transform: translateX(-200px);
pointer-events: none;
}
.menubg.charactercard>.ava>.avatar{
2017-02-19 14:09:31 +00:00
left: 5px;
top: 5px;
width: calc(100% - 10px);
height: calc(100% - 10px);
background-position: 50% 0;
border-radius: 4px !important;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 0 5px;
2017-02-19 04:39:08 +00:00
}
2015-10-29 17:36:14 +00:00
.menu.main>.menu-tab{
height:37px;
text-align:center;
width:calc(100% - 30px);
padding-left:15px;
padding-right:15px;
position:relative;
text-align:center;
border-width: 0 0 1px;
border-style:solid;
border-image:linear-gradient(to right, transparent,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0.2) 90%,transparent) 0 1 100%;
}
.menu.main>.menu-tab-bar{
width:45px;
height:2px;
top:35px;
position:absolute;
background-color:rgb(0, 133, 255);
2017-04-03 01:42:38 +00:00
transition:transform 0.3s;
left: 0;
2015-10-29 17:36:14 +00:00
}
.menu.main>.menu-tab>div{
display:inline-block;
height:32px;
line-height:30px;
padding-top:5px;
width:45px;
margin-left:5px;
margin-right:5px;
transition:color 0.5s;
}
2015-11-05 02:34:35 +00:00
.menu.main>.menu-tab>div:not(.active):not(*:hover),
.menu.main>.menu-tab>.disabled{
2015-10-29 17:36:14 +00:00
color:rgba(255,255,255,0.6);
}
.menu.main>.menu-content{
height:calc(100% - 38px);
position:relative;
width:100%;
}
.menu.main>.menu-content>div{
width:100%;
height:100%;
}
.menu.main>.menu-content>div>.pane{
position:absolute;
display:inline-block;
height:100%;
}
.menu.main>.menu-content>div>.left.pane{
width:34%;
left:0;
overflow: scroll;
}
.menu.main>.menu-content>div>.left.pane>div{
width:calc(100% - 30px);
margin-top:9px;
margin-left:10px;
transition:all 0.3s;
height: 23px;
font-size: 26px;
line-height: 26px;
2016-05-14 17:59:16 +00:00
white-space: nowrap;
2015-10-29 17:36:14 +00:00
}
2015-10-30 15:32:48 +00:00
.menu.main>.menu-content>div>.left.pane>.menubutton.off{
opacity: 0.5;
}
.menu.main>.menu-content>div>.left.pane>.lefttext{
font-family: 'xinwei';
font-size: 20px;
}
.menu.main>.menu-content>div>.left.pane>div:last-child{
margin-bottom: 9px;
}
2015-10-29 17:36:14 +00:00
.menu.main>.menu-content>div>.left.pane.dim>div:not(.active){
color:rgba(255,255,255,0.5);
}
.menu.main>.menu-content>div>.right.pane{
left:34%;
width:66%;
overflow:scroll;
}
.menu.main>.menu-content>div>.right.pane>div{
width:calc(100% - 5px);
position:absolute;
top:0;
left:0;
padding-left:5px;
padding-top:5px;
}
.menu.main>.menu-content>div>.right.pane>.expanded{
padding-bottom:80px;
}
2016-04-15 16:20:05 +00:00
.menu.main>.menu-content>div>.right.pane>.expanded.expanded2{
padding-bottom:12px;
}
2015-12-07 11:15:35 +00:00
.menu.main>.menu-content>div>.right.pane>.morenodes{
padding-bottom:10px;
}
2015-10-29 17:36:14 +00:00
.menu.main>.menu-content>div>.right.pane>div>.config{
left:2px;
margin-top:10px;
2015-10-30 15:32:48 +00:00
margin-left: 3px;
2015-10-29 17:36:14 +00:00
transition:all 0.3s;
2015-10-30 15:32:48 +00:00
width:calc(100% - 20px);
2015-10-29 17:36:14 +00:00
overflow: visible;
2017-04-23 15:50:01 +00:00
position: relative;
2015-10-29 17:36:14 +00:00
}
2016-01-13 03:09:44 +00:00
.menu.main>.menu-content>div>.right.pane>div>.config.banskilladd{
height: 50px;
transition: all 0s;
}
.menu.main>.menu-content>div>.right.pane>div>.config.banskilladd.hidden{
2017-04-04 11:57:09 +00:00
margin-top: -50px !important;
2016-01-13 03:09:44 +00:00
}
2016-01-24 16:07:47 +00:00
.menu.main>.menu-content>div>.right.pane>div>.config.banskilladd:not(.hidden),
.menu.main>.menu-content>div>.right.pane>div>.config.cardpileadd:not(.hidden){
2016-01-13 03:09:44 +00:00
margin-top:0;
}
.menu.main>.menu-content>div>.right.pane>div>.config.banskilladd>select{
margin-right: 3px;
}
2015-10-29 17:36:14 +00:00
.menu.main>.menu-content>div>.right.pane>div>.config.toggle{
left:2px !important;
text-align: left !important;
2017-05-02 09:13:09 +00:00
white-space: nowrap;
}
.menu.main>.menu-content>div>.right.pane>div>.config.toggle.pointerspan.cardpilecfg{
left:0px !important;
2015-10-29 17:36:14 +00:00
}
2015-10-30 09:13:19 +00:00
.menu.main>.menu-content>div>.right.pane>div>.config.indent,
.menu.main>.menu-content>div>.right.pane>div>.config.toggle.indent{
left:12px !important;
2015-11-09 23:11:17 +00:00
width: calc(100% - 32px) !important;
2015-10-30 09:13:19 +00:00
}
2017-03-26 06:52:27 +00:00
#window:not(.low_performance) .menu.main>.menu-content>div>.right.pane>div:not(.expanded)>.config.auto-hide,
#window:not(.low_performance) .menu.main>.menu-content>div>.right.pane>div>.config.hidden{
2015-10-29 17:36:14 +00:00
margin-top:-25px;
opacity:0;
z-index:-1;
}
2017-03-26 06:52:27 +00:00
#window.low_performance .menu.main>.menu-content>div>.right.pane>div:not(.expanded)>.config.auto-hide,
#window.low_performance .menu.main>.menu-content>div>.right.pane>div>.config.hidden{
display: none;
transition-property: transform;
}
2015-10-29 17:36:14 +00:00
.menu.main>.menu-content>div>.menubutton.round{
left:335px;
top:197px;
2015-11-14 15:48:04 +00:00
z-index:3;
2015-10-29 17:36:14 +00:00
transition-property: color, box-shadow;
transition-duration:0.3s;
position:absolute;
}
.menu.main>.menu-content>div>.menubutton.round.glowing{
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px, rgba(0, 133, 255, 0.8) 0 0 10px, rgba(0, 133, 255, 0.8) 0 0 15px !important;
}
.popup-container.hidden{
2015-11-21 05:30:26 +00:00
pointer-events:none;
2015-10-29 17:36:14 +00:00
}
.popup-container>.menu{
position:absolute;
2016-03-30 07:31:51 +00:00
overflow:scroll;
max-height: 400px;
2016-07-12 03:48:11 +00:00
transition-property: opacity;
2015-10-29 17:36:14 +00:00
}
2017-03-17 06:41:34 +00:00
.popup-container>.menu.visual{
padding: 5px;
2017-03-18 07:37:28 +00:00
overflow: scroll;
}
2015-10-29 17:36:14 +00:00
.popup-container>.menu>div{
padding-top:5px;
padding-bottom:5px;
padding-left:10px;
padding-right:10px;
position: relative;
display: block;
transition: all 0s;
}
2017-03-18 16:21:35 +00:00
.popup-container>.menu.visual>.button.transparent{
pointer-events: none;
}
2017-03-18 21:21:14 +00:00
.popup-container>.menu.visual>.button.transparent:not(.shown){
display: none;
}
2017-03-17 06:41:34 +00:00
.popup-container>.menu.visual>.dashedmenubutton{
box-shadow: none !important;
width: 86px;
height: 86px;
border: 2px dashed rgb(40,40,40);
}
2017-03-19 04:41:41 +00:00
.popup-container>.menu.visual>.controlbutton{
height: 26px;
border-radius: 4px;
}
.popup-container>.menu.visual>.controlbutton.dashedmenubutton{
height: 22px;
}
.popup-container>.menu.visual>.controlbutton.dashedmenubutton>div{
line-height: 22px;
}
.popup-container>.menu.visual>.controlbutton>div{
width: 100%;
height: 100%;
left: 0 !important;
top: 0 !important;
font-size: 20px;
margin: 0;
padding: 0;
text-align: center;
line-height: 26px;
}
.popup-container>.menu.visual>.controlbutton>div>br{
display: none;
}
2017-03-18 17:17:44 +00:00
.popup-container>.menu.visual>.hpbutton{
width: 60px;
height: 60px;
overflow: hidden;
}
.popup-container>.menu.visual>.hpbutton>div{
width: 30px;
height: 30px;
margin: 0;
padding: 0;
position: absolute;
background-size: 80%;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(1){
left: 0;
top: 0;
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(2){
right: 0;
left: auto;
top: 0;
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(3){
left: 0;
bottom: 0;
top: auto;
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(4){
right: 0;
left: auto;
bottom: 0;
top: auto;
}
.popup-container>.menu.visual>.hpbutton>div>div{
width: 60%;
height: 60%;
margin: 0;
padding: 0;
position: absolute;
left: 20%;
top: 20%;
border-radius: 100%;
box-shadow: rgba(0,0,0,0.2) 1px -1px 2px inset, rgba(255,255,255,0.15) -1px 1px 5px inset;
-webkit-filter: brightness(1.5);
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(1)>div{
background: rgba(57, 123, 4,1);
border: 1px solid rgba(39, 79, 7, 1);
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(2)>div{
background: rgba(166, 140, 6,1);
border: 1px solid rgba(79, 64, 7, 1);
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(3)>div{
background: rgba(148, 27, 27,1);
border: 1px solid rgba(79, 7, 7, 1);
}
.popup-container>.menu.visual>.hpbutton>div:nth-child(4)>div{
background: rgba(57, 123, 4,1);
border: 1px solid rgba(39, 79, 7, 1);
}
2017-03-17 06:41:34 +00:00
.themebutton>div{
width:50px;
height:76px;
top:7px;
right:7px;
border-radius:4px;
}
.themebutton>div>div{
width:calc(100% - 10px);
height:12px;
display:block;
margin-left:5px;
margin-top:6px;
position:relative;
border-radius:2px;
box-shadow:rgba(0, 0, 0, 0.3) 0 0 0 1px, rgba(0, 0, 0, 0.3) 0 0 5px;
transition: all 0s;
}
.themebutton>div:first-child{
z-index: 2;
}
.themebutton.woodden{
background:url('../../theme/woodden/grid.png'),linear-gradient(#6c7989, #434b55) fixed;
}
.themebutton.woodden>div:not(*:first-child){
background: url('../../theme/woodden/wood2.png');
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 3px 10px;
}
.themebutton.woodden>div.fakeplayer:not(*:first-child){
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 0px 10px;
}
.themebutton.woodden>div>div{
background: url('../../theme/woodden/wood.png');
}
2017-03-23 00:19:32 +00:00
.themebutton.woodden>div>div.active{
2017-03-17 06:41:34 +00:00
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px, rgba(0, 133, 255, 0.4) 0 0 0 2px, rgba(0, 133, 255, 1) 0 0 5px !important;
}
.themebutton.music{
background:url('../../theme/music/grid.png'),linear-gradient(#333333, #222222) fixed;
}
.themebutton.music>div:not(*:first-child){
background: linear-gradient(#4b4b4b, #464646);
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.2) 0 3px 10px;
}
.themebutton.music>div>div{
background: linear-gradient(#4b4b4b, #464646);
}
2017-04-03 03:30:31 +00:00
.themebutton.ol{
background:url('../../image/background/ol_bg.jpg');
background-size: cover;
}
.themebutton.ol>div:not(*:first-child){
background: linear-gradient(#4b4b4b, #464646);
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.2) 0 3px 10px;
}
.themebutton.ol>div>div{
background: linear-gradient(#4b4b4b, #464646);
}
2017-03-17 06:41:34 +00:00
.themebutton.simple{
2017-04-16 06:19:44 +00:00
background:url('../../image/background/ol_bg.jpg');
2017-03-17 06:41:34 +00:00
background-size: cover;
}
.themebutton.simple>div:not(*:first-child){
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
box-shadow: rgba(0, 0, 0, 0.4) 0 0 0 1px, rgba(0, 0, 0, 0.2) 0 3px 10px;
}
.themebutton.simple>div>div{
background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}
.themebutton.simple>div>div.active,
.themebutton.music>div>div.active{
background-image: linear-gradient(rgba(47,101,150,1), rgba(43, 90, 132,1));
}
.themebutton>div>div:first-child{
margin-top:5px;
}
2017-03-17 07:22:31 +00:00
.themebutton>.fakeplayer>.avatar{
width: calc(100% - 2px);
height: calc(100% - 2px);
left: 1px;
top: 1px;
border-radius: 2px;
position: absolute;
margin: 0 !important;
padding: 0;
box-shadow: rgba(0,0,0,0.2) 0 0 0 1px inset;
}
.themebutton>.fakeplayer.oldlayout>.avatar{
width: calc(50% - 2px);
}
.themebutton>.fakeplayer.me>.avatar{
width: 22px;
height: 22px;
left: 3px;
top: 0;
box-shadow: none;
border-radius: 0px;
}
.themebutton>.fakeplayer.me{
-webkit-clip-path: polygon(-10px 0, 32px 0, 32px 32px, -10px 32px);
}
2017-03-23 00:19:32 +00:00
.themebutton>div>div>div{
width: 200%;
height: 200%;
left: 0;
top: 0;
transform: scale(0.5);
color: white;
box-shadow: black 0 0 2px;
transform-origin: top left;
line-height: 24px;
text-align: center;
box-shadow: none !important;
}
.themebutton.woodden>div>div>div{
color: rgba(77, 60, 51, 0.8);
text-shadow: none;
}
2017-03-17 06:41:34 +00:00
#window:not(.nopointer) .popup-container>.menu>div{
cursor: pointer;
}
.popup-container>.menu.visual>div{
display: inline-block;
margin:5px !important;
padding: 0 !important;
width: 90px;
height: 90px;
}
2017-03-18 07:37:28 +00:00
.popup-container>.menu.visual.withbar>div:last-child{
display: block;
width: calc(100% - 10px);
text-align: center;
height: auto;
cursor: default !important;
}
.popup-container>.menu.visual.withbar>div:last-child>div{
display: inline-block;
position: relative;
margin-left: 5px;
margin-right: 5px;
}
2017-03-18 15:16:44 +00:00
.popup-container>.menu.visual.withbar>div:not(.showdelete)>.deletebutton{
display: none;
}
.popup-container>.menu.visual.withbar>div.hideadd>.addbutton{
display: none;
}
2017-03-18 17:17:44 +00:00
.popup-container>.menu.visual.withbar>div.showdelete>div:first-child:not(.addbutton){
2017-03-18 15:16:44 +00:00
display: none;
}
2017-03-18 07:37:28 +00:00
#window:not(.nopointer) .popup-container>.menu.visual.withbar>div:last-child>div{
cursor: pointer;
}
input.fileinput{
margin: 0 !important;
padding: 0 !important;
position: absolute !important;
width: 100% !important;
height: 100% !important;
left: 0 !important;
top: 0 !important;
opacity: 0 !important;
}
2017-03-18 15:16:44 +00:00
input.fileinput::-webkit-file-upload-button {
cursor: pointer;
}
2017-03-18 07:37:28 +00:00
#window:not(.nopointer) input.fileinput{
cursor: pointer;
}
2017-03-17 06:41:34 +00:00
.popup-container>.menu.visual>.button.character>.name{
top: 10px;
}
2015-10-29 17:36:14 +00:00
.popup-container>.menu>div:first-child{
margin-top:5px;
}
.popup-container>.menu>div:last-child{
margin-bottom:5px;
}
.config{
height:25px;
line-height:25px;
position:relative;
}
2017-02-11 16:25:09 +00:00
#window:not(.nopointer) .config.switcher>div,
#window:not(.nopointer) .config.toggle>div{
cursor: pointer;
}
2015-10-29 17:36:14 +00:00
.config.switcher>div,
.config.toggle>div{
position:absolute;
right:0;
left:auto;
display:inline-block;
transition:all 0.3s;
height:25px;
}
.config.switcher>div{
border-bottom-width:2px;
border-bottom-style:solid;
border-bottom-color:transparent;
margin-right: 4px;
}
.config.switcher.on>div{
border-bottom-color:rgb(0, 133, 255);
}
.config.toggle>div{
width:60px;
}
.config.toggle>div>div{
display:inline-block;
position:relative;
width:25px;
height:25px;
top:0;
left:0;
transition:all 0.3s;
padding: 0;
}
.config.toggle.on>div>div{
left:calc(100% - 25px);
}
.config.more{
z-index:1;
}
.config.more>div{
display:inline-block;
transition:transform 0.3s
}
.config.more>div{
transform:translateY(-2px);
2015-11-28 07:19:04 +00:00
font-family: 'huangcao','xinwei';
2015-10-29 17:36:14 +00:00
}
.config.more.on>div{
transform:rotate(90deg) translateX(-2px);
}
.menubutton{
text-align:center;
display:inline-block;
padding:5px;
}
.menubutton.large{
font-size:30px;
line-height:30px;
font-family:'STXinwei','xinwei';
}
.menubutton.round{
width:40px;
height:40px;
border-radius:100%;
font-size:36px;
line-height:40px;
font-family:'xinwei'
}
.menubutton.left{
float:left;
}
.menubutton.right{
float:right;
}
.menubutton.search{
text-align:left;
}
.menubutton.search:not(.focus){
color:rgba(255,255,255,0.5);
}
.menubutton.dim{
color:rgba(255,255,255,0.5);
}
2015-11-05 02:34:35 +00:00
@keyframes fadein{from{opacity:0}}
2015-10-29 17:36:14 +00:00
@-webkit-keyframes fadein{from{opacity:0}}
2015-11-05 02:34:35 +00:00
@keyframes menuslideup{from{top:100%}}
2015-10-29 17:36:14 +00:00
@-webkit-keyframes menuslideup{from{top:100%}}
2015-11-05 02:34:35 +00:00
@keyframes menuslidedown{to{top:100%}}
2015-10-29 17:36:14 +00:00
@-webkit-keyframes menuslidedown{to{top:100%}}
2015-11-05 02:34:35 +00:00
@keyframes menuzoomin{from{transform:scale(0.5);opacity:0;transform-origin:2px -35px}to{transform-origin:2px -35px}}
2015-10-29 17:36:14 +00:00
@-webkit-keyframes menuzoomin{from{transform:scale(0.5);opacity:0;transform-origin:2px -35px}to{transform-origin:2px -35px}}
2015-11-05 02:34:35 +00:00
@keyframes menuzoomout{from{transform-origin:2px -35px}to{transform:scale(0.5);opacity:0;transform-origin:2px -35px}}
2015-10-29 17:36:14 +00:00
@-webkit-keyframes menuzoomout{from{transform-origin:2px -35px}to{transform:scale(0.5);opacity:0;transform-origin:2px -35px}}
2015-12-06 15:23:47 +00:00
.menu-buttons>.new_character{
display: block;
position: relative;
width: 100%;
}
.menu-buttons>.new_character>.avatar{
2016-07-26 05:47:03 +00:00
background-size: cover;
}
.menu-buttons>.new_character>.avatar,
.menu-buttons>.new_character>.card{
2015-12-06 15:23:47 +00:00
top:8px;
left:12px;
position: absolute;
width: 100px;
2017-02-20 12:47:48 +00:00
height: 130px;
2016-07-26 05:47:03 +00:00
margin: 0;
}
.menu-buttons>.new_character>.card{
height: 100px;
}
.menu-buttons>.new_character>.card:not(.fullskin){
color: white;
text-shadow: black 0px 0px 2px;
transform: translateX(0px);
background-image: url("image/card/hslingjian_jinjilengdong.jpg");
2015-12-06 15:23:47 +00:00
background-size: cover;
}
2016-07-26 05:47:03 +00:00
.menu-buttons>.new_character>.avatar>input,
.menu-buttons>.new_character>.card>input{
2015-12-06 15:23:47 +00:00
z-index: 3;
border-radius: 8px;
opacity: 0;
width: 100%;
height: 100%;
left:0;
top:0;
position: absolute;
}
2017-01-21 08:06:45 +00:00
#window[data-radius_size='reduce'] .menu-buttons>.new_character>.avatar>input,
#window[data-radius_size='reduce'] .menu-buttons>.new_character>.card>input{
border-radius:4px;
}
#window[data-radius_size='off'] .menu-buttons>.new_character>.avatar>input,
#window[data-radius_size='off'] .menu-buttons>.new_character>.card>input{
border-radius:0px;
}
#window[data-radius_size='increase'] .menu-buttons>.new_character>.avatar>input,
#window[data-radius_size='increase'] .menu-buttons>.new_character>.card>input{
border-radius:16px;
2016-02-01 09:32:18 +00:00
}
2016-07-26 05:47:03 +00:00
.menu-buttons>.new_character>.avatar>.select_avatar,
.menu-buttons>.new_character>.card>.select_avatar{
2015-12-06 15:23:47 +00:00
font-family: 'xinwei';
font-size: 20px;
width: 100%;
height: 20px;
line-height: 20px;
2017-02-20 12:47:48 +00:00
top:55px;
2015-12-06 15:23:47 +00:00
left:0;
text-align: center;
}
2016-07-26 05:47:03 +00:00
.menu-buttons>.new_character>.card>.select_avatar{
top:40px;
}
.menu-buttons>.new_character>.avatar.inited>.select_avatar,
.menu-buttons>.new_character>.card.inited>.select_avatar{
2015-12-06 15:23:47 +00:00
display: none;
}
.menu-buttons>.new_character>.indent{
display: block;
margin-left: 123px;
width: calc(100% - 135px);
position: relative;
padding-top: 7px;
text-align: left;
white-space: nowrap;
}
.menu-buttons>.new_character>.indent>input{
width: 60px;
}
.menu-buttons>.new_character>div>select{
margin-right: 3px;
}
.menu-buttons>.new_character>.add_skill{
position: absolute;
left: 12px;
2017-02-20 12:47:48 +00:00
top:180px;
2015-12-06 15:23:47 +00:00
text-align: left;
line-height: 20px;
2015-12-19 09:28:50 +00:00
white-space: nowrap;
2015-12-06 15:23:47 +00:00
}
2015-12-07 11:15:35 +00:00
.menu-buttons>.new_character>.add_skill.options{
2017-02-20 12:47:48 +00:00
top:155px;
2015-12-07 11:15:35 +00:00
}
.menu-buttons>.new_character>.add_skill.options>span{
margin-right: 10px;
}
2015-12-06 15:23:47 +00:00
.menu-buttons>.new_character>.add_skill.create{
2015-12-07 11:15:35 +00:00
top: 220px;
2015-12-06 15:23:47 +00:00
}
.menu-buttons>.new_character>.add_skill.create>div{
position: relative;
}
.menu-buttons>.new_character>.add_skill.create>div.hidden{
display: none;
}
.menu-buttons>.new_character>.add_skill.create>div>textarea{
resize: none;
width: 200px;
height: 100px;
margin-top: 5px;
}
.menu-buttons>.new_character>.add_skill.create>div>div{
position: relative;
margin-top: 5px;
}
.menu-buttons>.new_character>.add_skill.create>div>div>input{
width: 120px;
}
.menu-buttons>.new_character>.skill_list{
position: absolute;
left: 12px;
2015-12-07 11:15:35 +00:00
top: 240px;
2015-12-06 15:23:47 +00:00
text-align: left;
height: auto;
width: calc(100% - 20px);
padding-bottom: 30px;
transition: all 0s;
}
.menu-buttons>.new_character>.skill_list>div{
position: relative;
width: 100%;
margin: 0;
padding: 0;
height: auto;
}
.menu-buttons>.new_character>.skill_list>div>div{
position: relative;
}
.menu-buttons>.new_character>.skill_list>div:first-child{
margin-bottom: 10px;
}
.menu-buttons>.new_character>.skill_list>div:first-child>div{
width: calc(50% - 10px);
margin-right: 10px;
margin-top: 6px;
}
.menu-buttons>.new_character>.skill_list>div:first-child>div>div{
position: relative;
}
.menu-buttons>.new_character>.skill_list>div:first-child>div>div:last-child{
float: right;
}
2015-10-29 17:36:14 +00:00
2015-12-06 15:23:47 +00:00
.menu-buttons>.new_character.export{
text-align: left;
}
.menu-buttons>.new_character.export>div{
position: relative;
margin-left: 12px;
margin-top: 5px;
}
.menu-buttons>.new_character.export>div>input{
width: 100px;
margin-right: 5px;
}
.menu-buttons>.new_character.export.import>div>input{
width: 153px;
}
2015-10-29 17:36:14 +00:00
.menubutton{
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.2) 0 3px 10px;
border-radius:4px;
2016-02-01 09:32:18 +00:00
background-image: linear-gradient(rgba(75,75,75,1), rgba(70,70,70,1));
2015-10-29 17:36:14 +00:00
}
2016-04-08 07:06:56 +00:00
.menubutton.large.blue,
2017-05-31 07:55:11 +00:00
.menubutton.large.red,
.redbg{
2016-04-08 03:23:06 +00:00
color:white !important;
2016-04-08 07:06:56 +00:00
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.3) 0 3px 10px !important;
2016-04-08 03:23:06 +00:00
}
.menubutton.active,
.menubutton.blue{
2015-10-29 17:36:14 +00:00
background-image: linear-gradient(rgba(47,101,150,1), rgba(43, 90, 132,1));
}
2017-05-31 07:55:11 +00:00
.bluebg{
background-image: linear-gradient(rgba(47,101,150,1), rgba(43, 90, 132,1)) !important;
}
2015-12-01 05:46:28 +00:00
#system>div>.pressdown{
2015-11-15 05:54:58 +00:00
transform: scale(0.97);
}
2017-04-15 09:22:17 +00:00
.control:not(.disabled) {
2015-11-15 05:54:58 +00:00
transition: all 0.1s;
2015-11-14 15:48:04 +00:00
}
2017-04-15 09:22:17 +00:00
.control:not(.disabled).controlpressdownx {
transition: all 0.5s;
}
2015-11-14 15:48:04 +00:00
#system>div>.pressdown2{
background-image: linear-gradient(rgba(47,101,150,1), rgba(43, 90, 132,1));
}
2016-04-08 03:23:06 +00:00
.menubutton.highlight,
.menubutton.red{
2015-10-29 17:36:14 +00:00
background-image: linear-gradient(rgba(150, 47, 47, 1), rgba(132, 43, 43, 1));
}
.menubutton.large.active,
.menubutton.large.lighlight{
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.3) 0 3px 10px;
}
.config.toggle>div{
border-radius:25px;
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px, rgba(0, 0, 0, 0.2) 0 0 10px inset;
}
.config.toggle.on>div{
background-color:rgba(47,101,150,1);
}
.config.toggle>div>div{
border-radius:25px;
background-image: linear-gradient(rgba(75,75,75,1), rgba(70,70,70,1));
box-shadow: rgba(51, 51, 51, 1) 0 0 0 1px, rgba(0, 0, 0, 0.2) 0 3px 10px;
}
2017-03-17 06:41:34 +00:00
.popup-container>.menu:not(.visual)>div:hover{
2015-10-29 17:36:14 +00:00
color:white;
background-image: linear-gradient(rgba(47,101,150,1), rgba(43, 90, 132,1));
box-shadow: rgba(0,0,0,0.2) 0 0 0 1px;
}
2015-11-04 01:59:00 +00:00
.videonode.menubutton{
width: calc(100% - 50px);
height: 70px;
margin-bottom: 6px;
margin-left: -10px;
margin-top: 6px;
overflow: hidden;
}
2016-05-14 16:01:03 +00:00
.videonode.menubutton.extension{
text-align: left;
height: auto;
max-height: 90px;
}
2017-03-24 05:24:03 +00:00
.videonode.menubutton.extension.current{
2017-04-01 03:48:00 +00:00
max-height: 400px;
2016-05-14 16:01:03 +00:00
}
2015-11-04 01:59:00 +00:00
.videonode.menubutton>div{
position: absolute;
}
2016-05-14 16:01:03 +00:00
.videonode.menubutton.extension>div{
position: relative;
display: block;
}
2017-03-24 05:24:03 +00:00
#window:not(.nopointer) .videonode.menubutton.extension>.caption>.menubutton:not(.transparent2):not(.nopointer){
cursor: pointer;
}
2016-05-14 16:01:03 +00:00
.videonode.menubutton.extension>.caption>.menubutton{
position: relative;
float: right;
font-size: 16px;
padding: 0;
text-align: center;
width: 80px;
font-family:'STHeiti','SimHei','Microsoft JhengHei','Microsoft YaHei','WenQuanYi Micro Hei',Helvetica,Arial,sans-serif;
}
2017-03-24 06:24:00 +00:00
.videonode.menubutton.extension>.caption>.menubutton>a{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 0;
cursor: pointer;
position: absolute;
}
2015-11-04 01:59:00 +00:00
.videonode.menubutton>.videoavatar{
width: 56px;
height: 56px;
top:7px;
left:7px;
background-size: cover;
}
.videonode.menubutton>.videoavatar2{
2015-11-06 10:05:08 +00:00
width: 20px;
height: 20px;
top:47px;
2015-11-04 01:59:00 +00:00
left:3px;
background-size: cover;
border-radius: 100%;
}
.videonode.menubutton>.caption{
display: inline-block;
left: 84px;
top: 6px;
padding-top: 0;
white-space: nowrap;
}
2016-05-14 16:01:03 +00:00
.videonode.menubutton.extension>.caption{
left: 0;
top: 0;
margin-left: 2px;
}
2015-11-04 01:59:00 +00:00
.videonode.menubutton>.text{
font-size: 14px;
left: 85px;
top: 35px;
line-height: 20px;
text-align: left;
font-family:'STHeiti','SimHei','Microsoft JhengHei','Microsoft YaHei','WenQuanYi Micro Hei',Helvetica,Arial,sans-serif
}
2016-05-14 16:01:03 +00:00
.videonode.menubutton.extension>.text{
left: 0;
top: 0;
margin-left: 5px;
}
2017-03-25 15:33:53 +00:00
.videonode.menubutton.extension>.text.author>span{
2017-03-26 08:24:26 +00:00
/*float: right;*/
position: absolute;
right: 0;
top: 0;
2017-03-25 15:33:53 +00:00
transform: translateY(2px) scale(0.7);
width: 80px;
text-align: center;
opacity: 0;
}
.videonode.menubutton.extension.current>.text.author>span{
opacity: 1;
}
2015-11-04 01:59:00 +00:00
.videonode.menubutton>.victory{
2015-11-28 07:19:04 +00:00
font-family: 'huangcao','xinwei';
2015-11-04 01:59:00 +00:00
font-size: 25px;
text-shadow: black 0 0 1px,rgba(255, 203, 0,1) 0 0 2px,rgba(255, 203, 0,1) 0 0 5px,rgba(255, 203, 0,1) 0 0 5px,
rgba(255, 203, 0,1) 0 0 5px,black 0 0 1px;
color:white;
position: absolute;
left: 48px;
top: 48px;
}
2015-11-28 03:45:23 +00:00
.videonode>.video_star{
opacity: 0;
position: absolute;
left: 196px;
top: 4px;
font-size: 16px;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
}
.videonode:not(.starred):hover>.video_star{
opacity: 0.5;
}
.videonode.starred>.video_star{
opacity: 1
}
2017-04-18 15:56:01 +00:00
.onlineclient .videonode{
margin: 5px;
padding: 0;
width: calc(100% - 20px);
height: 30px;
overflow: visible;
border-top-left-radius:10px;
border-bottom-left-radius:10px;
}
.onlineclient .videonode>.videoavatar{
padding: 0;
left: -4px;
top: -2px;
width: 34px;
height: 34px;
border-radius: 100%;
}
.onlineclient .videotext{
margin-top: 0px;
font-size: 14px;
width: calc(100% - 30px);
}
.onlineclient .onlineevent.videotext{
margin-top: 2px;
}
.onlineclient .videonode>.name{
left: 35px;
2017-04-19 05:23:33 +00:00
max-width: 125px;
overflow: hidden;
2017-04-18 15:56:01 +00:00
white-space: nowrap;
text-align: left;
height: 30px;
line-height: 30px;
font-size: 18px;
font-family: 'xinwei';
}
.onlineevent>div{
text-align: left;
position: relative;
display: block;
margin-top: 5px;
margin-bottom: 5px;
}
.onlineevent>div.title{
font-family: 'xinwei';
font-size: 18px;
}
2016-06-04 01:59:50 +00:00
.button-downloading>.button-progress{
2017-03-26 14:57:50 +00:00
width: 100%;
2016-06-04 01:59:50 +00:00
border-radius: 4px;
z-index: 1;
2017-03-26 14:57:50 +00:00
overflow: hidden;
}
.button-downloading>.button-progress>div{
width: 0;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
border-radius: 0px;
background: linear-gradient(rgb(29,206,68),rgb(1,148,46));
2016-06-04 01:59:50 +00:00
}
.button-downloading>div:not(.button-progress){
width: 100% !important;
z-index: 2;
}
.button-downloading>span{
opacity: 0;
}
.button-downloading>div{
height: 100%;
margin: 0 !important;
padding: 0 !important;
position: absolute !important;
left: 0 !important;
top:0;
2016-06-02 13:13:57 +00:00
}
2016-07-24 05:22:17 +00:00
2017-02-14 02:16:03 +00:00
.menu-buttons .file-container{
position: absolute;
margin: 0;
padding: 0;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: scroll;
}
.menu-buttons .file-container>div{
2017-02-13 17:16:14 +00:00
position: relative;
left: 0;
display: block;
margin: 12px;
margin-bottom: 15px;
white-space: nowrap;
text-align: left;
}
2017-02-14 02:16:03 +00:00
.menu-buttons .file-container>div>span{
2017-02-13 17:16:14 +00:00
cursor: pointer;
2017-02-14 02:16:03 +00:00
text-decoration: underline;
}
.menu-buttons .file-container>div>img{
display: block;
margin-top: 5px;
2017-02-13 17:16:14 +00:00
}
2016-07-24 15:51:55 +00:00
.menubutton.large.dashboard{
2016-07-24 05:22:17 +00:00
width: 80px;
height: 80px;
margin: 6px;
2016-07-24 15:51:55 +00:00
position: relative !important;
2016-07-24 05:22:17 +00:00
}
2017-02-13 17:16:14 +00:00
.menubutton.large.dashboard.dashboard2{
width: 60px;
height: 60px;
margin: 5px;
margin-top: 10px;
}
.menubutton.large.dashboard.dashboard2>div:first-child{
font-size: 40px;
line-height: 40px;
}
.menubutton.large.dashboard.dashboard2>div:last-child{
font-size: 16px;
white-space: nowrap;
}
2016-07-24 15:51:55 +00:00
.menubutton.large.dashboard>div:first-child{
2016-07-24 05:22:17 +00:00
font-family: 'lishu','xiaozhuan';
font-size: 60px;
line-height: 60px;
position: absolute;
left: 0;
2016-07-24 15:51:55 +00:00
top: 7px;
2016-07-24 05:22:17 +00:00
width: 100%;
height: 60px;
}
2016-07-24 15:51:55 +00:00
.menubutton.large.dashboard>div:last-child{
2016-07-24 05:22:17 +00:00
font-size: 18px;
position: absolute;
left: 0;
bottom: 0;
width: 100%;
}
#create-extension{
height: calc(100% - 5px);
2016-07-24 15:51:55 +00:00
width: calc(100% - 10px);
overflow: hidden;
2016-07-24 05:22:17 +00:00
}
#create-extension>div{
position: absolute;
width: 100%;
height: 100%;
overflow: scroll;
left: 0;
top: 0;
}
#create-extension>.menu-buttons{
left:10px;
height: calc(100% - 5px);
2016-07-24 15:51:55 +00:00
width: calc(100% - 15px) !important;
2016-07-24 05:22:17 +00:00
}
#create-extension>.menu-buttons>.config.more{
margin-left: 0px !important;
margin-top: 10px !important;
}
2016-07-24 15:51:55 +00:00
#create-extension>.menu-buttons>.config.more.margin-bottom{
margin-left: 0px !important;
margin-top: 10px !important;
margin-bottom: 5px !important;
}
2016-07-24 05:22:17 +00:00
#create-extension>.hidden{
pointer-events: none;
}
#create-extension>div:not(*:first-child).hidden{
transform: translateX(200px);
}
#create-extension>.menu-buttons>.new_character>.skill_list{
2017-02-20 12:47:48 +00:00
top: 220px;
2016-07-24 05:22:17 +00:00
}
2016-07-26 05:47:03 +00:00
#create-extension>.menu-buttons>.new_character>.skill_list>div:first-child{
transition: all 0s;
}
2016-07-24 05:22:17 +00:00
#create-extension>.menu-buttons>.new_character>.skill_list>div:first-child:not(*:empty){
margin-top: 10px;
2016-07-30 13:28:26 +00:00
margin-bottom: 10px;
2016-07-24 05:22:17 +00:00
}
#create-extension>.menu-buttons>.new_character>.skill_list>div:first-child>button{
margin-right: 3px;
margin-bottom: 3px;
}
2016-07-24 15:51:55 +00:00
.popup-container.editor>div{
width: 80%;
height: 90%;
position: absolute;
left: 10%;
top: 5%;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 0 10px;
background: white;
2016-07-27 14:39:23 +00:00
overflow: hidden;
2016-07-24 15:51:55 +00:00
}
.popup-container.editor>div>.editbutton{
font-family: 'lishu';
font-size: 18px;
color: rgb(60,60,60);
text-shadow: none;
position: absolute;
left: 0;
padding: 7px;
font-size: 24px;
2017-03-24 03:47:22 +00:00
cursor: pointer;
2016-07-24 15:51:55 +00:00
}
.popup-container.editor>div>.editbutton:first-child{
left: auto;
right: 0;
}
.popup-container.editor>div>div:last-child{
width: 100%;
height: calc(100% - 40px);
position: absolute;
top:40px;
border-radius: 0 0 4px 4px;
border-top: 1px solid rgba(0,0,0,0.2);
}
2016-07-25 16:49:15 +00:00
.popup-container.editor>div>div:last-child>textarea{
width: 100%;
height: 100%;
border:none;
margin:0;
padding: 0;
resize: none;
}
2016-07-26 05:47:03 +00:00
.menubutton.large.new_card,
.menubutton.large.new_card_delete{
left: 12px;
top: 130px;
margin-bottom: 20px;
}
.menubutton.large.new_card_delete{
left: 155px;
}
.edit_pile{
width: 100%;
left: 0;
padding-bottom: 20px;
}
.edit_pile>div:last-child{
width: 100%;
position: relative;
}
.edit_pile>div:last-child>button{
margin-right: 3px;
margin-top: 3px;
}
.new_character.new_skill>div{
position: relative;
margin-top: 2px;
white-space: nowrap;
overflow: visible;
}
.new_character.new_skill>div>button{
margin-right: 3px;
}
.menu-buttons.new_skill>.menubutton{
position: relative;
margin:5px;
}
.new_character.new_skill>.menubutton.large{
left: 13px;
position: absolute;
top: 88px;
}
.new_character.new_skill>.menubutton.large.new_card_delete{
left: 155px;
}
2017-03-22 10:46:51 +00:00
.popup-container>.prompt-container{
display: table;
width: 100%;
height: 100%;
left: 0;
top: 0;
margin: 0;
padding: 0;
}
.popup-container>.prompt-container>div{
height: auto;
display: table-cell;
vertical-align: middle;
text-align: center;
position: relative;
}
.popup-container>.prompt-container>div>div{
position: relative;
}
.popup-container>.prompt-container>div>div>div{
display: block;
width: calc(100% - 10px);
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 0;
text-align: center;
position: relative;
width: 230px;
}
.popup-container>.prompt-container>div>div>div:first-child{
text-align: left;
}
.popup-container>.prompt-container>div>div>div:last-child{
margin-bottom: 10px;
}
.popup-container>.prompt-container>div>div>div>input{
text-align: left;
width: 100%;
resize: none;
border: none;
border-radius: 2px;
height: 20px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 1px;
}
.popup-container>.prompt-container>div>div>div>.menubutton{
position: relative;
margin-left: 6px;
margin-right: 6px;
font-size: 24px;
padding-top: 2px;
padding-bottom: 2px;
}
#window:not(.nopointer) .popup-container>.prompt-container>div>div>div>.menubutton{
cursor: pointer;
}