css-classes-reference.rst 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. CSS classes reference
  2. =====================
  3. Stylable classes
  4. ----------------
  5. +------------------------------------------------------------------------------+
  6. | **General-purpose** |
  7. +--------------------------+---------------------------------------------------+
  8. | keyword | keyword in a regular Algol-style language |
  9. +--------------------------+---------------------------------------------------+
  10. | built_in | built-in or library object (constant, class, |
  11. | | function) |
  12. +--------------------------+---------------------------------------------------+
  13. | type | user-defined type in a language with first-class |
  14. | | syntactically significant types, like Haskell |
  15. +--------------------------+---------------------------------------------------+
  16. | literal | special identifier for a built-in value ("true", |
  17. | | "false", "null") |
  18. +--------------------------+---------------------------------------------------+
  19. | number | number, including units and modifiers, if any. |
  20. +--------------------------+---------------------------------------------------+
  21. | regexp | literal regular expression |
  22. +--------------------------+---------------------------------------------------+
  23. | string | literal string, character |
  24. +--------------------------+---------------------------------------------------+
  25. | subst | parsed section inside a literal string |
  26. +--------------------------+---------------------------------------------------+
  27. | symbol | symbolic constant, interned string, goto label |
  28. +--------------------------+---------------------------------------------------+
  29. | class | class or class-level declaration (interfaces, |
  30. | | traits, modules, etc) |
  31. +--------------------------+---------------------------------------------------+
  32. | function | function or method declaration |
  33. +--------------------------+---------------------------------------------------+
  34. | title | name of a class or a function at the place of |
  35. | | declaration |
  36. +--------------------------+---------------------------------------------------+
  37. | params | block of function arguments (parameters) at the |
  38. | | place of declaration |
  39. +--------------------------+---------------------------------------------------+
  40. | **Meta** |
  41. +--------------------------+---------------------------------------------------+
  42. | comment | comment |
  43. +--------------------------+---------------------------------------------------+
  44. | doctag | documentation markup within comments |
  45. +--------------------------+---------------------------------------------------+
  46. | meta | flags, modifiers, annotations, processing |
  47. | | instructions, preprocessor directive, etc |
  48. +--------------------------+---------------------------------------------------+
  49. | meta-keyword | keyword or built-in within meta construct |
  50. +--------------------------+---------------------------------------------------+
  51. | meta-string | string within meta construct |
  52. +--------------------------+---------------------------------------------------+
  53. | **Tags, attributes, configs** |
  54. +--------------------------+---------------------------------------------------+
  55. | section | heading of a section in a config file, heading in |
  56. | | text markup |
  57. +--------------------------+---------------------------------------------------+
  58. | tag | XML/HTML tag |
  59. +--------------------------+---------------------------------------------------+
  60. | name | name of an XML tag, the first word in an |
  61. | | s-expression |
  62. +--------------------------+---------------------------------------------------+
  63. | builtin-name | s-expression name from the language standard |
  64. | | library |
  65. +--------------------------+---------------------------------------------------+
  66. | attr | name of an attribute with no language defined |
  67. | | semantics (keys in JSON, setting names in .ini), |
  68. | | also sub-attribute within another highlighted |
  69. | | object, like XML tag |
  70. +--------------------------+---------------------------------------------------+
  71. | attribute | name of an attribute followed by a structured |
  72. | | value part, like CSS properties |
  73. +--------------------------+---------------------------------------------------+
  74. | variable | variable in a config or a template file, |
  75. | | environment var expansion in a script |
  76. +--------------------------+---------------------------------------------------+
  77. | **Markup** |
  78. +--------------------------+---------------------------------------------------+
  79. | bullet | list item bullet in text markup |
  80. +--------------------------+---------------------------------------------------+
  81. | code | code block in text markup |
  82. +--------------------------+---------------------------------------------------+
  83. | emphasis | emphasis in text markup |
  84. +--------------------------+---------------------------------------------------+
  85. | strong | strong emphasis in text markup |
  86. +--------------------------+---------------------------------------------------+
  87. | formula | mathematical formula in text markup |
  88. +--------------------------+---------------------------------------------------+
  89. | link | hyperlink in text markup |
  90. +--------------------------+---------------------------------------------------+
  91. | quote | quotation in text markup |
  92. +--------------------------+---------------------------------------------------+
  93. | **CSS** |
  94. +--------------------------+---------------------------------------------------+
  95. | selector-tag | tag selector in CSS |
  96. +--------------------------+---------------------------------------------------+
  97. | selector-id | #id selector in CSS |
  98. +--------------------------+---------------------------------------------------+
  99. | selector-class | .class selector in CSS |
  100. +--------------------------+---------------------------------------------------+
  101. | selector-attr | [attr] selector in CSS |
  102. +--------------------------+---------------------------------------------------+
  103. | selector-pseudo | :pseudo selector in CSS |
  104. +--------------------------+---------------------------------------------------+
  105. | **Templates** |
  106. +--------------------------+---------------------------------------------------+
  107. | template-tag | tag of a template language |
  108. +--------------------------+---------------------------------------------------+
  109. | template-variable | variable in a template language |
  110. +--------------------------+---------------------------------------------------+
  111. | **diff** |
  112. +--------------------------+---------------------------------------------------+
  113. | addition | added or changed line in a diff |
  114. +--------------------------+---------------------------------------------------+
  115. | deletion | deleted line in a diff |
  116. +--------------------------+---------------------------------------------------+
  117. Language names and aliases
  118. --------------------------
  119. +-------------------------+---------------------------------------------------+
  120. | 1C | 1c |
  121. +-------------------------+---------------------------------------------------+
  122. | ABNF | abnf |
  123. +-------------------------+---------------------------------------------------+
  124. | Access logs | accesslog |
  125. +-------------------------+---------------------------------------------------+
  126. | Ada | ada |
  127. +-------------------------+---------------------------------------------------+
  128. | ARM assembler | armasm, arm |
  129. +-------------------------+---------------------------------------------------+
  130. | AVR assembler | avrasm |
  131. +-------------------------+---------------------------------------------------+
  132. | ActionScript | actionscript, as |
  133. +-------------------------+---------------------------------------------------+
  134. | Apache | apache, apacheconf |
  135. +-------------------------+---------------------------------------------------+
  136. | AppleScript | applescript, osascript |
  137. +-------------------------+---------------------------------------------------+
  138. | AsciiDoc | asciidoc, adoc |
  139. +-------------------------+---------------------------------------------------+
  140. | AspectJ | aspectj |
  141. +-------------------------+---------------------------------------------------+
  142. | AutoHotkey | autohotkey |
  143. +-------------------------+---------------------------------------------------+
  144. | AutoIt | autoit |
  145. +-------------------------+---------------------------------------------------+
  146. | Awk | awk, mawk, nawk, gawk |
  147. +-------------------------+---------------------------------------------------+
  148. | Axapta | axapta |
  149. +-------------------------+---------------------------------------------------+
  150. | Bash | bash, sh, zsh |
  151. +-------------------------+---------------------------------------------------+
  152. | Basic | basic |
  153. +-------------------------+---------------------------------------------------+
  154. | BNF | bnf |
  155. +-------------------------+---------------------------------------------------+
  156. | Brainfuck | brainfuck, bf |
  157. +-------------------------+---------------------------------------------------+
  158. | C# | cs, csharp |
  159. +-------------------------+---------------------------------------------------+
  160. | C++ | cpp, c, cc, h, c++, h++, hpp |
  161. +-------------------------+---------------------------------------------------+
  162. | C/AL | cal |
  163. +-------------------------+---------------------------------------------------+
  164. | Cache Object Script | cos, cls |
  165. +-------------------------+---------------------------------------------------+
  166. | CMake | cmake, cmake.in |
  167. +-------------------------+---------------------------------------------------+
  168. | Coq | coq |
  169. +-------------------------+---------------------------------------------------+
  170. | CSP | csp |
  171. +-------------------------+---------------------------------------------------+
  172. | CSS | css |
  173. +-------------------------+---------------------------------------------------+
  174. | Cap’n Proto | capnproto, capnp |
  175. +-------------------------+---------------------------------------------------+
  176. | Clojure | clojure, clj |
  177. +-------------------------+---------------------------------------------------+
  178. | CoffeeScript | coffeescript, coffee, cson, iced |
  179. +-------------------------+---------------------------------------------------+
  180. | Crmsh | crmsh, crm, pcmk |
  181. +-------------------------+---------------------------------------------------+
  182. | Crystal | crystal, cr |
  183. +-------------------------+---------------------------------------------------+
  184. | D | d |
  185. +-------------------------+---------------------------------------------------+
  186. | DNS Zone file | dns, zone, bind |
  187. +-------------------------+---------------------------------------------------+
  188. | DOS | dos, bat, cmd |
  189. +-------------------------+---------------------------------------------------+
  190. | Dart | dart |
  191. +-------------------------+---------------------------------------------------+
  192. | Delphi | delphi, dpr, dfm, pas, pascal, freepascal, |
  193. | | lazarus, lpr, lfm |
  194. +-------------------------+---------------------------------------------------+
  195. | Diff | diff, patch |
  196. +-------------------------+---------------------------------------------------+
  197. | Django | django, jinja |
  198. +-------------------------+---------------------------------------------------+
  199. | Dockerfile | dockerfile, docker |
  200. +-------------------------+---------------------------------------------------+
  201. | dsconfig | dsconfig |
  202. +-------------------------+---------------------------------------------------+
  203. | DTS (Device Tree) | dts |
  204. +-------------------------+---------------------------------------------------+
  205. | Dust | dust, dst |
  206. +-------------------------+---------------------------------------------------+
  207. | EBNF | ebnf |
  208. +-------------------------+---------------------------------------------------+
  209. | Elixir | elixir |
  210. +-------------------------+---------------------------------------------------+
  211. | Elm | elm |
  212. +-------------------------+---------------------------------------------------+
  213. | Erlang | erlang, erl |
  214. +-------------------------+---------------------------------------------------+
  215. | Excel | excel, xls, xlsx |
  216. +-------------------------+---------------------------------------------------+
  217. | F# | fsharp, fs |
  218. +-------------------------+---------------------------------------------------+
  219. | FIX | fix |
  220. +-------------------------+---------------------------------------------------+
  221. | Fortran | fortran, f90, f95 |
  222. +-------------------------+---------------------------------------------------+
  223. | G-Code | gcode, nc |
  224. +-------------------------+---------------------------------------------------+
  225. | Gams | gams, gms |
  226. +-------------------------+---------------------------------------------------+
  227. | GAUSS | gauss, gss |
  228. +-------------------------+---------------------------------------------------+
  229. | Gherkin | gherkin |
  230. +-------------------------+---------------------------------------------------+
  231. | Go | go, golang |
  232. +-------------------------+---------------------------------------------------+
  233. | Golo | golo, gololang |
  234. +-------------------------+---------------------------------------------------+
  235. | Gradle | gradle |
  236. +-------------------------+---------------------------------------------------+
  237. | Groovy | groovy |
  238. +-------------------------+---------------------------------------------------+
  239. | HTML, XML | xml, html, xhtml, rss, atom, xjb, xsd, xsl, plist |
  240. +-------------------------+---------------------------------------------------+
  241. | HTTP | http, https |
  242. +-------------------------+---------------------------------------------------+
  243. | Haml | haml |
  244. +-------------------------+---------------------------------------------------+
  245. | Handlebars | handlebars, hbs, html.hbs, html.handlebars |
  246. +-------------------------+---------------------------------------------------+
  247. | Haskell | haskell, hs |
  248. +-------------------------+---------------------------------------------------+
  249. | Haxe | haxe, hx |
  250. +-------------------------+---------------------------------------------------+
  251. | Hy | hy, hylang |
  252. +-------------------------+---------------------------------------------------+
  253. | Ini | ini |
  254. +-------------------------+---------------------------------------------------+
  255. | Inform7 | inform7, i7 |
  256. +-------------------------+---------------------------------------------------+
  257. | IRPF90 | irpf90 |
  258. +-------------------------+---------------------------------------------------+
  259. | JSON | json |
  260. +-------------------------+---------------------------------------------------+
  261. | Java | java, jsp |
  262. +-------------------------+---------------------------------------------------+
  263. | JavaScript | javascript, js, jsx |
  264. +-------------------------+---------------------------------------------------+
  265. | Leaf | leaf |
  266. +-------------------------+---------------------------------------------------+
  267. | Lasso | lasso, ls, lassoscript |
  268. +-------------------------+---------------------------------------------------+
  269. | Less | less |
  270. +-------------------------+---------------------------------------------------+
  271. | LDIF | ldif |
  272. +-------------------------+---------------------------------------------------+
  273. | Lisp | lisp |
  274. +-------------------------+---------------------------------------------------+
  275. | LiveCode Server | livecodeserver |
  276. +-------------------------+---------------------------------------------------+
  277. | LiveScript | livescript, ls |
  278. +-------------------------+---------------------------------------------------+
  279. | Lua | lua |
  280. +-------------------------+---------------------------------------------------+
  281. | Makefile | makefile, mk, mak |
  282. +-------------------------+---------------------------------------------------+
  283. | Markdown | markdown, md, mkdown, mkd |
  284. +-------------------------+---------------------------------------------------+
  285. | Mathematica | mathematica, mma |
  286. +-------------------------+---------------------------------------------------+
  287. | Matlab | matlab |
  288. +-------------------------+---------------------------------------------------+
  289. | Maxima | maxima |
  290. +-------------------------+---------------------------------------------------+
  291. | Maya Embedded Language | mel |
  292. +-------------------------+---------------------------------------------------+
  293. | Mercury | mercury |
  294. +-------------------------+---------------------------------------------------+
  295. | Mizar | mizar |
  296. +-------------------------+---------------------------------------------------+
  297. | Mojolicious | mojolicious |
  298. +-------------------------+---------------------------------------------------+
  299. | Monkey | monkey |
  300. +-------------------------+---------------------------------------------------+
  301. | Moonscript | moonscript, moon |
  302. +-------------------------+---------------------------------------------------+
  303. | N1QL | n1ql |
  304. +-------------------------+---------------------------------------------------+
  305. | NSIS | nsis |
  306. +-------------------------+---------------------------------------------------+
  307. | Nginx | nginx, nginxconf |
  308. +-------------------------+---------------------------------------------------+
  309. | Nimrod | nimrod, nim |
  310. +-------------------------+---------------------------------------------------+
  311. | Nix | nix |
  312. +-------------------------+---------------------------------------------------+
  313. | OCaml | ocaml, ml |
  314. +-------------------------+---------------------------------------------------+
  315. | Objective C | objectivec, mm, objc, obj-c |
  316. +-------------------------+---------------------------------------------------+
  317. | OpenGL Shading Language | glsl |
  318. +-------------------------+---------------------------------------------------+
  319. | OpenSCAD | openscad, scad |
  320. +-------------------------+---------------------------------------------------+
  321. | Oracle Rules Language | ruleslanguage |
  322. +-------------------------+---------------------------------------------------+
  323. | Oxygene | oxygene |
  324. +-------------------------+---------------------------------------------------+
  325. | PF | pf, pf.conf |
  326. +-------------------------+---------------------------------------------------+
  327. | PHP | php, php3, php4, php5, php6 |
  328. +-------------------------+---------------------------------------------------+
  329. | Parser3 | parser3 |
  330. +-------------------------+---------------------------------------------------+
  331. | Perl | perl, pl, pm |
  332. +-------------------------+---------------------------------------------------+
  333. | Pony | pony |
  334. +-------------------------+---------------------------------------------------+
  335. | PowerShell | powershell, ps |
  336. +-------------------------+---------------------------------------------------+
  337. | Processing | processing |
  338. +-------------------------+---------------------------------------------------+
  339. | Prolog | prolog |
  340. +-------------------------+---------------------------------------------------+
  341. | Protocol Buffers | protobuf |
  342. +-------------------------+---------------------------------------------------+
  343. | Puppet | puppet, pp |
  344. +-------------------------+---------------------------------------------------+
  345. | Python | python, py, gyp |
  346. +-------------------------+---------------------------------------------------+
  347. | Python profiler results | profile |
  348. +-------------------------+---------------------------------------------------+
  349. | Q | k, kdb |
  350. +-------------------------+---------------------------------------------------+
  351. | QML | qml |
  352. +-------------------------+---------------------------------------------------+
  353. | R | r |
  354. +-------------------------+---------------------------------------------------+
  355. | RenderMan RIB | rib |
  356. +-------------------------+---------------------------------------------------+
  357. | RenderMan RSL | rsl |
  358. +-------------------------+---------------------------------------------------+
  359. | Roboconf | graph, instances |
  360. +-------------------------+---------------------------------------------------+
  361. | Ruby | ruby, rb, gemspec, podspec, thor, irb |
  362. +-------------------------+---------------------------------------------------+
  363. | Rust | rust, rs |
  364. +-------------------------+---------------------------------------------------+
  365. | SCSS | scss |
  366. +-------------------------+---------------------------------------------------+
  367. | SQL | sql |
  368. +-------------------------+---------------------------------------------------+
  369. | STEP Part 21 | p21, step, stp |
  370. +-------------------------+---------------------------------------------------+
  371. | Scala | scala |
  372. +-------------------------+---------------------------------------------------+
  373. | Scheme | scheme |
  374. +-------------------------+---------------------------------------------------+
  375. | Scilab | scilab, sci |
  376. +-------------------------+---------------------------------------------------+
  377. | Shell | shell, console |
  378. +-------------------------+---------------------------------------------------+
  379. | Smali | smali |
  380. +-------------------------+---------------------------------------------------+
  381. | Smalltalk | smalltalk, st |
  382. +-------------------------+---------------------------------------------------+
  383. | Stan | stan |
  384. +-------------------------+---------------------------------------------------+
  385. | Stata | stata |
  386. +-------------------------+---------------------------------------------------+
  387. | Stylus | stylus, styl |
  388. +-------------------------+---------------------------------------------------+
  389. | SubUnit | subunit |
  390. +-------------------------+---------------------------------------------------+
  391. | Swift | swift |
  392. +-------------------------+---------------------------------------------------+
  393. | Test Anything Protocol | tap |
  394. +-------------------------+---------------------------------------------------+
  395. | Tcl | tcl, tk |
  396. +-------------------------+---------------------------------------------------+
  397. | TeX | tex |
  398. +-------------------------+---------------------------------------------------+
  399. | Thrift | thrift |
  400. +-------------------------+---------------------------------------------------+
  401. | TP | tp |
  402. +-------------------------+---------------------------------------------------+
  403. | Twig | twig, craftcms |
  404. +-------------------------+---------------------------------------------------+
  405. | TypeScript | typescript, ts |
  406. +-------------------------+---------------------------------------------------+
  407. | VB.Net | vbnet, vb |
  408. +-------------------------+---------------------------------------------------+
  409. | VBScript | vbscript, vbs |
  410. +-------------------------+---------------------------------------------------+
  411. | VHDL | vhdl |
  412. +-------------------------+---------------------------------------------------+
  413. | Vala | vala |
  414. +-------------------------+---------------------------------------------------+
  415. | Verilog | verilog, v |
  416. +-------------------------+---------------------------------------------------+
  417. | Vim Script | vim |
  418. +-------------------------+---------------------------------------------------+
  419. | x86 Assembly | x86asm |
  420. +-------------------------+---------------------------------------------------+
  421. | XL | xl, tao |
  422. +-------------------------+---------------------------------------------------+
  423. | XQuery | xpath, xq |
  424. +-------------------------+---------------------------------------------------+
  425. | Zephir | zephir, zep |
  426. +-------------------------+---------------------------------------------------+