diff options
author | Mavlushechka <mavlushechka@gmail.com> | 2022-09-24 00:07:19 +0500 |
---|---|---|
committer | Mavlushechka <mavlushechka@gmail.com> | 2022-09-24 00:07:19 +0500 |
commit | 43ffc1d6e59f2d118c730e968e032fcecbeaf202 (patch) | |
tree | 7e1e87163c8af30cd29d2b6e745d1c6b1077dc25 /app/src/static/css/styles.css | |
parent | e7c380c64056a004a1d61f04df7afb2a1c1c3675 (diff) |
Copy docker/getting-started repository
Diffstat (limited to 'app/src/static/css/styles.css')
-rw-r--r-- | app/src/static/css/styles.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/src/static/css/styles.css b/app/src/static/css/styles.css new file mode 100644 index 0000000..5ee2e28 --- /dev/null +++ b/app/src/static/css/styles.css @@ -0,0 +1,39 @@ +body { + background-color: #f4f4f4; + margin-top: 50px; + font-family: 'Lato'; +} + +.item { + background-color: white; + padding: 15px; + margin-bottom: 15px; + border: transparent; + border-radius: 5px; + box-shadow: 0 0 1em #ccc; + transition: all .2s ease-in-out; +} + +.item:hover { + box-shadow: 0 0 1em #aaa; +} + +.item.completed { + text-decoration: line-through; +} + +.toggles { + color: black; +} + +.name { + padding-top: 3px; +} + +.remove { + padding-left: 0; +} + +button:focus { + border: 1px solid #333; +}
\ No newline at end of file |