main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[d565449] | 1 | .mapTemplateSelector {
|
---|
| 2 |
|
---|
| 3 | }
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | .templateList {
|
---|
| 7 | list-style-type: none;
|
---|
| 8 | padding: 0;
|
---|
| 9 | display: grid;
|
---|
| 10 | grid-template-columns: repeat(2, 7vh); /* Defines responsive columns */
|
---|
| 11 | gap: 5px;
|
---|
| 12 | margin: 20px 0;
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | .templateListItem {
|
---|
| 16 | /* display: flex;
|
---|
| 17 | justify-content: center; */
|
---|
| 18 | width: 80%;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | .mapTemplateButton {
|
---|
| 22 | display: flex; /* Enable flexbox for the button */
|
---|
| 23 | justify-content: center; /* Center text horizontally */
|
---|
| 24 | align-items: center; /* Center text vertically */
|
---|
| 25 | width: 100%; /* Full width of the parent container */
|
---|
| 26 | padding: 10px;
|
---|
| 27 | background-color: #804047;
|
---|
| 28 | border: 2px solid beige;
|
---|
| 29 | cursor: pointer;
|
---|
| 30 | border-radius: 5px;
|
---|
| 31 | font-size: 70%; /* Adjust font size as needed */
|
---|
| 32 | white-space: nowrap; /* Prevent text wrapping */
|
---|
| 33 | overflow: hidden; /* Hide any overflow text */
|
---|
| 34 | text-overflow: ellipsis; /* Show ellipsis for overflow text */
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 |
|
---|
| 38 | .mapTemplateButton:hover {
|
---|
| 39 | background-color: beige;
|
---|
| 40 | }
|
---|
| 41 | .text{
|
---|
| 42 | font-size: medium;
|
---|
| 43 | color: #804047;
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | .selectedTemplate {
|
---|
| 47 | margin-top: 10px;
|
---|
| 48 | padding: 10px;
|
---|
| 49 | text-align: center;
|
---|
| 50 | }
|
---|
| 51 | |
---|
Note:
See
TracBrowser
for help on using the repository browser.