Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: third_party/webgl/resources/webgl-extension.css

Issue 9360034: Remove everthing except conformance tests in the deps/third_party/webgl (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 /* Style for a public "Working Draft" */
3
4 /*
5 Adapted for Khronos from http://www.w3.org/StyleSheets/TR/W3C-WD.css by Chris Marrin (cmarrin@apple.com)
6
7 Copyright 1997-2003 W3C (MIT, ERCIM, Keio). All Rights Reserved.
8 The following software licensing rules apply:
9 http://www.w3.org/Consortium/Legal/copyright-software */
10
11 /* $Id: base.css,v 1.25 2006/04/18 08:42:53 bbos Exp $ */
12
13 body {
14 padding: 2em 1em 2em 70px;
15 margin: 0;
16 font-family: sans-serif;
17 color: black;
18 background: white;
19 background-position: top left;
20 background-attachment: fixed;
21 background-repeat: no-repeat;
22 }
23 :link { color: #00C; background: transparent }
24 :visited { color: #609; background: transparent }
25 a:active { color: #C00; background: transparent }
26
27 a:link img, a:visited img { border-style: none } /* no border on img links */
28
29 table {
30 border-width:1px;
31 border-style:solid;
32 border-spacing:2px;
33 border-collapse:collapse;
34 padding:3;
35 }
36
37 th, td { /* ns 4 */
38 border-width:1px;
39 border-style:solid;
40 font-family: sans-serif;
41 padding:4px;
42 text-align:left;
43 }
44
45 th {
46 color:#115511;
47 border-bottom:3px solid;
48 background-color:#CCEECC;
49 }
50
51 h1, h2 {
52 margin-bottom: 0.15em;
53 }
54
55 h1, h2, h3, h4, h5, h6 { text-align: left }
56 /* background should be transparent, but WebTV has a bug */
57 h1, h2, h3 { color: #005A9C; background: white }
58 h1 { font: 170% sans-serif }
59 h2 { font: 140% sans-serif }
60 h3 { font: 120% sans-serif }
61 h4 { font: bold 100% sans-serif }
62 h5 { font: italic 100% sans-serif }
63 h6 { font: small-caps 100% sans-serif }
64
65 .hide { display: none }
66
67 .right {
68 float: right;
69 }
70
71 div.head { margin-bottom: 1em }
72 div.head h1 { margin-top: 2em; clear: both }
73 div.head table { margin-left: 2em; margin-top: 2em }
74
75 div.nonnormative {
76 color: green;
77 margin-left: 2em;
78 padding: 0.5em 1em;
79 border: none;
80 background: #EEFFEE;
81 }
82
83 p.copyright { font-size: small }
84 p.copyright small { font-size: small }
85
86 @media screen { /* hide from IE3 */
87 a[href]:hover { background: #ffa }
88 }
89
90 pre { margin-left: 2em }
91 /*
92 p {
93 margin-top: 0.6em;
94 margin-bottom: 0.6em;
95 }
96 */
97 dt, dd { margin-top: 0; margin-bottom: 0 } /* opera 3.50 */
98 dt { font-weight: bold }
99
100 pre, code { font-size: 1.2em; font-family: monospace; } /* navigator 4 requires this */
101
102 pre.idl {
103 border: solid thin;
104 background: #EEEEEE;
105 color: black;
106 padding: 0.5em 1em;
107 }
108
109 pre.idl :link, pre.idl :visited { color: inherit; background: transparent; }
110
111 dl.methods {
112 color: green;
113 margin: 2em 0 2em 2em;
114 padding: 0.5em 1em;
115 border: none;
116 background: #EEFFEE;
117 }
118
119 .idl-code {
120 color:black;
121 font-size: 125%;
122 font-family: monospace;
123 text-indent: -1.5em;
124 margin-left: 1.5em;
125 }
126
127 p.idl-code {
128 margin-top: 0.0em;
129 margin-bottom: 0.0em;
130 }
131
132 a.gl-spec:link, a.gl-spec:visited {
133 color: green;
134 font-family: sans-serif;
135 font-size: 60%;
136 font-style:italic;
137 font-weight:normal;
138 }
139
140 ul.toc, ol.toc {
141 list-style: disc; /* Mac NS has problem with 'none' */
142 list-style: none;
143 }
144
145 body {
146 background-image: url(logo-WD.png);
147 }
148
OLDNEW
« no previous file with comments | « third_party/webgl/resources/logo-WD.png ('k') | third_party/webgl/sdk/debug/lost-context-simulator-test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698