Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/sass/_base.scss')
-rw-r--r--assets/sass/_base.scss116
1 files changed, 116 insertions, 0 deletions
diff --git a/assets/sass/_base.scss b/assets/sass/_base.scss
new file mode 100644
index 0000000..a4d76b1
--- /dev/null
+++ b/assets/sass/_base.scss
@@ -0,0 +1,116 @@
+
+* {
+ margin: 0;
+ padding: 0;
+ }
+
+
+ body {
+ background: #FFF;
+ font-family: $font-1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ }
+
+ a {
+ text-decoration: none;
+ }
+
+ li {
+ list-style-type: square;
+ padding-left: 0px;
+ list-style-position: inside;
+ margin: 8px 0;
+ }
+
+ .resumeCanvas {
+ margin: 2.5rem auto;
+ padding: 0 0.45in 0.5in 0.45in;
+ width: 8.25in;
+ height: 11.75in;
+ background-color: #FFF;
+ -moz-box-shadow: 2px 2px 10px #aaa;
+ -webkit-box-shadow: 2px 2px 10px #aaa;
+ box-shadow: 2px 2px 10px #aaa;
+ box-sizing: border-box;
+ }
+
+ .gridParent {
+ width: 100%;
+ height: 100%;
+ display: grid;
+ grid-template-columns: repeat(7, 1fr);
+ grid-template-rows: repeat(6, 1fr);
+ grid-column-gap: 0px;
+ grid-row-gap: 0px;
+ }
+
+ .flex-row{
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ }
+
+ .titleHeader {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ font-family: $font-1;
+ h1 {
+ font-size: 64px;
+ color: $heading-color;
+ letter-spacing: 0.15rem;
+ }
+ }
+
+ header {
+ grid-area: 1 / 1 / 2 / 8;
+ border-bottom: $border-color 1px solid;
+ }
+
+ .leftSide {
+ grid-area: 2 / 1 / 7 / 6;
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-start;
+ border-right: $border-color 1px solid;
+ padding-right: 16px;
+ }
+
+ .rightSide {
+ grid-area: 2 / 6 / 7 / 8;
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-start;
+ margin-left: 8px;
+
+ li {
+ list-style-type: none;
+ padding: 0;
+ }
+ }
+
+ .leftSide, .rightSide {
+ margin-top: 12px;
+ font-size: 14px;
+ h1, h2, h3 {
+ line-height: 1.2;
+ }
+ h1 {
+ margin-bottom: 16px;
+ font-size: 24px;
+ }
+ h2 {
+ font-size: 20px;
+ margin-bottom: 4px;
+ }
+ h3 {
+ font-size: 16px;
+ }
+ p {
+ font-size: 14px;
+ margin: 8px 0;
+ line-height: 1.5;
+ text-align: justify;
+ }
+ } \ No newline at end of file