diff --git a/src/Client/src/app/pages/resumes/editor/editor.component.css b/src/Client/src/app/pages/resumes/editor/editor.component.css index 7230e75..ec41f96 100644 --- a/src/Client/src/app/pages/resumes/editor/editor.component.css +++ b/src/Client/src/app/pages/resumes/editor/editor.component.css @@ -1,16 +1,20 @@ input, textarea { - border: none; + border: 1px solid #444; background-color: transparent; } +textarea { + resize: vertical; +} + h1 { margin: 0; font-size: 15px; } .paper { - width: 70vw; - aspect-ratio: 1 / 1.294; + width: 800px; + aspect-ratio: 17 / 22; background: white; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); margin: auto; @@ -18,8 +22,18 @@ h1 { border: 1px solid #ddd; } +.spacer { + margin: 0 10px; +} + +.spacer-title { + display: flex; + margin: 10px 0; +} + .columns { columns: 2; + column-gap: 10px; } .resume-header { @@ -34,11 +48,59 @@ h1 { .resume-section { break-inside: avoid; background-color: #DDDDDD; - margin: 10px; + margin-bottom: 10px; } .resume-sub-section { border: 1px solid #666666; - margin: 5px; padding: 10px; +} + +.title-text { + margin: 0; + height: 20px; +} + +.header-left { + width: 50%; + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: flex-start; +} + +.header-right { + width: 50%; + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: flex-end; +} + +.header-location input{ + width: 80px; +} + +.Add { + position: relative; + float: right; + width: 20px; + height: 20px; + background-color: #0F0; + border: none; + bottom: 20px; +} + +.Del { + position: relative; + float: right; + width: 20px; + height: 20px; + background-color: #F00; + border: none; +} + +.flex-two-row { + display: flex; + flex: 1; } \ No newline at end of file diff --git a/src/Client/src/app/pages/resumes/editor/editor.component.html b/src/Client/src/app/pages/resumes/editor/editor.component.html index 954a35a..452ec4b 100644 --- a/src/Client/src/app/pages/resumes/editor/editor.component.html +++ b/src/Client/src/app/pages/resumes/editor/editor.component.html @@ -9,139 +9,160 @@