|
7 | 7 | background: white; |
8 | 8 | padding: 2%; |
9 | 9 | line-height: 18px; |
| 10 | + height: 140px; |
| 11 | + display: flex; |
| 12 | + align-items: center; |
| 13 | + flex-direction: column; |
| 14 | + justify-content: center; |
10 | 15 | } |
11 | 16 | .Project-Logo { |
12 | | - width: 45%; |
| 17 | + width: 60px; |
13 | 18 | height: auto; |
14 | 19 | margin-top: 5%; |
| 20 | + border-radius: 8px; |
| 21 | + display: block; |
| 22 | + max-height: 100px; |
15 | 23 | } |
16 | 24 | .Card-Body { |
17 | 25 | position: relative; |
|
22 | 30 | width: 16%; |
23 | 31 | min-width: 225px; |
24 | 32 | display: flex; |
25 | | - margin: 1.5vw; |
26 | | - box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; |
27 | | - -webkit-transition: box-shadow 0.1s ease-in-out; |
| 33 | + margin: .5vw; |
| 34 | + /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 6px, rgba(0, 0, 0, 0.12) 0px 1px 4px; |
| 35 | + -webkit-transition: box-shadow 0.1s ease-in-out; */ |
28 | 36 | transition: box-shadow 0.1s ease-in-out; |
29 | 37 | background-color: #fff; |
| 38 | + border: 1px solid #1f293740; |
| 39 | + border-radius: 8px; |
| 40 | + padding: 8px; |
30 | 41 | } |
31 | 42 | @media (max-width: 700px) { |
32 | 43 | .Card-Container { |
|
38 | 49 | } |
39 | 50 |
|
40 | 51 | .Card-Container:hover { |
41 | | - box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 10px, rgba(0, 0, 0, 0.23) 0px 3px 10px; |
| 52 | + box-shadow: rgba(0, 0, 0, 0.053) 0px 3px 10px, rgba(0, 0, 0, 0.066) 0px 3px 10px; |
42 | 53 | } |
43 | 54 | .Card-Real-Link:hover { |
44 | 55 | text-decoration: none; |
|
62 | 73 | .Card-Description { |
63 | 74 | position: relative; |
64 | 75 | padding: 5%; |
| 76 | + max-height: 180px; |
| 77 | + overflow: auto; |
| 78 | + margin-top: 16px; |
| 79 | + margin-bottom: 16px; |
| 80 | +} |
| 81 | +.Card-Description::-webkit-scrollbar { |
| 82 | + width: 6px; |
| 83 | +} |
| 84 | + |
| 85 | +.Card-Description::-webkit-scrollbar-thumb { |
| 86 | + background-color: #888; |
| 87 | + border-radius: 10px; |
| 88 | +} |
| 89 | + |
| 90 | +.Card-Description::-webkit-scrollbar-thumb:hover { |
| 91 | + background-color: #555; |
| 92 | +} |
| 93 | + |
| 94 | +.Card-Description::-webkit-scrollbar-track { |
| 95 | + background-color: #f1f1f1; |
65 | 96 | } |
66 | 97 | .Card-Link { |
67 | 98 | position: relative; |
|
74 | 105 | } |
75 | 106 | .Card-Link:hover { |
76 | 107 | color: whitesmoke; |
77 | | - background: #0f3cef; |
| 108 | + background: #3b82f6; |
| 109 | + border-radius: 8px; |
78 | 110 | } |
79 | 111 | .Card-Title { |
80 | 112 | margin-top: 6%; |
|
85 | 117 | margin-left: 10%; |
86 | 118 | } |
87 | 119 |
|
| 120 | +.Card-Tag{ |
| 121 | + display: flex; |
| 122 | + justify-content: center; |
| 123 | + align-items: center; |
| 124 | + flex-wrap: wrap; |
| 125 | + gap: 8px; |
| 126 | +} |
| 127 | + |
88 | 128 | .Card-Tag div { |
89 | 129 | display: inline-block; |
90 | | - background-color: #c8e1f9; |
91 | | - padding: 5px; |
92 | | - border-radius: 12px; |
93 | | - margin: 10px 10px; |
| 130 | + background-color: #0f3cef33; |
| 131 | + padding: .3rem .65rem; |
| 132 | + border-radius: 8px; |
| 133 | + border: 1px solid #42404047; |
94 | 134 | vertical-align: middle; |
95 | 135 | } |
96 | 136 |
|
|
0 commit comments