diff options
author | crupest <crupest@outlook.com> | 2019-02-22 23:09:07 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-22 23:09:07 +0800 |
commit | 1db7c93ed333b5016fcc7e5947228db9e9e34b51 (patch) | |
tree | a09c99b3a73642c9a44b385b64090b19ac452ca4 /Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css | |
parent | 4e16aeba21313b527eef904501b7a69a72372791 (diff) | |
download | timeline-1db7c93ed333b5016fcc7e5947228db9e9e34b51.tar.gz timeline-1db7c93ed333b5016fcc7e5947228db9e9e34b51.tar.bz2 timeline-1db7c93ed333b5016fcc7e5947228db9e9e34b51.zip |
Develop link feature on todo page.
Diffstat (limited to 'Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css')
-rw-r--r-- | Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css | 41 |
1 files changed, 26 insertions, 15 deletions
diff --git a/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css index 6a603863..89a0f0ce 100644 --- a/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css +++ b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.css @@ -2,20 +2,15 @@ align-self: flex-end; } -.first-item-box { - justify-content: space-between; -} - .item-box { display: flex; width: 100%; - padding: 10px; + padding: 5px; box-sizing: border-box; } -.sample-box { - box-sizing: border-box; - align-self: flex-start; +.first-item-box { + justify-content: space-between; } .item-id { @@ -26,13 +21,6 @@ height: 1.2rem; } -.item-id-sample { - display: inline-block; - border-radius: 0.2em; - width: 1em; - height: 1em; -} - .item-id-open { background: red; } @@ -40,3 +28,26 @@ .item-id-closed { background: green; } + +.item-title { + margin-left: 5px; + color: black; + text-decoration: none; +} + +.sample-box { + box-sizing: border-box; + align-self: flex-start; +} + +.sample-container { + display: flex; + align-items: center; +} + +.item-id-sample { + border-radius: 0.2em; + width: 1em; + height: 1em; + margin-right: 2px; +} |