Just_We
评分: +18+x

Usage

To import this theme to your page, put the following anywhere inside it:

[[include :scp-wiki:theme:creepypasta]]

The standard CSS @import method won't work. This is intentional (thanks to stormbreathstormbreath for providing the CSS code!). Importing the theme using [[include]] adds your page to a list of Backlinks. This is useful for seeing what pages would be affected when this theme is updated, and allows any errors caused by that to be noticed and corrected much faster.

You can view any page's Backlinks by clicking "+ Options" at the bottom of the page, then "Backlinks".


Examples

rook.png

Parawatch Logo.

A horizontal rule can be created with 5 hyphens "-----" and extends across the whole page if it's not placed inside anything (eg a blockquote). The lines separating sections of this document are horizontal rules.

Titles can be created by putting between one and six plus "+" at the start of the line

This is a tab view.

This is a blockquote, created by putting "> " at the start of each line.

More text


That's a horizontal rule

Nested blockquotes

This is a table
You should know how to make these
already
@import url('https://fonts.googleapis.com/css?family=PT+Mono&display=swap');
 
/*
    Powered on 2019/05/09 06:09:42
    [2019 Wikidot Theme]
    Created by The Great Hippo
    CC BY-SA 3.0
*/
 
/* FONTS AND COLORS */
 
:root {
    --bg-light: #262626;
    --bg: #1a1a1a;
    --bg-dark: #000000;
 
    --fg-light: #ffffff; 
    --fg:  #f2f2f2;
    --fg-dark: #e6e6e6;
 
    --fg-accent-light: #ffffcc;
    --fg-accent: #ffff99;
    --fg-accent-dark: #ffff80;
 
    --fg-accent-2: #ffffff;
 
}
 
body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'PT Mono', monospace;
}
 
a, a:visited {
    color: var(--fg-accent-dark);
}
 
h1, h2, h3, h4, h5, h6, #page-title {
    color: var(--fg-light);
    font-family: 'PT Mono', monospace;
}
 
ins, del {
    color: black;
}
 
/* HEADER */
 
div#container-wrap {
    background: url(https://scp-wiki.wdfiles.com/local--files/theme%3Acreepypasta/gradient.png) top left repeat-x;
}
 
div#header {
    background: url(https://scp-wiki.wdfiles.com/local--files/theme%3Acreepypasta/parawatch.png) 10px 40px no-repeat;
}
 
div#header h1 a span {
    /* hiding header text */
    font-size: 0px;
    color: transparent;
}
 
div#header h1 a:before {
    content: " ";
    color: rgb(24, 24, 24);
}
 
div#header h2 span {
    font-size:0px;
    padding: 4px;
}
 
div#header h2:after {
    content: " ";
    font-weight: bold;
    color: rgb(255, 224, 135);
    padding: 19px 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
    white-space: pre;
}
 
/* SIDE-BAR */
 
div#side-bar a,
div#side-bar a:visited {
    color: var(--fg-dark);
}
 
div#side-bar div.side-block {
    background: rgb(24, 24, 24);
    border: 1px solid #ffe087;
    box-shadow: 0 2px 6px #404040;
}
 
div#side-bar div.side-block.media,
div#side-bar div.side-block.resources {
    background: rgb(24,24,24);
}
 
div#side-bar div.side-block div.heading,
div#side-bar div.collapsible-block-unfolded-link,
div#side-bar div.collapsible-block-unfolded-link div.collapsible-block-link {
    color: rgb(255, 224, 135);
    border-color: rgb(255, 224, 135);
}
 
/* Recolors the image bullet points in the side-bar */
.side-block .menu-item > .image {
    filter: hue-rotate(230deg) invert(100%);
}
 
/* Recolors the Translation Module */
div.scpnet-interwiki-wrapper {
    filter: hue-rotate(230deg) invert(100%);
}
 
/* Recolors the panel that opens on mobile with the side-bar */
@media (max-width: 767px) {
    #side-bar{
        background-color: var(--bg);
    }
}
 
/* Recolors the drop down from the arrow next to username in the header */
#login-status ul a {
    color: var(--fg);
    background: var(--bg);
    border-color: var(--fg);
}
 
