changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/dat/css.lisp

changeset 664: 4d8451fe5423
child: bb8aa1eda12b
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 22 Sep 2024 01:02:49 -0400
permissions: -rw-r--r--
description: moved web to lib/web, added dat/css
1 ;;; css.lisp --- Cascading Style Sheets
2 
3 ;; https://www.w3.org/Style/CSS/
4 
5 ;;; Commentary:
6 
7 ;; for a list of all properties refer to: https://www.w3.org/Style/CSS/all-properties.en.html
8 
9 ;; for other web data: https://github.com/mdn/data/tree/main
10 
11 ;;; Code:
12 (in-package :dat/css)
13 
14 ;; SHEET ::= (BLOCK*)
15 ;; BLOCK ::= (:BLOCK SELECTOR PROPERTY*)
16 ;; SELECTOR ::= (string*)
17 ;; PROPERTY ::= (:PROPERTY string string)