diff options
author | benal01 <bja4245@rit.edu> | 2025-03-04 10:29:01 -0500 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-04 10:29:01 -0500 |
commit | a1343c65e30f7f3fe13a2c336f37dfa1bb1bbcc3 (patch) | |
tree | c33d68e4d8066109c5ba188c8219a6c131ca3f20 /ufund-ui/src/app/components | |
parent | ab7aa87d3a6249352a14b5a9c3c3c9e08577657f (diff) | |
download | JellySolutions-a1343c65e30f7f3fe13a2c336f37dfa1bb1bbcc3.tar.gz JellySolutions-a1343c65e30f7f3fe13a2c336f37dfa1bb1bbcc3.tar.bz2 JellySolutions-a1343c65e30f7f3fe13a2c336f37dfa1bb1bbcc3.zip |
basic css styles for orginization
Diffstat (limited to 'ufund-ui/src/app/components')
-rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.css | 23 | ||||
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.css | 16 |
2 files changed, 36 insertions, 3 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.css b/ufund-ui/src/app/components/cupboard/cupboard.component.css index b530d36..315db50 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.css +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.css @@ -1,4 +1,21 @@ -#create-form { - margin: auto; - border: 5px solid black; +:host { + display: block; + border: 2px solid #000; + border-radius: 5px; + padding: 10px 20px; +} + +#create-form, #create-button { + background-color: #d9d9d9; + padding: 10px 20px 20px 20px; + border: 2px solid #000; + border-radius: 5px; + width: 20%; + visibility: visible; + +} + +#create-button { + padding: 10px 20px; + }
\ No newline at end of file diff --git a/ufund-ui/src/app/components/need-list/need-list.component.css b/ufund-ui/src/app/components/need-list/need-list.component.css index e69de29..1bcaed9 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.css +++ b/ufund-ui/src/app/components/need-list/need-list.component.css @@ -0,0 +1,16 @@ +:host { + list-style-type:circle; + border: 2px solid #000; + display: block; + width: 30%; + border-radius: 5px; + +} + +li { + border: 2px solid #000; + border-radius: 5px; + padding: 5px; + margin: 5px; + +}
\ No newline at end of file |