mirror of
https://github.com/lukasmartinelli/postgis-editor.git
synced 2026-02-01 16:46:46 +00:00
49 lines
919 B
SCSS
49 lines
919 B
SCSS
$input-bg-color: #222;
|
|
|
|
textarea, input[type=password], input[type=text],
|
|
input[type=email], input[type=number] {
|
|
color: #fff;
|
|
background: $input-bg-color;
|
|
border: 1px solid darken($input-bg-color, 7%);
|
|
-webkit-appearance: none;
|
|
padding: 5px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 5px;
|
|
border-radius: 3px;
|
|
border: none;
|
|
|
|
font-family: 'Open Sans Bold', sans-serif;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
-webkit-appearance: none;
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
|
|
color: white;
|
|
background-color: #21252b;
|
|
}
|
|
|
|
.config-field {
|
|
margin: 15px;
|
|
margin-top: 7.5px;
|
|
margin-bottom: 7.5px;
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 160px;
|
|
|
|
.config-label {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
color: rgba(255,255,255,.5);
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
}
|
|
}
|