1
0
Fork 0
mirror of synced 2024-08-07 06:08:23 +12:00
budibase/packages/builder/src/budibase.css

131 lines
2.2 KiB
CSS
Raw Normal View History

/* Budibase Component Styles */
.header {
font-size: 0.75rem;
color: var(--ink);
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;
font-size: 13px;
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 4px 0 2px;
height: 35px;
margin: 5px 0px 4px 0px;
border-radius: 0 5px 5px 0;
display: flex;
2020-05-19 03:37:19 +12:00
align-items: center;
font-size: 14px;
transition: 0.2s;
}
.budibase__nav-item.selected {
color: var(--ink);
background: var(--blue-light);
}
.budibase__nav-item:hover {
background: var(--grey-1);
}
.budibase__input {
height: 35px;
2020-06-05 06:27:25 +12:00
width: 220px;
border-radius: 3px;
border: 1px solid var(--grey-4);
text-align: left;
color: var(--ink);
2020-06-05 06:27:25 +12:00
font-size: 14px;
padding-left: 12px;
}
.uk-text-right {
display: flex;
justify-content: flex-start;
2020-03-11 02:53:23 +13: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-13 03:23:29 +13:00
}
.budibase__table {
border: 1px solid var(--grey-4);
2020-03-13 03:23:29 +13:00
background: #fff;
border-radius: 2px;
}
.budibase__table thead {
background: var(--blue-light);
2020-03-13 03:23:29 +13:00
}
2020-03-23 02:59:42 +13:00
.budibase__table thead > tr > th {
color: var(--ink);
2020-03-13 03:23:29 +13:00
text-transform: capitalize;
font-weight: 500;
}
.budibase__table tr {
border-bottom: 1px solid var(--grey-1);
2020-03-22 22:21:18 +13:00
}
.button--toggled {
background: var(--blue-light);
color: var(--grey-7);
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
}