Files @ 413d162e7491
Branch filter:

Location: website/www/conservancy/templates/500.html

Kevin Brosnan
Remove problematic four digit CSS code

Text is not dislpayed correctly with newer browsers, such as Firefox 49,
because of CSS color values. In current browsers the four digit values
are discarded as invalid CSS. Browsers are adding support for RGBA as a
valid CSS color value.

https://github.com/webcompat/web-bugs/issues/2628
1
2
3
4
5
6
7
8
9
{% extends "base_error.html" %}
{% block content %}

<h1>500 Error</h1>

<p>The page you request at <tt>sfconservancy.org</tt> is
unavailable due to an internal server error.</p>

{% endblock %}