diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-07-19 22:05:02 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-07-19 22:05:02 -0600 |
| commit | e7301bcd63c0cbfc4d55f21d0d7c33c7557d6444 (patch) | |
| tree | 2fc51725eb8931c09df6d9360bb358e7645a5244 /lisp/webapps/resume/static/css | |
| parent | 08e435104c42751689553537b1f20ffb14b8dfcc (diff) | |
starting resume logic
Diffstat (limited to 'lisp/webapps/resume/static/css')
| -rw-r--r-- | lisp/webapps/resume/static/css/stylesheet.css | 45 |
1 files changed, 24 insertions, 21 deletions
diff --git a/lisp/webapps/resume/static/css/stylesheet.css b/lisp/webapps/resume/static/css/stylesheet.css index 659aa54..0589853 100644 --- a/lisp/webapps/resume/static/css/stylesheet.css +++ b/lisp/webapps/resume/static/css/stylesheet.css @@ -1,16 +1,20 @@ body { - background-color: #161012; + background-color: black; color: white; font-size: 14px; } hr { - border: 1px #ffd081 solid; + border: 1px #404040 solid; width: 200px; } a { - color: #ffd081; + color: lightblue; +} + +a:hover { + color: lightgreen; } .container-fluid { @@ -31,13 +35,13 @@ a { .nav-pills { .nav-link.active, .show > .nav-link { - background-color: #59200e; + background-color: #404040; } } .well { - background-color: #2c180d; - border: 1px black solid; + background-color: #202020; + border: 1px #404040 solid; text-align: center; } @@ -45,41 +49,39 @@ a { .btn-primary, .dropdown-toggle { color: white; - background-color: #59200e; - border-color: #59200e; + background-color: #202020; + border-color: #404040; &:hover { color: white; - background-color: #59200e; - border-color: #59200e; + background-color: #202020; + border-color: #404040; } } .show > .btn-primary.dropdown-toggle { color: white; - background-color: #59200e; - border-color: #59200e; + background-color: #202020; + border-color: #404040; } .dropdown-menu { color: white; - background-color: #59200e; + background-color: #202020; } .dropdown-item { color: white; - background-color: #59200e; + background-color: #202020; } .banner { height: 90px; - background-image: url("/static/images/violin-strip.jpg"); - background-repeat: repeat; - background-position: left; + background-color: black; } .banner-title { width: *; - color: #59200e; + color: white; font-size: 28px; font-weight: bold; text-align: center; @@ -93,18 +95,19 @@ a { .form-control { width: 600px; - background-color: #ffd081; + color: #ffffff; + background-color: #202020; } .contact-info { - color: #59200e; + color: #202020; font-size: 15px; font-weight: bold; line-height: 0.4; } .modal-content { - background-color: #161012; + background-color: #202020; } #body { |
