diff --git a/.gitignore b/.gitignore index 6a55368..bb2b60c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ /blog/__pycache__ /blog/migrations /media +/static db.sqlite3 diff --git a/crazy4python/__pycache__/settings.cpython-38.pyc b/crazy4python/__pycache__/settings.cpython-38.pyc index da0907f..b6f44ef 100644 Binary files a/crazy4python/__pycache__/settings.cpython-38.pyc and b/crazy4python/__pycache__/settings.cpython-38.pyc differ diff --git a/static/css/base.css b/static/css/base.css index 932ccbc..1c9f872 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -27,7 +27,6 @@ crazy{ } four{ font-family: monospace; - font-size: xx-large; color: chocolate; } .page-link{ @@ -40,4 +39,38 @@ four{ } .page-link:hover{ background-color: #007bff; + color:#fff +} +.comments{ + border-radius: 10px; + box-shadow: 0 10px 20px #E3E7EB; +} +.comments > p.font-weight-bold > span{ + font-size: .8rem; +} +.comment_count{ + color: #15c39a ; + font-weight: 700; +} +.posts .card-title{ + color: #15c39a ; + text-decoration: none; + font-family: monospace; +} +a:hover{ + color: #15c39a ; + text-decoration: none; +} +.navbar-brand{ + font-size: 2rem; +} +.posts h1{ + font-family: monospace; + color: #15c39a ; +} +.views{ + font-size: 1rem; + font-family: cursive; + font-weight: 400; + color: #15c39a; } \ No newline at end of file