#login-status ul a:hover {
    color: var(--fg-dark);
}
 
/* Makes the code readable */
.hl-identifier, .hl-code, .hl-brackets {
    color: var(--fg);
}
 
/* Top-Bar */
#top-bar a { 
    color: var(--fg-dark);
}
 
#top-bar ul li ul {
    border-color: var(--fg-light);
}
 
#top-bar ul li.sfhover ul li a,
#top-bar ul li:hover ul li a {
   border-top-color: var(-fg-light);
}
 
#top-bar ul li.sfhover a,
#top-bar ul li:hover a {
    background-color: var(--bg-light);
    color: var(--fg-dark);
}
 
#top-bar ul li.sfhover a:hover,
#top-bar ul li:hover a:hover {
    background: var(--bg-dark); /* top bar hover background color */
    color: var(--fg-dark);
}
 
div.yui-navset div.yui-content {
    background: rgb(24, 24, 24);
}
 
div.yui-navset ul.yui-nav a,
div.yui-navset div.yui-navset-top ul.yui-nav a {
    background: rgb(24, 24, 24);
    color: rgb(255, 237, 185);
    border: solid 1px #ffffff;
}
 
div.yui-navset ul.yui-nav a:hover,
div.yui-navset ul.yui-nav a:focus {
    background: rgb(40, 40, 40);
    color: rgb(255, 237, 185);
}
 
div.yui-navset ul.yui-nav .selected a,
div.yui-navset ul.yui-nav .selected a:focus,
div.yui-navset ul.yui-nav .selected a:hover {
    background: rgb(50, 50, 50);
    color: var(--fg);
    border: solid 2px #ffff99;
}
 
/* rating module */
 
.page-rate-widget-box .rate-points {
    background-color: var(--bg-dark) !important;
}
 
.page-rate-widget-box .rate-points,
.page-rate-widget-box .rateup a,
.page-rate-widget-box .ratedown a,
.page-rate-widget-box .cancel a {
    background-color: var(--bg-dark);
    color: white;
    border: 0;
}
 
.page-rate-widget-box .rateup,
.page-rate-widget-box .ratedown,
.page-rate-widget-box .cancel {
    background-color: var(--bg-dark);
    border: 0;
    border-left: 1px solid var(--fg-accent-light);
}
 
.page-rate-widget-box .rate-points,
.page-rate-widget-box .cancel a {
    border: 0;
 
}
 
.page-rate-widget-box .rateup a,
.page-rate-widget-box .ratedown a {
    background-color: var(--bg-dark);
    color: white;
}
 
.page-rate-widget-box .rateup a:hover,
.page-rate-widget-box .ratedown a:hover,
.page-rate-widget-box .cancel a:hover {
    background-color: var(--bg-dark);
    color: white;
}
 
/* footnote hovers */
 
.hovertip {
    width: 20em;
    padding: 0.5em;
 
    border: 1px solid var(--fg-accent-light) !important;
    border-radius: 0.5em;
 
    background-color: #000000ee !important;
    box-shadow: 0 0 6px 1px #000000aa;
    z-index: 100;
}
 
.hovertip .f-heading {
    color: var(--fg-accent-light);
}
 
/* inputs */
 
input.text, input.button,
#search-top-box-input,
#search-top-box-form input[type=submit],
div.buttons input, input.button, button, file, a.button {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--fg-accent-2);
    border-radius: 0;
    font-size: 1em;
    outline: 0;
}
 
div.buttons input:hover, div.buttons input:focus,
input.button:hover, input.button:focus,
button:hover, button:focus,
file:hover, file:focus,
a.button:hover, a.button:focus {
    border-color: var(--fg-accent-2);
    background: transparent;
    color: var(--fg);
}
 
input.text:hover, input.button:hover,
input.text:focus, input.button:focus,
#search-top-box-input:hover,
#search-top-box-input:focus,
#search-top-box-form input[type=submit]:hover,
#search-top-box-form input[type=submit]:focus {
    color: var(--fg);
    background: transparent;
    border: 1px solid var(--fg-accent-2);
    outline: 0;
}
 
/* EDITING WINDOWS */
.owindow {
    color: #000;
}
 
