summaryrefslogtreecommitdiff
path: root/resume.css
diff options
context:
space:
mode:
Diffstat (limited to 'resume.css')
-rwxr-xr-xresume.css28
1 files changed, 26 insertions, 2 deletions
diff --git a/resume.css b/resume.css
index e426252..00394d1 100755
--- a/resume.css
+++ b/resume.css
@@ -37,13 +37,15 @@ header {
}
#resume_header > h1 {
- font-size: 30px;
+ font-size: 24px;
padding: 0;
margin: 0;
font-weight: 500;
}
#resume_header_contact {
+ display: flex;
+ flex-direction: row;
}
#resume_header_contact span {
@@ -83,6 +85,10 @@ header {
justify-content: space-between;
}
+.skill-section > b {
+ width: 25%;
+}
+
.skill-section > div {
width: 75%;
}
@@ -126,4 +132,22 @@ header {
width: calc(100vw - 4rem);
height: calc(100vh - 4rem);
overflow: auto;
-} \ No newline at end of file
+}
+
+/* Phone screen adjustments */
+@media only screen and (device-width: 960px),
+only screen and (max-width:960px) {
+ #resume_header {
+ flex-direction: column;
+ align-items: flex-start;
+ }
+
+ #resume_header_contact {
+ flex-direction: column;
+ }
+
+ #resume_header_contact span {
+ margin: 0;
+ margin-top: 5px;
+ }
+}