jekyll-theme-lucas-minima 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,234 @@
1
+ // Resume styles
2
+ // ---------------------------------------/
3
+
4
+ // util
5
+
6
+ .section-header {
7
+ @include section_border;
8
+ margin-bottom: 1.5rem;
9
+
10
+ h2 {
11
+ @include sans;
12
+ font-weight: 900;
13
+ font-size: 1.75rem;
14
+ letter-spacing: -.05rem;
15
+ margin: 0;
16
+ }
17
+ }
18
+
19
+ // page header styles
20
+
21
+ .page-header { padding: 1.5rem 0;
22
+
23
+ .avatar {
24
+ width: 95px;
25
+ max-width: 100%;
26
+ overflow: hidden;
27
+ @include border-radius(100px);
28
+ margin: 0 auto;
29
+ display: block;
30
+ }
31
+
32
+ .header-name {
33
+ @include sans;
34
+ font-size: 3rem;
35
+ font-weight: 900;
36
+ text-align: center;
37
+ letter-spacing: -.15rem;
38
+ line-height: 1;
39
+ margin: 1rem 0 0;
40
+ }
41
+
42
+ .header-contact-info {
43
+ @include sans;
44
+ text-align: center;
45
+ }
46
+ .header-contact-info p a {
47
+ color: inherit;
48
+ }
49
+
50
+ .title-bar {
51
+ @include section_border;
52
+ margin-top: 2rem;
53
+ padding: .4rem 0;
54
+ @include clearfix;
55
+
56
+ .header-title {
57
+ @include sans;
58
+ font-weight: 300;
59
+ font-size: 1.75rem;
60
+ line-height: 2rem;
61
+ letter-spacing: -.05rem;
62
+ text-align: center;
63
+ margin: 0 0 .5rem;
64
+
65
+ @include media_larger_than_mobile {
66
+ float: left;
67
+ margin: 0;
68
+ }
69
+ }
70
+ }
71
+
72
+ .executive-summary {
73
+ @include media_larger_than_mobile { font-size: 1.125rem; }
74
+ }
75
+ }
76
+
77
+ .icon-links {
78
+ margin: 0;
79
+ padding: 0;
80
+ list-style: none;
81
+ position: relative;
82
+ top: 4px;
83
+ text-align: center;
84
+ border-top: 2px solid #c7c7c7;
85
+ padding-top: .4rem;
86
+
87
+ @include media_larger_than_mobile {
88
+ float: right;
89
+ border-top: none;
90
+ padding-top: 0;
91
+ }
92
+
93
+ .icon-link-item {
94
+ display: inline-block;
95
+ margin-left: 5px;
96
+ }
97
+
98
+ .icon-link { display: inline-block;
99
+
100
+ &:hover .icon path {
101
+ fill: #333;
102
+ @include transition(all .2s ease);
103
+ }
104
+ }
105
+
106
+ .icon {
107
+ height: 28px;
108
+ }
109
+ }
110
+
111
+ .contact-button {
112
+ @include border-radius(3px);
113
+ background-color: #efefef;
114
+ text-decoration: none;
115
+ text-align: center;
116
+ display: block;
117
+ margin: 1.5rem auto;
118
+ width: 220px;
119
+ font-size: 1.375rem;
120
+ @include sans_light;
121
+ color: #333;
122
+ line-height: 55px;
123
+ @include transition(all .2s ease);
124
+
125
+ &:hover {
126
+ background-color: #333;
127
+ color: #fff;
128
+ }
129
+
130
+ &.not-looking { width: 400px; }
131
+ }
132
+
133
+ // resume content styles
134
+
135
+ .content-section {
136
+ margin: 0 0 3rem;
137
+
138
+ .resume-item { margin-bottom: 2rem; }
139
+
140
+ .resume-item-title {
141
+ @include sans_bold;
142
+ margin: 0 0 .75rem;
143
+ font-size: 1.5rem;
144
+ letter-spacing: -.05rem;
145
+ line-height: 1;
146
+ }
147
+
148
+ .resume-item-details {
149
+ font-size: 1.125rem;
150
+ margin: 0 0 .75rem;
151
+ line-height: 1;
152
+
153
+ &.award-title {
154
+ font-size: 1rem;
155
+ }
156
+ }
157
+
158
+ .resume-item-title,
159
+ .resume-item-details,
160
+ .resume-item-copy,
161
+ .resume-item-list {
162
+ a {
163
+ color: #333;
164
+ text-decoration: none;
165
+ border-bottom: 1px solid;
166
+
167
+ &:hover {
168
+ border-bottom: none;
169
+ color: #9c9c9c;
170
+ }
171
+ }
172
+ }
173
+
174
+ .resume-item-copy { margin: .75rem 0 0; }
175
+ }
176
+
177
+ // footer styles
178
+
179
+ .page-footer {
180
+ border-top: 4px solid #c7c7c7;
181
+ padding-top: 1.5rem;
182
+ text-align: center;
183
+ margin-bottom: 3rem;
184
+
185
+ .footer-line {
186
+ margin: 0;
187
+ font-size: .875rem;
188
+ color: #999;
189
+
190
+ > a {
191
+ font-weight: 700;
192
+ color: #333;
193
+ }
194
+ }
195
+ }
196
+
197
+ .print-only { display: none !important }
198
+
199
+ @media print {
200
+ .no-print { display: none !important }
201
+ .print-only { display: block !important }
202
+ body { font-size: 12px; line-height: 1rem; }
203
+ .page-header { padding: 1rem 0 .2rem;
204
+ .header-name {
205
+ @include sans_bold;
206
+ font-size: 2rem;
207
+ margin: 0 0 .2rem;
208
+ }
209
+ }
210
+ .section-header {
211
+ @include section_border_thin;
212
+ margin-bottom: 1rem;
213
+ h2 { font-size: 1.2rem; line-height: 1.5rem; }
214
+ }
215
+ .content-section {
216
+ margin: 0 0 1rem;
217
+ .resume-item { margin-bottom: 1rem; }
218
+ .resume-item-title {
219
+ font-size: 16px;
220
+ line-height: .7em;
221
+ }
222
+
223
+ .resume-item-details {
224
+ font-size: 12px;
225
+ margin: 0 0 .75rem;
226
+ line-height: .7em;
227
+ font-style:italic;
228
+
229
+ &.award-title {
230
+ font-size: 11px;
231
+ }
232
+ }
233
+ }
234
+ }
@@ -0,0 +1,21 @@
1
+ // Variables
2
+ // ---------------------------------------/
3
+
4
+ $container-width: 980px !default;
5
+ $grid-gutter: 10px !default;
6
+
7
+ // Colors
8
+ $white: #fff;
9
+ $black: #333;
10
+
11
+ // Styles
12
+ $text_color: $black;
13
+
14
+ // Font stack
15
+ $body-font: Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol" !default;
16
+
17
+ // The base body size
18
+ $body-font-size: 13px !default;
19
+
20
+ // Monospace font stack
21
+ $mono-font: Consolas, "Liberation Mono", Menlo, Courier, monospace !default;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-lucas-minima
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - LucasZ-SGP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-16 00:00:00.000000000 Z
11
+ date: 2023-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -96,13 +96,32 @@ files:
96
96
  - _includes/header.html
