用户:Staf Irity/Sandbox.css:修订间差异

来自Limbo Wiki
无编辑摘要
标签(旧)WikiEditor
无编辑摘要
标签(旧)WikiEditor
第36行: 第36行:
top:25vh;
top:25vh;
right:0;
right:0;
margin:0px;
margin:0;
padding:0px;
padding:0;
z-index:100;
z-index:100;
}
}
第106行: 第106行:
position: absolute;
position: absolute;
animation: RNDmove 1s infinite linear 0.5s;
animation: RNDmove 1s infinite linear 0.5s;
}
.rnd .lw-treebut.hid {
height:100%;
padding:0;
    border:0;
    background-color: #F2F2F2;
    cursor:pointer;
    /*display:inline-block;*/
}
.rnd .lw-treebut.hid:hover {
    border:0;
    /*display:inline-block;*/
}
}

2023年3月10日 (五) 13:04的版本

/* Tips */
.todo .done:before{
	content:"[√]";
	background-color:green;
	color:white;
	margin-right:0.3em;
}

.todo .doing:before{
	content:"[-]";
	background-color:blue;
	color:white;
	margin-right:0.3em;
}

.todo .start:before{
	content:"[X]";
	background-color:red;
	color:white;
	margin-right:0.3em;
}
.todo .add{
	color:green;
	font-weight: bold;
}
.todo .add:before{
	content:"(+";
}
.todo .add:after{
	content:")";
}
/* Float */
.float0{
	position:fixed;
	overflow:hidden;
	top:25vh;
	right:0;
	margin:0;
	padding:0;
	z-index:100;
}
.float{
	position:relative;
	right:calc(20px - 100%);
	transition: all .2s ease-out;
}
.float0:hover .float{
	right:0;
}

/* Advertisement */
.adbox{
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
}
.ad {
  width: 100%;
  height: 200px;
  position: absolute;
  animation-name: example;
  animation-duration: 16s;  
  animation-fill-mode: forwards;
  animation-iteration-count:infinite;
}
.ad .word{
  margin-top:25px;
  text-align:center;
  font-size:100px;
}
@keyframes example {
  0%   {left:-100%;}
  6.25%  {left:0;}
  25%  {left:0;}
  31.25% {left:100%;}
  100% {left:100%;}
}

/* Red Cat */
body.page\-\7528\6237_Staf_Irity_Draft_Blue_Rabbit pre,
body.page\-\7528\6237_Staf_Irity_Draft_Blue_Rabbit .mw-code{
	background-color:#eef;border:1px solid #bbf;
}
.nomargin pre{margin-top:0;}

/* R-nd-- */
@keyframes RNDmove {
	0%   {left:-100%;}
	100% {left:100%;}
}
.rnd {
	position: relative;
	overflow:hidden;
}
.rnd > div:nth-child(1) {
	width: 100%;
	height: 100%;
	position: absolute;
	animation: RNDmove 1s infinite linear;
}
.rnd > div:nth-child(2) {
	width: 100%;
	height: 100%;
	position: absolute;
	animation: RNDmove 1s infinite linear 0.5s;
}
.rnd .lw-treebut.hid {
	height:100%;
	padding:0;
    border:0;
    background-color: #F2F2F2;
    cursor:pointer;
    /*display:inline-block;*/
}
.rnd .lw-treebut.hid:hover {
    border:0;
    /*display:inline-block;*/
}