Add actual start time to team

This commit is contained in:
John Lyon-Smith
2018-04-27 15:51:38 -07:00
parent d2a22fd3a5
commit 1b5ccf251f
14 changed files with 3583 additions and 3374 deletions

View File

@@ -1,36 +1,36 @@
let colorInfo = {
text: '#000000',
textInverse: '#FFFFFF',
textPlaceholder: '#EEEEEE',
textAlert: '#FF0000',
textGray: '#B0B0B0',
textDisabled: '#AAAAAA',
text: "#000000",
textInverse: "#FFFFFF",
textPlaceholder: "#EEEEEE",
textAlert: "#FF0000",
textGray: "#B0B0B0",
textDisabled: "#AAAAAA",
border: '#B2B2B2',
border: "#B2B2B2",
modalShadow: '#000000',
modalBackground: '#FFFFFF',
modalShadow: "#000000",
modalBackground: "#FFFFFF",
inputBackground: '#FFFFFF',
inputBackground: "#FFFFFF",
buttonBackground: '#3498DB',
buttonBackgroundHover: '#3CB0FD',
buttonBackgroundActive: '#1A72AC',
buttonDisabledBackground: '#E0E0E0',
buttonBackground: "#3498DB",
buttonBackgroundHover: "#3CB0FD",
buttonBackgroundActive: "#1A72AC",
buttonDisabledBackground: "#E0E0E0",
headerBorder: '#B2B2B2',
headerButtonBackground: '#FAFAFA',
headerButtonBackgroundHover: '#DADADA',
headerButtonBackgroundActive: '#AAAAAA',
headerBorder: "#B2B2B2",
headerButtonBackground: "#FAFAFA",
headerButtonBackgroundHover: "#DADADA",
headerButtonBackgroundActive: "#AAAAAA",
checkboxUnchecked: '#A0A0A0',
checkboxUncheckedHover: '#808080',
checkmark: '#FFFFFF',
checkboxUnchecked: "#A0A0A0",
checkboxUncheckedHover: "#808080",
checkmark: "#FFFFFF",
listBackground: '#FFFFFF',
listBackgroundActive: '#E7E5E5',
listBackground: "#FFFFFF",
listBackgroundActive: "#E7E5E5",
dropdownBackground: '#FFFFFF',
dropdownBackground: "#FFFFFF",
}
Object.assign(colorInfo, {
@@ -58,15 +58,15 @@ const sizeInfo = {
headerTextOffset: 2,
headerButtonMargin: 8,
footerTextMargin: '5px 0px 5px 10px',
footerTextMargin: "5px 0px 5px 10px",
buttonHeight: 40,
buttonPadding: '0 15px 0 15px',
buttonPadding: "0 15px 0 15px",
buttonWidth: 125,
buttonWideWidth: 225,
checkboxSize: 25,
checkmarkBorder: '0 3px 3px 0',
checkmarkBorder: "0 3px 3px 0",
panelButton: 200,
panelButtonIcon: 170,
@@ -83,22 +83,27 @@ const sizeInfo = {
formBoundIcon: 30,
formBoundIconMargin: 0,
formButtonIcon: 24,
formButtonIconMargin: 0,
formButtonIconBorderRadius: 4,
formButtonIconPadding: 3,
listBorderWidth: 1,
listTopBottomGap: 10,
listIcon: 25,
listIconMargin: '5px 10px 5px 10px',
listIconMargin: "5px 10px 5px 10px",
dropdownIconSize: 20,
dropdownItems: 6,
dropdownBorderWidth: 1,
dropdownIcon: 25,
dropdownIconMargin: '5px 10px 5px 10px',
dropdownIconMargin: "5px 10px 5px 10px",
modalWidth: 450,
modalShadowWidth: 25,
modalMessageIcon: 150,
profileWidth: '65vw',
profileWidth: "65vw",
inputPadding: 5,
inputBorderRadius: 5,
@@ -110,21 +115,21 @@ const sizeInfo = {
}
const fontInfo = {
family: 'Hind, sans-serif', // https://fonts.google.com/specimen/Hind?selection.family=Hind
family: "Hind, sans-serif", // https://fonts.google.com/specimen/Hind?selection.family=Hind
size: {
small: '10pt',
medium: '12pt',
large: '14pt',
huge: '26pt',
header: '18pt',
footer: '8pt',
small: "10pt",
medium: "12pt",
large: "14pt",
huge: "26pt",
header: "18pt",
footer: "8pt",
},
color: {
'normal': colorInfo.text,
'inverse': colorInfo.textInverse,
'alert': colorInfo.textAlert,
'dimmed': colorInfo.textGray,
}
normal: colorInfo.text,
inverse: colorInfo.textInverse,
alert: colorInfo.textAlert,
dimmed: colorInfo.textGray,
},
}
export { colorInfo, sizeInfo, fontInfo }