97
97
  - _includes/icon-github.html
98
98
  - _includes/icon-github.svg
99
+ - _includes/icon-links.html
99
100
  - _includes/icon-twitter.html
100
101
  - _includes/icon-twitter.svg
102
+ - _includes/icons/icon-dribbble.html
103
+ - _includes/icons/icon-facebook.html
104
+ - _includes/icons/icon-github.html
105
+ - _includes/icons/icon-instagram.html
106
+ - _includes/icons/icon-linkedin.html
107
+ - _includes/icons/icon-medium.html
108
+ - _includes/icons/icon-pdf.html
109
+ - _includes/icons/icon-print.html
110
+ - _includes/icons/icon-twitter.html
111
+ - _includes/icons/icon-website.html
112
+ - _includes/print-social-links.html
101
113
  - _includes/social.html
102
114
  - _layouts/default.html
103
115
  - _layouts/home.html
104
116
  - _layouts/page.html
105
117
  - _layouts/post.html
118
+ - _layouts/resume.html
119
+ - _sass/_base.scss
120
+ - _sass/_layout.scss
121
+ - _sass/_mixins.scss
122
+ - _sass/_normalize.scss
123
+ - _sass/_resume.scss
124
+ - _sass/_variables.scss
106
125
  - _sass/minima.scss
107
126
  - _sass/minima/_base.scss
108
127
  - _sass/minima/_layout.scss