.owindow h1, .owindow h2, .owindow h3, .owindow h4, .owindow h5, .owindow h6 {
    color: #000;
}
 
.owindow a {
    color: #272727;
}
 
table.page-files .highlight {
    background-color: #272727;
}
 
input.text {
    border: 1px dashed #000;
    color: #fff;
}
 
input.text:focus {
    border: 1px dashed #000;
    color: #fff;
}
 
input.text:hover {
    border: 1px dashed #000;
    color: #fff;
}
 
div#lock-info {
    background-color: var(--bg-light);
}
 
/* BLOCKQUOTES */
 
blockquote,
div.blockquote {
    background:  var(--bg-dark);
    border-width: 2px;
    border-style: solid;
    border-color: var(--bg-light);
}
 
/* Parawatch Forum Pseudo-Blockquotes */
div.parapost {
    background:  var(--bg-dark);
    border-width: 2px;
    border-style: solid;
    border-color: var(--bg-light);
    padding: 0 1em;
    margin: 1em 3em;
}
 
div.parapost.reply1 {margin: 1em 3em 1em 4em;}
div.parapost.reply2 {margin: 1em 3em 1em 5em;}
div.parapost.reply3 {margin: 1em 3em 1em 6em;}
div.parapost.reply4 {margin: 1em 3em 1em 7em;}
div.parapost.reply5 {margin: 1em 3em 1em 8em;}
 
@media (max-width: 479px) {
   div.parapost {margin: 1em 0;}
   div.parapost.reply1 {margin: 1em 0 1em 1em;}
   div.parapost.reply2 {margin: 1em 0 1em 2em;}
   div.parapost.reply3 {margin: 1em 0 1em 3em;}
   div.parapost.reply4 {margin: 1em 0 1em 4em;}
   div.parapost.reply5 {margin: 1em 0 1em 5em;}
}
 
@media (min-width: 480px) and (max-width: 580px) {
   div.parapost {margin: 0.5em;}
   div.parapost.reply1 {margin: 0.5em 0.5em 0.5em 1em;}
   div.parapost.reply2 {margin: 0.5em 0.5em 0.5em 1.5em;}
   div.parapost.reply3 {margin: 0.5em 0.5em 0.5em 2em;}
   div.parapost.reply4 {margin: 0.5em 0.5em 0.5em 2.5em;}
   div.parapost.reply5 {margin: 0.5em 0.5em 0.5em 3em;}
}
 
/* IMAGES */
 
#page-content .scp-image-block {
    border-color: var(--fg-accent);
    box-shadow: none;
}
#page-content .scp-image-block .scp-image-caption {
    border-color: var(--fg-accent);
    background-color: var(--bg-dark);
}
 
table.wiki-content-table th {
    background-color: var(--bg-dark);
}
 
hr {
    background-color: var(--fg);
}
 
.code {
    border: 1px dashed var(--fg);
    background-color: transparent;
 
    font-family: "Courier", "Courier New", "Roboto Mono", monospace;
    font-size: 1em;
}
 
/* INFO MODULE */
 
#page-content .rate-box-with-credit-button {
    background-color: var(--bg-dark); 
    border: 1px solid var(--bg-dark);
}
 
#page-content .rate-box-with-credit-button .creditButton p a {
    border-left-color: var(--fg-accent-light);
}
 
#page-content .rate-box-with-credit-button .page-rate-widget-box .cancel {
    border-radius: 0;
}
#page-content .rate-box-with-credit-button .page-rate-widget-box .rate-points {
    border-left: 0;
}
 
#page-content .modalbox {
    background: linear-gradient(var(--bg) 51px,var(--bg-light) 51px,var(--bg-light)) !important;
    color: var(--fg);
    box-shadow: 0 2px 6px #404040;
}
 
.close-credits,
.credit-back {
    filter: hue-rotate(230deg) invert(100%) brightness(150%);
}
 
#footer {
    background: var(--bg-light);
}
 
/* MOBILE CODE */
@media (max-width: 767px) { 
    div#header {
        background-size: 22em;
        background-position: 1em;
    }
 
    #top-bar .open-menu a {
        border: 0.2em solid var(--bg-light);
        background-color: #787878;
        color: var(--bg-light);
  }
}




