diff --git a/client/homebrew/editor/metadataEditor/metadataEditor.less b/client/homebrew/editor/metadataEditor/metadataEditor.less index cd4fb38a1..851db3c1c 100644 --- a/client/homebrew/editor/metadataEditor/metadataEditor.less +++ b/client/homebrew/editor/metadataEditor/metadataEditor.less @@ -1,3 +1,4 @@ +@import '@themes/assets/assets.less'; @import '@sharedStyles/core.less'; .userThemeName { @@ -13,19 +14,23 @@ padding : 25px; overflow-y : auto; font-size : 13px; - background-color : #999999; + background-color : white; + background-image : @backgroundImageAlt; + background-size : cover; h1 { margin : 0 0 40px; font-weight : bold; + font-size : 18px; text-transform : uppercase; } h2 { - margin : 20px 0; + font-size:15px; + margin : 16px 0; font-weight : bold; - color : #555555; - border-bottom : 2px solid gray; + color : #007; + border-bottom : 2px solid #007; } & > div { margin-bottom : 10px; } @@ -39,7 +44,7 @@ .field-column { display : flex; - flex : 5 0 200px; + flex : 5 0 250px; flex-direction : column; gap : 10px; } @@ -49,13 +54,14 @@ display : flex; flex-wrap : wrap; width : 100%; - min-width : 200px; + min-width : 250px; + padding-left : 10px; & > label { - width : 80px; - font-size : 0.9em; + width : 100px; + font-size : 1em; font-weight : 800; line-height : 1.8em; - text-transform : uppercase; + text-transform : capitalize; } & > .value { flex : 1 1 auto; diff --git a/themes/assets/assets.less b/themes/assets/assets.less index f880bce77..9bc580850 100644 --- a/themes/assets/assets.less +++ b/themes/assets/assets.less @@ -2,6 +2,7 @@ @footerAccentImage : url('/assets/PHB_footerAccent.png'); @frameBorderImage : url('/assets/frameBorder.png'); @backgroundImage : url('/assets/parchmentBackground.jpg'); +@backgroundImageAlt : url('/assets/fluffy_background.png'); @redTriangleImage : url('/assets/redTriangle.png'); @monsterBorderImageLegacy : url('/assets/monsterBorderLegacy.png'); @noteBorderImage : url('/assets/noteBorder.png'); diff --git a/themes/assets/fluffy_background.png b/themes/assets/fluffy_background.png new file mode 100644 index 000000000..02d0489e6 Binary files /dev/null and b/themes/assets/fluffy_background.png differ