152 lines
2.9 KiB
CSS
152 lines
2.9 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
|
|
|
|
* {
|
|
font-family: monospace;
|
|
}
|
|
|
|
.title-text {
|
|
color: #3a81a5;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.edit-form {
|
|
padding: 10px 10px;
|
|
border: 1px solid #153549;
|
|
width: fit-content;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.first-raw {
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.input-raw {
|
|
height: auto;
|
|
width: 300px;
|
|
border: 1px solid #153549;
|
|
border-radius: 0px 10px;
|
|
display: grid;
|
|
margin-bottom: 20px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.input-raw span {
|
|
border-bottom: 1px solid #153549;
|
|
padding-left: 10px;
|
|
color: #3a81a5;
|
|
height: 35px;
|
|
line-height: 35px;
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.input-raw input,
|
|
select {
|
|
background-color: #0c202a;
|
|
border: none;
|
|
padding-left: 10px;
|
|
color: #3a81a5;
|
|
line-height: 1;
|
|
height: 40px;
|
|
border-radius: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
.input-raw input:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.edit-device-btn {
|
|
background-image: linear-gradient(rgb(68, 61, 61), #232735);
|
|
color: #3a81a5;
|
|
letter-spacing: 1px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
background: transparent;
|
|
border: 1px solid #153549;
|
|
border-radius: 0px 10px;
|
|
height: 45px;
|
|
width: 150px;
|
|
margin-top: 25px;
|
|
}
|
|
|
|
#geocoder-container {
|
|
border-bottom: 0px;
|
|
padding: 0;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder {
|
|
background-color: transparent !important;
|
|
width: 100% !important;
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder--input {
|
|
width: 100%;
|
|
display: block;
|
|
padding: 7px 25px 11px 30px !important;
|
|
color: #ffffff !important;
|
|
caret-color: #ffffff;
|
|
font-size: 13.3333px !important;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder--input:focus {
|
|
/* color: transparent !important; */
|
|
box-shadow: none !important;
|
|
outline: none !important;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder--icon {
|
|
fill: #3a81a5 !important;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder--button {
|
|
background: transparent !important;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder .suggestions {
|
|
background-color: #0c232f !important;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder .suggestions>li>a {
|
|
color: #bbbbbb !important;
|
|
}
|
|
|
|
.mapboxgl-ctrl-geocoder .suggestions>.active>a,
|
|
.mapboxgl-ctrl-geocoder .suggestions>li>a:hover {
|
|
background-color: #102d3c !important;
|
|
color: #5589a9 !important;
|
|
}
|
|
|
|
.podTextInput {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
}
|
|
|
|
.buttonSection {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
min-width: 490px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.error-class {
|
|
border: 1px solid #ff5339;
|
|
}
|
|
|
|
.errorlist {
|
|
border: 1px solid #ff5339;
|
|
padding: 10px;
|
|
color: #ff5339;
|
|
background: #ff53391c;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.empty-field {
|
|
|
|
border-color: red;
|
|
/* Change this to whatever color you want for empty fields */
|
|
} |