source: imaps-frontend/src/components/KeyMappingsGuidePanel/KeymapPanel.module.css@ d565449

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: 1006 bytes
Line 
1.keymapPanel {
2 position: fixed; /* Position the panel at the top */
3 top: 0;
4 left: 50%;
5 transform: translateX(-50%);
6 z-index: 1000; /* Make sure the panel is above other elements */
7 background-color: #f1f1f1;
8 border: 2px solid #333;
9 padding: 10px;
10 border-radius: 10px;
11 display: flex;
12 justify-content: center;
13 flex-wrap: wrap;
14 gap: 10px;
15 width: 20px; /* Adjust the width to suit your layout */
16 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
17}
18
19.keyButton {
20 width: 50px;
21 height: 50px;
22 background-color: #f1f1f1;
23 border: 2px solid #333;
24 border-radius: 5px;
25 font-size: 18px;
26 font-weight: bold;
27 cursor: pointer;
28 transition: background-color 0.3s ease;
29}
30
31.keyButton:hover {
32 background-color: #333;
33 color: #fff;
34}
35
36.keyInfo {
37 margin-top: 10px;
38 font-size: 16px;
39 font-weight: bold;
40 color: #333;
41 background-color: #f8f8f8;
42 border: 2px solid #333;
43 padding: 5px;
44 border-radius: 5px;
45}
Note: See TracBrowser for help on using the repository browser.