Thejotaro
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }
avatar.php?userid=6277235&timestamp=1694267686
Thejotaro
由 the Jotaro 制作
0 个评分

活跃成员的更迭很快,先留个自我介绍。欢迎来到我的作者页,阈限版式爱好者的地狱,纯欲后室人的诅咒之地。

前作者,基本都是写着玩。前管理。译者。

主要在SCP创作,现已不再关注后室创作。如果有兴趣的话,偶尔看两眼。
评分: 0+x


black.png

创建者

avatar.php?userid=6277235&timestamp=1694267686
the Jotaro

Earth Online


发表于
更新日期
09 Sep 2023 13:49
11 Sep 2023 08:19
6334
0
本页面字符数
当前评分人数

DLC免费畅享:

探访the Jotarothe Jotaro位于基金会的作者页 - 平行宇宙DLC

探访the Jotarothe Jotaro秘密沙盒


the Jotarothe Jotaro的库


名称 评分 发布时间 测评 评价
brcon 0 (+0/-0) 16 Jul 2023 18:49 0
scpcon 0 (+0/-0) 16 Sep 2023 08:57 0
Phenomenon C-197 - “异人化” 0 (+0/-0) 14 Mar 2024 17:30 0

回退

名称 评分 发布时间 测评
nav:side 0 (+0/-0) 20 May 2021 14:06 0
nav:top 0 (+0/-0) 20 May 2021 14:06 0
Forum Thread 0 (+0/-0) 20 May 2021 14:06 0
Forum Categories 0 (+0/-0) 20 May 2021 14:06 0
Forum Category 0 (+0/-0) 20 May 2021 14:06 0
Recent Forum Posts 0 (+0/-0) 20 May 2021 14:06 0
Recent Threads 0 (+0/-0) 20 May 2021 14:06 0
New Forum Thread 0 (+0/-0) 20 May 2021 14:06 0
Manage this site 0 (+0/-0) 20 May 2021 14:06 0
component:theme 0 (+0/-0) 20 May 2021 14:06 0
component:area 0 (+0/-0) 20 May 2021 14:06 0
component:listpages-hubs 0 (+0/-0) 20 May 2021 14:06 0
component:listpages-table 0 (+0/-0) 20 May 2021 14:06 0
component:listpages-table-alt 0 (+0/-0) 20 May 2021 14:06 0
component:listpages-tales 0 (+0/-0) 20 May 2021 14:06 0
component:heritage-rating 0 (+0/-0) 20 May 2021 14:06 0
component:image-block 0 (+0/-0) 20 May 2021 14:06 0
component:image-block-base 0 (+0/-0) 20 May 2021 14:06 0
component:image-block-left 0 (+0/-0) 20 May 2021 14:06 0
component:image-block-left-base 0 (+0/-0) 20 May 2021 14:06 0
component:image-block-quoted 0 (+0/-0) 20 May 2021 14:06 0
component:image-block-quoted-base 0 (+0/-0) 20 May 2021 14:06 0
component:mtf 0 (+0/-0) 20 May 2021 14:06 0
component:preview 0 (+0/-0) 20 May 2021 14:06 0
component:site 0 (+0/-0) 20 May 2021 14:06 0
Search this site 0 (+0/-0) 20 May 2021 14:06 0
List All Pages 0 (+0/-0) 20 May 2021 14:06 0
最近新增页面 0 (+0/-0) 20 May 2021 14:45 0
后继无人 0 (+0/-0) 20 May 2021 14:54 0
无聊人的故事 0 (+0/-0) 20 May 2021 14:59 0
基金会月刊六月报道 0 (+0/-0) 20 May 2021 15:03 0
SCP-CN-2700 - 安乐死 0 (+0/-0) 20 May 2021 15:07 0
fragment:scp-cn-2700-1 0 (+0/-0) 20 May 2021 15:12 0
fragment:scp-cn-2700-2 0 (+0/-0) 20 May 2021 15:15 0
fragment:scp-cn-2700-3 0 (+0/-0) 20 May 2021 15:21 0
fragment:scp-cn-2700-4 0 (+0/-0) 20 May 2021 15:24 0
fragment:scp-cn-2700-5 0 (+0/-0) 20 May 2021 15:27 0
所有已完成作品 0 (+0/-0) 20 May 2021 15:33 0
jotaro的图床 0 (+0/-0) 23 May 2021 07:50 0
fragment:lefs-7-2 0 (+0/-0) 31 May 2021 03:46 0
所有草稿 0 (+0/-0) 10 Feb 2022 16:13 0
作品链接 0 (+0/-0) 10 Feb 2022 16:26 0
所有工具页面 0 (+0/-0) 10 Feb 2022 18:23 0
Page Tags 0 (+0/-0) 10 Feb 2022 18:27 0
所有页面 0 (+0/-0) 11 Feb 2022 13:00 0
Members 0 (+0/-0) 11 Feb 2022 13:03 0
My Pages 0 (+0/-0) 11 Feb 2022 19:35 0
最近修改 0 (+0/-0) 11 Feb 2022 21:53 0
Level C-117 - 健康恐怖主义 0 (+0/-0) 15 Feb 2022 23:02 0
Episode 2 0 (+0/-0) 27 Mar 2022 15:51 0
Episode 3 0 (+0/-0) 27 Mar 2022 15:53 0
代码调试区2 0 (+0/-0) 31 Mar 2022 18:24 0
KTE-0369-Elec-FoCorona 0 (+0/-0) 12 Apr 2022 15:47 0
悲寂索寞 0 (+0/-0) 22 Apr 2022 14:29 0
第二次复苏 0 (+0/-0) 28 Apr 2022 15:47 0
你应当知晓的理念——关于The M.E.G. 0 (+0/-0) 08 May 2022 14:11 0
懒人作者页(后室版) 0 (+0/-0) 09 May 2022 13:38 0
Level C-1-2 0 (+0/-0) 09 May 2022 16:44 0
网站标签 0 (+0/-0) 13 May 2022 17:03 0
0 (+0/-0) 13 May 2022 17:56 0
基金会的勇者冒险 0 (+0/-0) 13 May 2022 18:14 0
“Two souls,once lost,and now they remember” 0 (+0/-0) 13 May 2022 18:16 0
沦陷 0 (+0/-0) 13 May 2022 18:18 0
沦陷 0 (+0/-0) 13 May 2022 18:19 0
SCP-CN-2701 - 视线囚笼:地球 0 (+0/-0) 13 May 2022 18:22 0
SCP-CN-2702-EX - 我有,再靠近你一点吗? 0 (+0/-0) 13 May 2022 18:23 0
SCP-CN-2702-EX-1 0 (+0/-0) 13 May 2022 18:25 0
SCP-CN-2702-EX-2 0 (+0/-0) 13 May 2022 18:27 0
来自基金会六号星舰“利维坦”号数据库 - 核心档案 0 (+0/-0) 13 May 2022 18:39 0
SCP-CN-2105 - 活冢 0 (+0/-0) 13 May 2022 18:42 0
SCP-CN-1449 - 无声尖啸 0 (+0/-0) 13 May 2022 18:49 0
SCP-CN-2145 - 彼岸清明 0 (+0/-0) 13 May 2022 18:50 0
《普林特初级百科》卷20:值得注意的常见精怪 0 (+0/-0) 13 May 2022 18:53 0
卡普兰德服务:事故与控告与不存在处理 0 (+0/-0) 13 May 2022 18:56 0
我不视命 0 (+0/-0) 13 May 2022 18:57 0
他乡余烬 0 (+0/-0) 13 May 2022 19:00 0
编书者 0 (+0/-0) 13 May 2022 19:02 0
小绿型出门在外也要记得保护自己 0 (+0/-0) 13 May 2022 19:04 0
SCP-CN-2651 - You are always my Hero 0 (+0/-0) 13 May 2022 19:06 0
此地高原寂静无人,一片废墟,我只留下安息 0 (+0/-0) 13 May 2022 19:09 0
Level C-25 - “安全转化” 0 (+0/-0) 13 May 2022 19:12 0
Level c-25-1 0 (+0/-0) 13 May 2022 19:13 0
Level C 25 2 0 (+0/-0) 13 May 2022 19:15 0
Level C-138 - “罗塞塔” 0 (+0/-0) 14 May 2022 08:30 0
第二代反超大型袭击者构造项目 - 『Zero』 0 (+0/-0) 14 May 2022 13:24 0
身份卡使用例 0 (+0/-0) 17 May 2022 13:52 0
Level C-343 - “寒冬告急” 0 (+0/-0) 18 May 2022 15:33 0
3d-logo后室版 源代码 0 (+0/-0) 28 May 2022 17:02 0
3d-logo后室版 0 (+0/-0) 28 May 2022 17:04 0
Level C-343 - 1 0 (+0/-0) 29 May 2022 14:43 0
Level C 343 2 0 (+0/-0) 30 May 2022 18:02 0
长眠各地,铭记于此 0 (+0/-0) 13 Jun 2022 18:25 0
漫漫长夜,人亦无光 0 (+0/-0) 19 Jun 2022 17:26 0
未命名 0 (+0/-0) 26 Jun 2022 04:11 0
Entity C-4444-J - “四蛋” 0 (+0/-0) 05 Jul 2022 12:57 0
Jotaro图床2 0 (+0/-0) 10 Jul 2022 06:46 0
Level-c-1-1 0 (+0/-0) 19 Jul 2022 18:06 0
处罚记录 0 (+0/-0) 24 Jul 2022 23:06 0
Object C-95 - “雷神锤动力突击护甲 GEN1 MarkⅤB型” 0 (+0/-0) 26 Jul 2022 14:51 0
Crom 0 (+0/-0) 26 Jul 2022 17:45 0
身份卡——后室 0 (+0/-0) 29 Jul 2022 12:23 0
代码调试区 0 (+0/-0) 29 Jul 2022 12:26 0
消歧义页 0 (+0/-0) 04 Aug 2022 08:44 0
词条搜索:"Object C-59" 0 (+0/-0) 04 Aug 2022 10:26 1
Object C-59 - 雷神锤动力突击护甲 0 (+0/-0) 04 Aug 2022 10:31 0
MJOLNIR B项目(Object C-59-1) 0 (+0/-0) 04 Aug 2022 11:51 0
占位符:页面分数 0 (+0/-0) 13 Aug 2022 13:05 0
占位符 0 (+0/-0) 14 Aug 2022 15:13 0
最近创建页面一览 0 (+0/-0) 14 Aug 2022 15:38 0
3d动画源代码 0 (+0/-0) 17 Aug 2022 14:59 0
3d logo动画:终极自定义版 0 (+0/-0) 17 Aug 2022 17:21 1
使用例 0 (+0/-0) 17 Aug 2022 17:23 0
Liminal 0 (+0/-0) 18 Aug 2022 01:26 0
占位符 0 (+0/-0) 18 Aug 2022 01:38 0
Wanderers 0 (+0/-0) 18 Aug 2022 01:44 0
Level C-474 0 (+0/-0) 20 Aug 2022 05:56 0
超级 · 阈限 流 0 (+0/-0) 25 Aug 2022 14:26 1
my work 0 (+0/-0) 27 Aug 2022 08:49 0
残剧:伊格尼鲁七世如是说 0 (+0/-0) 27 Aug 2022 11:34 0
SCP-CN-XXXX - 神明枯骨泣悠悠 0 (+0/-0) 06 Sep 2022 17:23 0
Coltop 0 (+0/-0) 06 Sep 2022 17:25 0
Colend 0 (+0/-0) 06 Sep 2022 17:27 0
AI图像集合 0 (+0/-0) 11 Sep 2022 22:57 0
Entity C-10 - 异人 0 (+0/-0) 12 Oct 2022 15:20 0
Recent Changes 0 (+0/-0) 09 Nov 2022 14:38 0
星夜依旧 0 (+0/-0) 17 Nov 2022 17:06 0
Bhl 0 (+0/-0) 18 Nov 2022 17:36 0
Wander S9 0 (+0/-0) 18 Nov 2022 17:38 0
Wander Bhl 0 (+0/-0) 18 Nov 2022 17:39 0
S9 0 (+0/-0) 18 Nov 2022 17:41 0
Test 0 (+0/-0) 22 Dec 2022 05:27 0
放在作者页里的懒人页面检索工具的使用方法 0 (+0/-0) 18 Jan 2023 03:17 0
作者页 0 (+0/-0) 27 Jan 2023 22:12 0
AI绘图与其他 0 (+0/-0) 28 Jan 2023 01:26 0
可用的工具网站 0 (+0/-0) 15 Feb 2023 16:44 0
午前三時 0 (+0/-0) 19 Feb 2023 15:37 0
懒人作者页-合著块 0 (+0/-0) 07 Mar 2023 10:02 0
111 0 (+0/-0) 07 Mar 2023 14:59 0
作者页工具Base 0 (+0/-0) 08 Mar 2023 12:06 0
作者页工具 0 (+0/-0) 08 Mar 2023 12:42 0
自用版式 0 (+0/-0) 11 Mar 2023 10:15 0
测试 0 (+0/-0) 18 Mar 2023 20:43 0
Lorecon 0 (+0/-0) 18 Jun 2023 16:48 0
Level 808 N 0 (+0/-0) 20 Aug 2023 07:21 1
level-nowhere-n 0 (+0/-0) 21 Aug 2023 03:11 0
Level N 情报合集中心 0 (+0/-0) 21 Aug 2023 11:21 0
工作列表 0 (+0/-0) 21 Aug 2023 13:30 0
Nameless Weeds 0 (+0/-0) 05 Sep 2023 16:28 0
Thejotaro 0 (+0/-0) 09 Sep 2023 13:49 0
序一话 0 (+0/-0) 22 Sep 2023 07:05 0
Kyoukaicontest2023 Hub 0 (+0/-0) 07 Jan 2024 08:36 0
罹于疯者,惟有自噬 0 (+0/-0) 02 Mar 2024 18:39 0
Credit Top Sp 0 (+0/-0) 12 Feb 2025 08:57 0
Join 0 (+0/-0) 12 Nov 2025 09:26 0
Entity C-10 - “异人”(旧) 1 (+1/-0) 21 Feb 2022 14:54 0
光环:无隙心锁 · 其一 1 (+1/-0) 27 Mar 2022 15:39 1
基金会大战机动骑士 1 (+1/-0) 06 May 2022 16:39 0
监控记录:观谬维基平台群组备份 06/15/2021 1 (+1/-0) 13 May 2022 18:11 0
2022拼尸竞赛采访 1 (+1/-0) 05 Jun 2022 16:31 0
世界很小,选好你的阵营 1 (+1/-0) 28 Aug 2022 17:00 0
评价不是难事:拒绝捧杀,堵住喊爹的嘴 1 (+1/-0) 09 Sep 2022 11:10 0
Level C-模板 2 (+2/-0) 22 Feb 2022 13:13 0
Level C-699 - Backrooms,你这狗杂种! 2 (+2/-0) 25 Sep 2022 03:38 0
常用/实用版式、组件与CSS 3 (+3/-0) 14 Feb 2022 10:32 0
血肉、故里、追忆,圣者遗骸与虚妄之梦 3 (+3/-0) 25 May 2022 18:29 0
Ready or Not:关于新人引导与行为建议的私人电台 3 (+3/-0) 15 Jul 2022 14:20 0
Level C-1 - “致以辉煌之人” 3 (+3/-0) 19 Jul 2022 18:06 0
后室版使用例 3 (+3/-0) 13 Aug 2022 17:04 0
星夜依旧 3 (+3/-0) 12 Jan 2023 15:28 0
Main 8 (+8/-0) 20 May 2021 14:06 3

回退

今日幸运页面

常用/实用版式、组件与CSS
分数:3(好评率:100%) / 测评: 篇

点此查看更多:翻译作品

点此查看更多:原创作品


the Jotarothe Jotaro的创意工坊



留言


momsknifemomsknife:一个低调、优秀且认真的作者/前辈。

azureactiveazureactive:不要删站啊啊啊啊啊!!!

Ming ZhaoMing Zhao:(搬来一把遮阳伞)(搬来一把折叠椅)(躺下)(喝夜芷椰汁)(看橙子玩水)(想要一起玩水)(跃跃欲试地起身)(跑向海边)(被沙堡绊倒)(倒插在沙滩里)

paradox404paradox404




并不全部符合CC BY-SA 3.0协议,但已完成的备份页面是的