Browse Source

Prevents small background images in /walls from repeating

Quick additions to the inline styles of <html> and <body> so the background-image doesn't spew all over the place in lainchan radio.
pull/40/head
selcal 9 years ago
parent
commit
0662f3e35b
  1. 4
      templates/themes/irc/irc.html

4
templates/themes/irc/irc.html

@ -1,6 +1,6 @@
{% filter remove_whitespace %}
<!DOCTYPE html>
<html>
<html style="height:100vh; width:100%;">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>{{ settings.title }}</title>
@ -9,7 +9,7 @@
<link rel="stylesheet" media="screen" href="/stylesheets/cyberpunk.css"/>
<link rel="stylesheet" href="/stylesheets/font-awesome/css/font-awesome.min.css">
</head>
<body style="background-image: url(/bg.php)">
<body style="background-image: url(/bg.php); background-size:cover; background-repeat:no-repeat; height:100vh; width: inherit; margin:none; padding:none; overflow-x:hidden; overflow-y:hidden;">
<div class="bar top">
{{ boardlist.top }}
</div>

Loading…
Cancel
Save