diff options
author | Blaster4385 <[email protected]> | 2022-08-02 08:56:48 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2022-08-02 08:56:48 +0530 |
commit | 905dc038ca2e4bbb315c4c583c94a96948e68fa9 (patch) | |
tree | ce04b0994c171e9f1c939dd91aa2f05d2c03a9f7 /client/src/components/Card/CardAgreement.module.css | |
parent | 5f8f6f98c2c47ca878aadb893b0d64a0c66316aa (diff) |
Add remaining pages
Diffstat (limited to 'client/src/components/Card/CardAgreement.module.css')
-rw-r--r-- | client/src/components/Card/CardAgreement.module.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/client/src/components/Card/CardAgreement.module.css b/client/src/components/Card/CardAgreement.module.css new file mode 100644 index 0000000..ed36cba --- /dev/null +++ b/client/src/components/Card/CardAgreement.module.css @@ -0,0 +1,30 @@ +@import '../../styles/GlobalVariables.css'; + +.card { + height: 400px; + width: 900px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + border: 3px solid var(--color-black); + border-radius: 10px; + margin: 30px; + transition: 0.2s all; + cursor: pointer; + color: var(--color-black); + text-decoration-line: none; +} + +.card:active { + transform: scale(0.98); + box-shadow: 3px 2px 22px 1px var(--color-shadow); +} + +.card__title { + margin: 15px 0px; +} + +.card__image { + padding-bottom: 32px; +}
\ No newline at end of file |