mirror of
https://github.com/lukasmartinelli/postgis-editor.git
synced 2026-02-01 16:46:46 +00:00
31 lines
567 B
SCSS
31 lines
567 B
SCSS
.button {
|
|
text-align: center;
|
|
display: inline-block;
|
|
margin: 0px;
|
|
padding: 10px;
|
|
position: relative;
|
|
border: none;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
font-family: 'Open Sans Bold', sans-serif;
|
|
line-height: 20px;
|
|
font-size: 12px;
|
|
|
|
color: #fff;
|
|
background-color: rgba(255,255,255,0.10);
|
|
}
|
|
|
|
|
|
.button:hover {
|
|
background-color: rgba(255,255,255,0.25);
|
|
}
|
|
|
|
.button.short {
|
|
height: 30px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
vertical-align: middle;
|
|
}
|