From 6b81836e6b9815a2996a55ad37dcaa4d89f99e42 Mon Sep 17 00:00:00 2001 From: s1n Date: Sat, 28 Mar 2020 10:31:08 -0700 Subject: 3/28/2020, 10:30 --- path-tracer/css/main.css | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 path-tracer/css/main.css (limited to 'path-tracer/css') diff --git a/path-tracer/css/main.css b/path-tracer/css/main.css new file mode 100644 index 0000000..a163135 --- /dev/null +++ b/path-tracer/css/main.css @@ -0,0 +1,60 @@ +body { + max-width: 900px; + padding: 30px; + margin: 0 auto; + font: 14px/19px 'Lucida Grande', sans-serif; +} + +#main { + margin: 80px 0; + padding-left: 542px; + height: 512px; + position: relative; +} + +#error { + position: absolute; + left: 0; + top: 0; + width: 412px; + height: 412px; + padding: 50px; + text-align: center; + background: #DFDFDF; +} + +canvas { + position: absolute; + left: 0; + top: 0; +} + +p, +ul { + margin: 0 0 30px 0; +} + +h1 { + font: bold italic 50px Georgia; + margin: 0 0 60px 0; + text-align: center; +} + +a { + color: inherit; +} + +#footer { + text-align: center; + margin: 100px 0 0 0; +} + +#glossiness-factor { + display: none; + font-size: 12px; +} + +#glossiness-factor input { + width: 40px; + text-align: center; +} \ No newline at end of file -- cgit v1.2.3