Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 moved

Legend:

Unmodified
Added
Removed
  • imaps-frontend/src/components/Modals/EntranceModal/EntranceModal.module.css

    rd565449 r0c6b92a  
    1414}
    1515
    16 /* Overlay: Dark background with optional blur */
    1716.overlay {
    18   background: rgba(0, 0, 0, 0.7); /* Darken the background */
    19   backdrop-filter: blur(5px); /* Optional blur effect */
    20   z-index: 999; /* Ensure the overlay appears below the modal */
     17  /*background: rgba(255, 255, 255, 0.05);*/
     18  z-index: 999;
    2119}
    2220
    23 /* Modal content: Centered and styled */
     21.draggableHeader {
     22  cursor: move;
     23  padding: 10px;
     24  background-color: #2c2f33;
     25  color: #ffffff;
     26  border-bottom: 1px solid #444;
     27}
     28
     29
     30
    2431.modalContent {
    2532  position: absolute;
     
    2734  left: 50%;
    2835  transform: translate(-50%, -50%);
    29   background-color: #2c2f33; /* Darker background for modal content */
    30   color: #ffffff; /* White text for contrast */
     36  background-color: #2c2f33;
     37  color: #ffffff !important;
    3138  padding: 20px;
    3239  border-radius: 8px;
     
    3441  width: 100%;
    3542  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    36   z-index: 1000; /* Ensure the modal appears above the overlay */
     43  z-index: 1000;
    3744}
    3845
    39 /* Heading styles */
    40 h2,
    41 h3 {
     46
     47.title {
    4248  margin-bottom: 15px;
    43   color: #ffffff; /* White text for the headings */
     49  color: #ffffff ;
    4450}
    4551
    46 /* Button for opening the modal */
    4752.btnModal {
    4853  padding: 10px 20px;
     
    6166}
    6267
    63 /* Close button inside the modal */
    6468.closeModal {
    6569  position: absolute;
     
    7882}
    7983
    80 /* Form styles */
    8184.form {
    8285  display: flex;
     
    8891}
    8992
    90 /* Form labels */
    9193.formGroup label {
    9294  display: block;
    9395  margin-bottom: 5px;
    94   color: #ffffff; /* White text for labels */
     96  color: #ffffff;
    9597}
    9698
    97 /* Input, select, and textarea styles */
    9899.formGroup input,
    99100.formGroup select,
     
    103104  border-radius: 4px;
    104105  border: 1px solid #ccc;
    105   background-color: #23272a; /* Darker input background */
    106   color: #ffffff; /* White text inside the input fields */
     106  background-color: #23272a;
     107  color: #ffffff;
    107108}
    108109
    109110.formGroup input::placeholder,
    110111.formGroup textarea::placeholder {
    111   color: #888888; /* Slightly lighter color for placeholder text */
     112  color: #888888;
    112113}
    113114
    114115/* Checkbox alignment fix */
    115116.formGroupCheckbox {
     117
    116118  display: flex;
    117   align-items: center; /* Vertical alignment */
    118   color: #ffffff;
     119  flex-direction: row;
     120  vertical-align: middle;
     121  align-items: flex-end;
     122  /*justify-content: start;!* Vertical alignment *!*/
     123  /*color: #ffffff;*/
     124}
     125
     126.formGroupCheckbox input{
     127  width: 10%;
     128  margin-bottom: 0.88em;
    119129}
    120130
    121131/* Add button */
    122132.addButton {
    123   background-color: #28a745;
     133  background-color: #28a745 !important;
    124134  color: white;
    125135  padding: 8px 15px;
     
    131141
    132142.addButton:hover {
    133   background-color: #218838;
     143  background-color: #218838 !important;
    134144}
    135145
    136146/* Save button styling */
    137147.submitButton {
    138   background-color: #28a745;
     148  background-color: #28a745 !important;
    139149  color: white;
    140150  padding: 10px 20px;
     
    150160}
    151161
    152 /* Pin list */
    153162.pinList {
    154163  list-style-type: none;
     
    157166}
    158167
    159 /* Individual pin item */
    160168.pinItem {
    161169  background-color: #444;
     
    169177}
    170178
    171 /* Remove button */
    172179.removeButton {
    173180  background-color: #dc3545;
Note: See TracChangeset for help on using the changeset viewer.