From 08e435104c42751689553537b1f20ffb14b8dfcc Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Sat, 18 Jul 2026 21:18:18 -0600 Subject: initial commit --- lisp/webapps/resume/static/css/stylesheet.css | 117 +++++++++++++++++++++ lisp/webapps/resume/static/images/add.png | Bin 0 -> 1832 bytes .../webapps/resume/static/images/classical-bow.jpg | Bin 0 -> 158141 bytes lisp/webapps/resume/static/images/delete.png | Bin 0 -> 1427 bytes .../webapps/resume/static/images/document-open.png | Bin 0 -> 608 bytes lisp/webapps/resume/static/images/down.png | Bin 0 -> 1297 bytes lisp/webapps/resume/static/images/download.png | Bin 0 -> 577 bytes lisp/webapps/resume/static/images/edit-redo.png | Bin 0 -> 1584 bytes lisp/webapps/resume/static/images/edit-undo.png | Bin 0 -> 1585 bytes lisp/webapps/resume/static/images/edit.png | Bin 0 -> 1034 bytes .../resume/static/images/emblem-favorite.png | Bin 0 -> 1523 bytes .../resume/static/images/emblem-nowrite.png | Bin 0 -> 1032 bytes .../resume/static/images/instrument-cabinet.jpg | Bin 0 -> 7636700 bytes lisp/webapps/resume/static/images/no.png | Bin 0 -> 1089 bytes lisp/webapps/resume/static/images/sort-alpha.png | Bin 0 -> 625 bytes lisp/webapps/resume/static/images/up.png | Bin 0 -> 1315 bytes lisp/webapps/resume/static/images/violin-strip.jpg | Bin 0 -> 198050 bytes lisp/webapps/resume/static/images/yes.png | Bin 0 -> 1013 bytes 18 files changed, 117 insertions(+) create mode 100644 lisp/webapps/resume/static/css/stylesheet.css create mode 100644 lisp/webapps/resume/static/images/add.png create mode 100644 lisp/webapps/resume/static/images/classical-bow.jpg create mode 100644 lisp/webapps/resume/static/images/delete.png create mode 100644 lisp/webapps/resume/static/images/document-open.png create mode 100644 lisp/webapps/resume/static/images/down.png create mode 100644 lisp/webapps/resume/static/images/download.png create mode 100644 lisp/webapps/resume/static/images/edit-redo.png create mode 100644 lisp/webapps/resume/static/images/edit-undo.png create mode 100644 lisp/webapps/resume/static/images/edit.png create mode 100644 lisp/webapps/resume/static/images/emblem-favorite.png create mode 100644 lisp/webapps/resume/static/images/emblem-nowrite.png create mode 100644 lisp/webapps/resume/static/images/instrument-cabinet.jpg create mode 100644 lisp/webapps/resume/static/images/no.png create mode 100644 lisp/webapps/resume/static/images/sort-alpha.png create mode 100644 lisp/webapps/resume/static/images/up.png create mode 100644 lisp/webapps/resume/static/images/violin-strip.jpg create mode 100644 lisp/webapps/resume/static/images/yes.png (limited to 'lisp/webapps/resume/static') diff --git a/lisp/webapps/resume/static/css/stylesheet.css b/lisp/webapps/resume/static/css/stylesheet.css new file mode 100644 index 0000000..659aa54 --- /dev/null +++ b/lisp/webapps/resume/static/css/stylesheet.css @@ -0,0 +1,117 @@ +body { + background-color: #161012; + color: white; + font-size: 14px; +} + +hr { + border: 1px #ffd081 solid; + width: 200px; +} + +a { + color: #ffd081; +} + +.container-fluid { + width: 100%; + margin: 20px auto; +} + +.table { + color: white; +} + +.nav-link { + color: white; + cursor: pointer; + cursor: hand; +} + +.nav-pills { + .nav-link.active, + .show > .nav-link { + background-color: #59200e; + } +} + +.well { + background-color: #2c180d; + border: 1px black solid; + text-align: center; +} + +.btn, +.btn-primary, +.dropdown-toggle { + color: white; + background-color: #59200e; + border-color: #59200e; + &:hover { + color: white; + background-color: #59200e; + border-color: #59200e; + } +} + +.show > .btn-primary.dropdown-toggle { + color: white; + background-color: #59200e; + border-color: #59200e; +} + +.dropdown-menu { + color: white; + background-color: #59200e; +} + +.dropdown-item { + color: white; + background-color: #59200e; +} + +.banner { + height: 90px; + background-image: url("/static/images/violin-strip.jpg"); + background-repeat: repeat; + background-position: left; +} + +.banner-title { + width: *; + color: #59200e; + font-size: 28px; + font-weight: bold; + text-align: center; +} + +.banner-menu { + width: 150px; + text-align: left; + vertical-align: top; +} + +.form-control { + width: 600px; + background-color: #ffd081; +} + +.contact-info { + color: #59200e; + font-size: 15px; + font-weight: bold; + line-height: 0.4; +} + +.modal-content { + background-color: #161012; +} + +#body { + min-height: 500px; +} + +#footer { + font-size: 14px; + text-align: center; +} diff --git a/lisp/webapps/resume/static/images/add.png b/lisp/webapps/resume/static/images/add.png new file mode 100644 index 0000000..1055df8 Binary files /dev/null and b/lisp/webapps/resume/static/images/add.png differ diff --git a/lisp/webapps/resume/static/images/classical-bow.jpg b/lisp/webapps/resume/static/images/classical-bow.jpg new file mode 100644 index 0000000..fce1392 Binary files /dev/null and b/lisp/webapps/resume/static/images/classical-bow.jpg differ diff --git a/lisp/webapps/resume/static/images/delete.png b/lisp/webapps/resume/static/images/delete.png new file mode 100644 index 0000000..ec140b7 Binary files /dev/null and b/lisp/webapps/resume/static/images/delete.png differ diff --git a/lisp/webapps/resume/static/images/document-open.png b/lisp/webapps/resume/static/images/document-open.png new file mode 100644 index 0000000..20b7ca8 Binary files /dev/null and b/lisp/webapps/resume/static/images/document-open.png differ diff --git a/lisp/webapps/resume/static/images/down.png b/lisp/webapps/resume/static/images/down.png new file mode 100644 index 0000000..e2d15bf Binary files /dev/null and b/lisp/webapps/resume/static/images/down.png differ diff --git a/lisp/webapps/resume/static/images/download.png b/lisp/webapps/resume/static/images/download.png new file mode 100644 index 0000000..3973b3c Binary files /dev/null and b/lisp/webapps/resume/static/images/download.png differ diff --git a/lisp/webapps/resume/static/images/edit-redo.png b/lisp/webapps/resume/static/images/edit-redo.png new file mode 100644 index 0000000..3d4db6c Binary files /dev/null and b/lisp/webapps/resume/static/images/edit-redo.png differ diff --git a/lisp/webapps/resume/static/images/edit-undo.png b/lisp/webapps/resume/static/images/edit-undo.png new file mode 100644 index 0000000..367fc5a Binary files /dev/null and b/lisp/webapps/resume/static/images/edit-undo.png differ diff --git a/lisp/webapps/resume/static/images/edit.png b/lisp/webapps/resume/static/images/edit.png new file mode 100644 index 0000000..550dacd Binary files /dev/null and b/lisp/webapps/resume/static/images/edit.png differ diff --git a/lisp/webapps/resume/static/images/emblem-favorite.png b/lisp/webapps/resume/static/images/emblem-favorite.png new file mode 100644 index 0000000..6535d5d Binary files /dev/null and b/lisp/webapps/resume/static/images/emblem-favorite.png differ diff --git a/lisp/webapps/resume/static/images/emblem-nowrite.png b/lisp/webapps/resume/static/images/emblem-nowrite.png new file mode 100644 index 0000000..997fedf Binary files /dev/null and b/lisp/webapps/resume/static/images/emblem-nowrite.png differ diff --git a/lisp/webapps/resume/static/images/instrument-cabinet.jpg b/lisp/webapps/resume/static/images/instrument-cabinet.jpg new file mode 100644 index 0000000..0500829 Binary files /dev/null and b/lisp/webapps/resume/static/images/instrument-cabinet.jpg differ diff --git a/lisp/webapps/resume/static/images/no.png b/lisp/webapps/resume/static/images/no.png new file mode 100644 index 0000000..1dc1b7c Binary files /dev/null and b/lisp/webapps/resume/static/images/no.png differ diff --git a/lisp/webapps/resume/static/images/sort-alpha.png b/lisp/webapps/resume/static/images/sort-alpha.png new file mode 100644 index 0000000..0e4a831 Binary files /dev/null and b/lisp/webapps/resume/static/images/sort-alpha.png differ diff --git a/lisp/webapps/resume/static/images/up.png b/lisp/webapps/resume/static/images/up.png new file mode 100644 index 0000000..55bab86 Binary files /dev/null and b/lisp/webapps/resume/static/images/up.png differ diff --git a/lisp/webapps/resume/static/images/violin-strip.jpg b/lisp/webapps/resume/static/images/violin-strip.jpg new file mode 100644 index 0000000..6149a87 Binary files /dev/null and b/lisp/webapps/resume/static/images/violin-strip.jpg differ diff --git a/lisp/webapps/resume/static/images/yes.png b/lisp/webapps/resume/static/images/yes.png new file mode 100644 index 0000000..b9cadf5 Binary files /dev/null and b/lisp/webapps/resume/static/images/yes.png differ -- cgit v1.3