├── bucket1.png ├── style.css ├── error.html └── maintenance.html /bucket1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckets/error-pages/gh-pages/bucket1.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | margin: 0; 4 | padding: 0; 5 | width: 100%; 6 | height: 100%; 7 | } 8 | * { 9 | box-sizing: border-box; 10 | } 11 | .page-wrap { 12 | width: 100%; 13 | min-height: 100%; 14 | background: #9b59b6; 15 | background: -moz-linear-gradient(-45deg, #9b59b6 0%, #c0392b 100%); 16 | background: -webkit-gradient(left top, right bottom, color-stop(0%, #9b59b6), color-stop(100%, #c0392b)); 17 | background: -webkit-linear-gradient(-45deg, #9b59b6 0%, #c0392b 100%); 18 | background: -o-linear-gradient(-45deg, #9b59b6 0%, #c0392b 100%); 19 | background: -ms-linear-gradient(-45deg, #9b59b6 0%, #c0392b 100%); 20 | background: linear-gradient(135deg, #9b59b6 0%, #c0392b 100%); 21 | } 22 | .error-message-wrap { 23 | padding: 3rem 0.5rem; 24 | margin: 0 auto; 25 | max-width: 100%; 26 | width: 400px; 27 | } 28 | .error-message { 29 | color: #fff; 30 | text-align: center; 31 | font-family: 'Source Sans Pro',sans-serif; 32 | font-weight: 300; 33 | } 34 | .error-message .title { 35 | font-size: 4rem; 36 | font-family: 'Pacifico'; 37 | text-shadow: 1px 1px 4px rgba(0,0,0,0.3); 38 | } 39 | .error-message .description { 40 | font-size: 1.5rem; 41 | line-height: 1.8rem; 42 | } 43 | .error-message a { 44 | color: #fff; 45 | font-weight: bold; 46 | } 47 | .error-message a:visited { 48 | color: #fff; 49 | } 50 | .error-message img { 51 | width: 201px; 52 | height: 200px; 53 | -webkit-transform: rotateZ(180deg); 54 | -moz-transform: rotateZ(180deg); 55 | transform: rotateZ(180deg); 56 | } -------------------------------------------------------------------------------- /error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |