temporary notice

This commit is contained in:
postautistic 2016-12-12 17:18:10 -05:00
parent d343a5159c
commit 04341831bd
2 changed files with 29 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<meta charset="utf-8"></meta>
<title>DJT</title>
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon'/ >
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/style.css?7">
</head>
<body>
<script src="assets/script.js?3"></script>
@ -31,7 +31,12 @@ if(checkCookie() == false) {
document.getElementById('image').src = 'assets/back' + Math.floor(Math.random() * 5) +'.png?2';
}</script>
<!--<p id="notice"></p>-->
<div id="notice">
<label class="collapse" for="_1">What happened to DJT?</label>
<input id="_1" type="checkbox">
<div class="answer">DJT was <a href="http://desuarchive.org/qa/thread/855746/#858354">banned</a> from /a/ by the mods. There are now threads on <a href="https://boards.4chan.org/jp/catalog#s=djt">/jp/</a> and <a href="https://boards.4chan.org/int/catalog#s=djt">/int/</a>.</div>
</div>
</body>
</html>

View File

@ -81,10 +81,32 @@ margin-left: 6em;
text-align:center;
float:left;
width:100%;
padding:1.5em 0;
}
#notice a {
color: #F44D54;
text-decoration:none;
font-weight:bold;
}
.answer {
font-size:93%;
}
.collapse{
cursor: pointer;
display: block;
color: #F44D54;
cursor:pointer;
}
.collapse + input{
display: none;
}
.collapse + input + div{
display:none;
}
.collapse + input:checked + div{
display:block;
}