main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
985 bytes
|
Line | |
---|
1 | img:hover,
|
---|
2 | .menuItem:hover {
|
---|
3 | cursor: pointer;
|
---|
4 | }
|
---|
5 |
|
---|
6 | .menuList {
|
---|
7 | list-style: none;
|
---|
8 | padding: 0;
|
---|
9 | margin: 0;
|
---|
10 | text-align: center;
|
---|
11 | }
|
---|
12 |
|
---|
13 | .profileContainer {
|
---|
14 | display: flex;
|
---|
15 | justify-content: center;
|
---|
16 | }
|
---|
17 |
|
---|
18 | .profileWrapper {
|
---|
19 | position: relative;
|
---|
20 | }
|
---|
21 |
|
---|
22 | .profileImage {
|
---|
23 | height: 48px;
|
---|
24 | width: 48px;
|
---|
25 | border-radius: 50%;
|
---|
26 | /* border: 4px solid #d1d5db; */
|
---|
27 | object-fit: cover;
|
---|
28 | }
|
---|
29 |
|
---|
30 | /* Dropdown Menu */
|
---|
31 | .dropdownMenu {
|
---|
32 | position: absolute;
|
---|
33 | top: 50px; /* Adjust according to image size and spacing */
|
---|
34 | left: 50%;
|
---|
35 | transform: translateX(-50%); /* Center the menu below the image */
|
---|
36 | width: 13rem;
|
---|
37 | background-color: white;
|
---|
38 | padding: 1rem;
|
---|
39 | box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
---|
40 | }
|
---|
41 |
|
---|
42 | /* Menu List and Items */
|
---|
43 | .menuList {
|
---|
44 | list-style-type: none;
|
---|
45 | padding: 0;
|
---|
46 | margin: 0;
|
---|
47 | }
|
---|
48 |
|
---|
49 | .menuItem {
|
---|
50 | padding: 10px;
|
---|
51 | text-align: center;
|
---|
52 | border-radius: 5px;
|
---|
53 | transition: background-color 0.3s ease;
|
---|
54 | }
|
---|
55 |
|
---|
56 | .menuItem:hover {
|
---|
57 | background-color: #f0f0f0;
|
---|
58 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.