blue

即使在深切的热爱里面 我们也是孤独

庆 山






尘封的心脏唱不出歌。





網站的已刪除頁面

SCP-CN-1711 writer7_1126 16
SCP-CN-1464 (user deleted) 7
SCP-CN-1457 (user deleted) 8
SCP-CN-1449 (user deleted) 15
SCP-CN-1442 beryllium 19
SCP-CN-1430 Alan_233 15
SCP-CN-1424 Mahamud 13
SCP-CN-1420 jackieWang 3
SCP-CN-904 Tiyok349 12
SCP-CN-1408 xiyue 5
SCP-CN-1398 NNNotch 10
SCP-CN-1375 ChromaCo 11
SCP-CN-1373 Suloob 6
SCP-CN-1371 mengxing3 8
SCP-CN-1370 Shadow scarlet 8
SCP-CN-1367 fu-ying 13
SCP-CN-1365 Bacon Coinber 9
SCP-CN-1355 Dr_Naxurt 11
SCP-CN-1341 YiliuDu 10
SCP-CN-1342 Bulrush 2
SCP-CN-1337 Michel Edam 3
SCP-CN-1335 ansel shafiqul 4
SCP-CN-1332 Nipporita 12
SCP-CN-1330 Altale 5
UIU档案:1996-005 Etinjat 35
SCP-CN-1324 Amy Vlad 6
SCP-CN-1318 Szpower888 13
SCP-CN-1310 Yueqing hua 11
SCP-CN-1309 JAKQ blitzkrieg 7
SCP-CN-1289 Gali Z R 14
SCP-CN-1291 Chris Zhao 4
SCP-CN-1293 -SUEUN- 8
SCP-CN-1296 ansel shafiqul 8
SCP-CN-1281 Carlos 0 4
SCP-CN-1280 Carlos 0 11
SCP-CN-1266 Jeff Steveng 13
SCP-CN-1255 (user deleted) 10
SCP-CN-1246 MrPasserby 13
SCP-CN-1236 Commissar Yao 15
SCP-CN-1275 zhangyun 13
SCP-CN-1206 DouF 11
SCP-CN-1203 Shadow scarlet 9
SCP-CN-1197 Falconiformes 15
SCP-CN-1174 LPCaCO3 12
SCP-CN-1157 HAKU96 11
SCP-CN-1134 Elena Coli 7
SCP-CN-1138 Harrison Wang 16
SCP-CN-1119 DouF 10
SCP-CN-1117 Black_scar 19
SCP-CN-1105 MeikoMorie 8
SCP-CN-1094 Dr_Naxurt 6
SCP-CN-1093 DrYin 13
SCP-CN-1088 Prion 14
SCP-CN-1071 KingMaoDog 13
SCP-CN-1061 LPCaCO3 12
SCP-CN-1057 yigegou 18
SCP-CN-1051 joke3579 10
SCP-CN-1036 tangliangliang 4
SCP-CN-1028 KarenIris 10
SCP-CN-1425 zhangyun 11
SCP-CN-1601 iflwlou 11
SCP-CN-665 The_Reaper_Kindred 13

圖書館最近頁面

