From 1b202977bbbb9eed6ec1d5f56c39f3caf3412e12 Mon Sep 17 00:00:00 2001 From: payload Date: Thu, 28 Jun 2012 23:45:33 +0200 Subject: [PATCH] [ds12] cross browser gradient --- .../static/datenspuren/2012/style/style.css | 36 +++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/content/static/datenspuren/2012/style/style.css b/content/static/datenspuren/2012/style/style.css index 3b66608ca..490a468e9 100644 --- a/content/static/datenspuren/2012/style/style.css +++ b/content/static/datenspuren/2012/style/style.css @@ -70,14 +70,46 @@ body { box-shadow: 0em -0.1em 0.4em #CCC; } #device-2 { + /* bark!! */ background: #222; background: -moz-linear-gradient( 200deg, rgb(174, 188, 191) 0, rgb(110, 119, 116) 230pt, rgb(26, 30, 26) 231pt, - rgb(10, 8, 9) 100%) - repeat scroll 0% 0% transparent; + rgb(10, 8, 9) 100%); /* FF3.6+ */ + background: -webkit-gradient( + linear, + right top, + left bottom, + color-stop(0, rgb(174, 188, 191)), + color-stop(230pt, rgb(110, 119, 116)), + color-stop(231pt, rgb(26, 30, 26)), + color-stop(100%, rgb(10, 8, 9))); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient( + 200deg, + rgb(174, 188, 191) 0, + rgb(110, 119, 116) 230pt, + rgb(26, 30, 26) 231pt, + rgb(10, 8, 9) 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient( + 200deg, + rgb(174, 188, 191) 0, + rgb(110, 119, 116) 230pt, + rgb(26, 30, 26) 231pt, + rgb(10, 8, 9) 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient( + 200deg, + rgb(174, 188, 191) 0, + rgb(110, 119, 116) 230pt, + rgb(26, 30, 26) 231pt, + rgb(10, 8, 9) 100%); /* IE10+ */ + background: linear-gradient( + 200deg, + rgb(174, 188, 191) 0, + rgb(110, 119, 116) 230pt, + rgb(26, 30, 26) 231pt, + rgb(10, 8, 9) 100%); /* W3C */ } #screen { background: white; } #screen-top { min-height: 1000px; }