Lamassu admin server initial commit

This commit is contained in:
Rafael Taranto 2019-03-12 10:49:09 -03:00 committed by Rafael Taranto
parent d083ae5a40
commit fc1951c4b2
158 changed files with 28462 additions and 1606 deletions

View file

@ -0,0 +1,111 @@
import {
fontColor,
fontSize1,
fontSize2,
fontSize3,
fontSize4,
fontSize5,
fontPrimary,
fontSecondary,
fontMonospaced
} from '../../styling/variables'
const base = {
lineHeight: '110%',
color: fontColor
}
export default {
h1: {
extend: base,
fontSize: fontSize1,
fontFamily: fontPrimary,
fontWeight: 900
},
h2: {
extend: base,
fontSize: fontSize2,
fontFamily: fontPrimary,
fontWeight: 900
},
h3: {
extend: base,
fontSize: fontSize4,
fontFamily: fontPrimary,
fontWeight: 900
},
h4: {
extend: base,
fontSize: fontSize4,
fontFamily: fontPrimary,
fontWeight: 700
},
p: {
extend: base,
fontSize: fontSize4,
fontFamily: fontSecondary,
fontWeight: 500
},
tl1: {
extend: base,
fontSize: fontSize2,
fontFamily: fontSecondary,
fontWeight: 700
},
tl2: {
extend: base,
fontSize: fontSize4,
fontFamily: fontSecondary,
fontWeight: 700
},
info1: {
extend: base,
fontSize: fontSize1,
fontFamily: fontSecondary,
fontWeight: 700
},
info2: {
extend: base,
fontSize: fontSize3,
fontFamily: fontSecondary,
fontWeight: 700
},
mono: {
extend: base,
fontSize: fontSize4,
fontFamily: fontMonospaced,
fontWeight: 500
},
monoBold: {
fontWeight: 700
},
monoSmall: {
fontSize: fontSize5
},
inputFont: {
fontSize: fontSize2,
fontFamily: fontSecondary,
fontWeight: 500,
lineHeight: '110%',
color: fontColor
},
regularLabel: {
fontSize: fontSize4,
fontFamily: fontSecondary,
fontWeight: 500,
lineHeight: '110%'
},
label: {
fontSize: fontSize5,
fontFamily: fontSecondary,
fontWeight: 500
},
label2: {
fontSize: fontSize5,
fontFamily: fontSecondary,
fontWeight: 700
},
inline: {
display: 'inline'
}
}