diff options
author | martin@ashbysoft.com <martin@ashbysoft.com> | 2022-06-11 21:59:03 +0000 |
---|---|---|
committer | martin@ashbysoft.com <martin@ashbysoft.com> | 2022-06-11 21:59:03 +0000 |
commit | bb40c4cbc74fe48a04069e6efb78c94bd0cc0451 (patch) | |
tree | 60580318d7c9cbb7df1aa95739e9171f76e824cf /cutest-1.5/style.css | |
parent | 83e0861e200999ed46a1a1a8afa0b5638e48e14b (diff) | |
download | learn-c-bb40c4cbc74fe48a04069e6efb78c94bd0cc0451.tar.gz learn-c-bb40c4cbc74fe48a04069e6efb78c94bd0cc0451.tar.bz2 learn-c-bb40c4cbc74fe48a04069e6efb78c94bd0cc0451.tar.xz learn-c-bb40c4cbc74fe48a04069e6efb78c94bd0cc0451.zip |
Add CuTest and test script.
Update ex1-9 with unit tests using CuTest.
Diffstat (limited to 'cutest-1.5/style.css')
-rw-r--r-- | cutest-1.5/style.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cutest-1.5/style.css b/cutest-1.5/style.css new file mode 100644 index 0000000..7759d5a --- /dev/null +++ b/cutest-1.5/style.css @@ -0,0 +1,21 @@ +BODY {
+ font-family: "Verdana,Arial,sans-serif";
+ font-size: 10pt;
+}
+PRE.LIST {
+ background: #CFD9FF;
+ border: 1ex solid #AAAAE6;
+ padding: 1ex;
+}
+
+PRE.SNIP {
+ background: #CFD9FF;
+ padding: 1ex;
+}
+
+PRE.CONSOLE {
+ color: #CCCCCC;
+ background: #000000;
+ font-family: "Courier New,Courier";
+ padding: 1ex;
+}
|