一杯维斯塔 Gali Z R 14
远国的识府 RalcomTheAbsurt 8
在美国的外星人 DREAlity 11
消逝之前 Carlos 0 5
琅嬛福地 藏书中心 Etinjat 36
杂货店 The wind say 4
支付信用卡后发现的信 The wind say 3
我的小岛 The wind say 3
栀子花 DrSee 7
神弃之地与弃神者 Sirius Dawn 30
离了Havana DREAlity 10
寻宝游戏竞赛 DREAlity 1
皇冠社报道 The Obsidian Shard 2
第五艾尔里奇国民党宣言 The Obsidian Shard 5
刻些什么:一则多尔顿新闻稿 The Obsidian Shard 4
艾尔里奇世界 The Obsidian Shard 7
被放逐者的终焉之梦 fwUntidy 33
爱,告白,蓝色死亡 Certhia _familiaris 18
冬风萧瑟 TimeElapsed 14
村野旧事 Nightingale_FZ 12
“以外” Gali Z R 24
蜂鸟与旅人 Dr Roger_F_XL 13
何方 Abe Slane 16
观星 Abe Slane 25
故事贩卖机 Kanie Ja 29
他将盛放成花 Insaniam 12
<Untitled> XANARCHY MILITIA 18
伊卡洛斯的梦 AbsencE1 18
颂玛丽娜 CrossYM 7
井里的人 The Obsidian Shard 40
他是子弹,冲破了整条无人的大街 Agonark 27
关于我转生变成宝乐珠 Lizzie Jefumu 16
大风 Forestar 23
Alkaid Talloran 11
洞真太赤敕演救劫拔厄妙经 Immortals_mingmiao 60
朋友,我将要远航 Gali Z R 23
银河系摇滚乐指南:“蛾”乐队简史 OgaArklin 19
吟游诗人 其十一 CTorJSChen 13
热可可 Just_We 3
河流所见 The wind say 4
自毁,地平论和红色眼睛的神 Certhia _familiaris 47
泪雨的阶梯 Abyss71 20
银河花园的新一年 fwUntidy 42
创始人 迷宫 Forestar 24
除妖 yuuki410 20
一颗美丽的宝石 little snake 11
声音,要更多的声音。 little snake 13
火海 LyCoRiS12 2
环形废墟 Flea_ZER0 23
气功朋克烂片点映会 Dr Vodka Skyy 91
诛日 Lazyyard 30
于是,人们将尸骨食去了 little snake 27
格林·亨特和他的快活奴仆,又名所希冀的童话,或称一曲生命悲歌 Nightingale_FZ 25
我知道,阴云终将散去 Lizzie Jefumu 10
星星花朵味,没品的外星蓝色性变态猫猫头笑话 Certhia _familiaris 24
城堡 carter lu 18
目明 AviliaCelesteria 22
外面……笼子,我要回去 little snake 20
暴雨 Gali Z R 21
Gali Z R 25
鸦之歌·为没有才能而呐喊 HAru-ka 27
毛巾 Lyrics Linn 39
尘封之门 FHBNB 4
他生命中的最后一次鲸落 FRunk-LiErMEI 24
我向神灵虔诚诉苦,神灵赐我一缸子土 Nightingale_FZ 48
只是一份问卷 DrSee 48
古朗多基恩魔法学院游志 OgaArklin 15
和水母一起下坠 Agonark 47
他与诗歌精灵 Cloud_StoMo 25
情景喜剧《回转寿司》热卖中! DrSee 36
Falling Into Sky Gali Z R 31
残缺星星在绽放 Certhia _familiaris 20
诗人,舞者,巧诈师 Lizzie Jefumu 10
共沐于碧海蓝天 (沙三篇其之一) Undyne_Bishop 18
归去定知还向月,梦来何处更为云 Alkaid Talloran 20
树?人?梦? Certhia _familiaris 25
月沉 CatThorns 20
法庭上的驳斥一角——君王与弄臣的对话 Nightingale_FZ 32
静候晨曦 记诗 Lizzie Jefumu 11
新鲜出炉 DrSee 121
盐三篇 wlft 37
去捉坟墓上的萤火蝴蝶 Cloud_StoMo 24
暮光边际 Abyss71 16
被攻陷前 记诗 Lizzie Jefumu 20
孤独与权力的故事 WolfsWilson 14
扒手 Stockholm7 26
村庄 Certhia _familiaris 24
杀死旋木雀 Certhia _familiaris 27
雪之章 其一又1/4 Andrew Boom 9
那是克里斯蒂娜 conch in march 29
就在我嘴边上的名字 The wind say 6
迷茫 Linqinghe 25
长夜漫漫,星辰不再 Alkaid Talloran 27
锦鲤抄 Linqinghe 21
酒馆,蜡烛,风铃和永恒的夜 Nightingale_FZ 28
舞剑 Certhia _familiaris 11
窗外的海 Certhia _familiaris 19
杀死那个疯子 Certhia _familiaris 9
致愚者 Lizzie Jefumu 7
所爱之人 Nightingale_FZ 3
page 1 of 9123...89next »





你爱一个人 他就不会死
《完美旅行》蒋韵









除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License