mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 17:22:29 -05:00
72 lines
1.4 KiB
TypeScript
72 lines
1.4 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export const DASHBOARD_TITLE_CSS = {
|
|
'font-size': '36px',
|
|
'line-height': '48px',
|
|
'margin': '16px 0 8px 0',
|
|
};
|
|
|
|
export const PAGE_TITLE_CSS = {
|
|
'font-size': '18px',
|
|
'line-height': '24px',
|
|
'font-weight': '600',
|
|
'margin': '0 0 4px 0',
|
|
};
|
|
|
|
export const PAGE_SUBTITLE_CSS = {
|
|
'font-size': '15px',
|
|
'line-height': '19px',
|
|
'margin': '0 0 12px 0',
|
|
};
|
|
|
|
export const SECTION_HEADER_CSS = {
|
|
'font-size': '14px',
|
|
'line-height': '20px',
|
|
'font-weight': '600',
|
|
'margin': '4px 0',
|
|
};
|
|
|
|
export const BODY_CSS = {
|
|
'font-size': '13px',
|
|
'line-height': '18px',
|
|
'margin': '4px 0',
|
|
};
|
|
|
|
export const LABEL_CSS = {
|
|
...BODY_CSS,
|
|
'margin': '0 0 4px 0',
|
|
'font-weight': '600',
|
|
};
|
|
|
|
export const LIGHT_LABEL_CSS = {
|
|
...BODY_CSS,
|
|
'font-weight': '350',
|
|
};
|
|
|
|
export const NOTE_CSS = {
|
|
'font-size': '12px',
|
|
'line-height': '16px',
|
|
'margin': '0',
|
|
'font-weight': '350',
|
|
};
|
|
|
|
export const BOLD_NOTE_CSS = {
|
|
...NOTE_CSS,
|
|
'font-weight': '600',
|
|
};
|
|
|
|
export const SMALL_NOTE_CSS = {
|
|
'font-size': '10px',
|
|
'line-height': '14px',
|
|
'margin': '0',
|
|
};
|
|
|
|
export const BIG_NUMBER_CSS = {
|
|
'font-size': '28px',
|
|
'line-height': '36px',
|
|
'margin': '0',
|
|
};
|