2020-02-24 17:41:02 +01:00
|
|
|
/* Budibase Component Styles */
|
|
|
|
.header {
|
|
|
|
font-size: 0.75rem;
|
2020-03-24 11:56:48 +01:00
|
|
|
color: #000333;
|
|
|
|
opacity: 0.4;
|
2020-02-24 17:41:02 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
margin-top: 1rem;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__title {
|
|
|
|
font-weight: 900;
|
|
|
|
font-size: 42px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__title--2 {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__title--3 {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__title--4 {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__label--big {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
opacity: 0.6;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__label--medium {
|
|
|
|
font-weight: 500;
|
2020-04-02 18:11:38 +02:00
|
|
|
font-size: 13px;
|
2020-02-24 17:41:02 +01:00
|
|
|
opacity: 0.6;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__label--small {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 10px;
|
|
|
|
opacity: 0.6;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__sub-heading {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__nav-item {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0 7px 0 3px;
|
|
|
|
height: 35px;
|
2020-03-24 11:56:48 +01:00
|
|
|
margin: 5px 20px 5px 0px;
|
2020-02-24 17:41:02 +01:00
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
display: flex;
|
2020-04-02 12:41:21 +02:00
|
|
|
align-items: baseline;
|
2020-02-24 17:41:02 +01:00
|
|
|
font-weight: 500;
|
2020-04-02 18:11:38 +02:00
|
|
|
font-size: 13px;
|
2020-02-24 17:41:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__nav-item.selected {
|
|
|
|
color: var(--button-text);
|
2020-03-24 11:56:48 +01:00
|
|
|
background: #fafafa !important;
|
2020-02-24 17:41:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__nav-item:hover {
|
|
|
|
background: #fafafa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__input {
|
|
|
|
width: 250px;
|
|
|
|
height: 35px;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #DBDBDB;
|
|
|
|
text-align: left;
|
|
|
|
letter-spacing: 0.7px;
|
2020-03-24 11:56:48 +01:00
|
|
|
color: #000333;
|
2020-02-24 17:41:02 +01:00
|
|
|
font-size: 16px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uk-text-right {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2020-03-10 14:53:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.preview-pane {
|
|
|
|
grid-column: 2;
|
|
|
|
margin: 80px 60px;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 0px 6px rgba(0, 0, 0, 0.05);
|
2020-03-12 15:23:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__table {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__table thead {
|
2020-03-22 10:21:18 +01:00
|
|
|
background: #fafafa;
|
2020-03-12 15:23:29 +01:00
|
|
|
}
|
|
|
|
|
2020-03-22 14:59:42 +01:00
|
|
|
.budibase__table thead > tr > th {
|
2020-03-12 15:23:29 +01:00
|
|
|
color: var(--button-text);
|
|
|
|
text-transform: capitalize;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.budibase__table tr {
|
|
|
|
border-bottom: 1px solid #ccc;
|
2020-03-22 10:21:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.button--toggled {
|
|
|
|
background: #fafafa;
|
|
|
|
color: var(--button-text);
|
|
|
|
padding: 10px;
|
2020-02-24 17:41:02 +01:00
|
|
|
}
|