simple-material 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/README.md +181 -0
  4. data/_includes/adsense_head.html +3 -0
  5. data/_includes/analytics_head.html +13 -0
  6. data/_includes/analytics_head_legacy.html +25 -0
  7. data/_includes/appbar.html +60 -0
  8. data/_includes/disqus.html +18 -0
  9. data/_includes/drawer.html +10 -0
  10. data/_includes/footer.html +64 -0
  11. data/_includes/github_head.html +6 -0
  12. data/_includes/list_blog_categories.html +26 -0
  13. data/_includes/list_blog_posts.html +74 -0
  14. data/_includes/list_posts.html +25 -0
  15. data/_includes/list_projects_featured.html +14 -0
  16. data/_includes/list_services.html +13 -0
  17. data/_includes/meta.html +47 -0
  18. data/_includes/nav_drawer.html +32 -0
  19. data/_includes/nav_footer.html +23 -0
  20. data/_includes/nav_social.html +71 -0
  21. data/_includes/pullquote.html +1 -0
  22. data/_includes/widget_feedback.html +15 -0
  23. data/_includes/widget_github.html +28 -0
  24. data/_includes/widget_goodreads.html +50 -0
  25. data/_includes/widget_search.html +15 -0
  26. data/_includes/widget_share.html +14 -0
  27. data/_layouts/default.html +190 -0
  28. data/_layouts/page.html +13 -0
  29. data/_layouts/post.html +35 -0
  30. data/_layouts/project.html +109 -0
  31. data/_sass/_code.scss +53 -0
  32. data/_sass/_colors.scss +124 -0
  33. data/_sass/_typography.scss +140 -0
  34. data/assets/images/icons/192.png +0 -0
  35. data/assets/images/logo.png +0 -0
  36. data/assets/raw/search.json +13 -0
  37. data/assets/scripts/navigation.js +54 -0
  38. data/assets/scripts/projects.js +72 -0
  39. data/assets/scripts/script.js +0 -0
  40. data/assets/scripts/service-worker.js +14 -0
  41. data/assets/scripts/simple-jekyll-search.min.js +6 -0
  42. data/assets/scripts/webapp.js +22 -0
  43. data/assets/styles/app.scss +1008 -0
  44. data/assets/styles/github.css +73 -0
  45. data/assets/styles/style.css +0 -0
  46. data/assets/vendors/isotope/isotope-min.js +12 -0
  47. data/pwabuilder-sw.js +23 -0
  48. metadata +204 -0
@@ -0,0 +1,1008 @@
1
+ ---
2
+ ---
3
+
4
+ @import "colors";
5
+ @import "typography";
6
+ @import "code";
7
+
8
+ {% assign base_color = site.data.manifest.theme_color | default: '#854fee' %}
9
+
10
+ :root {
11
+ /* Primary Colors (same in all themes) */
12
+ --mdc-theme-primary: {{ base_color }};
13
+ --mdc-theme-primary-variant: #4e20ba;
14
+ --mdc-theme-on-secondary: #ffffff;
15
+ --mdc-theme-overlay: {{ base_color }}1f;
16
+ --mdc-theme-shadow: #0000001f;
17
+
18
+ /* Background (different in light/dark) */
19
+ {% assign background_color = '#f5f5f5' %}
20
+ --mdc-theme-background: {{ background_color }};
21
+ --mdc-theme-border: {{ background_color }};
22
+
23
+ /* Surfaces (different in light/dark) */
24
+ --mdc-theme-surface: #ffffff;
25
+ --mdc-theme-on-surface: #000000;
26
+ }
27
+
28
+ @media (prefers-color-scheme: dark) {
29
+ :root {
30
+ /* Background (different in light/dark) */
31
+ {% assign background_color = '#060606' %}
32
+ --mdc-theme-background: {{ background_color }};
33
+ --mdc-theme-border: {{ background_color }};
34
+
35
+ /* Surfaces (different in light/dark) */
36
+ --mdc-theme-surface: #121212;
37
+ --mdc-theme-on-surface: #ffffff;
38
+ }
39
+ }
40
+
41
+
42
+ :root {
43
+ /* corner radius of the content card */
44
+ --content-corners: 2px;
45
+ /* elevation of the content card */
46
+ --content-elevation: 4px;
47
+ /* padding inside the content card */
48
+ --content-padding: 40px;
49
+ /* spacing around the content card */
50
+ --content-spacing: 24px;
51
+ /* spacing between the content columns */
52
+ --column-spacing: 40px;
53
+ /* spacing around the footnote */
54
+ --footnote-spacing-x: 24px;
55
+ --footnote-spacing-y: 0px;
56
+ --card-radius: 4px;
57
+ }
58
+
59
+ @media (max-width: 840px) {
60
+ :root {
61
+ --content-corners: 0px;
62
+ --content-elevation: 0px;
63
+ --content-padding: 24px;
64
+ --content-spacing: 0px;
65
+ --column-spacing: 0px;
66
+ --footnote-spacing-x: 24px;
67
+ --footnote-spacing-y: 24px;
68
+ }
69
+ }
70
+
71
+ @media (max-width: 768px) {
72
+ :root {
73
+ --content-padding: 16px;
74
+ --footnote-spacing-x: 16px;
75
+ --footnote-spacing-y: 16px;
76
+ }
77
+ }
78
+
79
+ html, body {
80
+ width: 100%;
81
+ height: 100%;
82
+ margin: 0;
83
+ padding: 0;
84
+ }
85
+
86
+ body {
87
+ display: flex;
88
+ flex-direction: column;
89
+ height: 100vh;
90
+ }
91
+
92
+ *,
93
+ ::before,
94
+ ::after {
95
+ box-sizing: border-box;
96
+ margin: 0;
97
+ }
98
+
99
+ .mdc-list-item {
100
+ display: block;
101
+ height: auto !important;
102
+ max-height: none !important;
103
+ }
104
+
105
+ .mdc-list-item__text {
106
+ white-space: normal;
107
+ text-align: left;
108
+ height: auto;
109
+ max-height: none;
110
+ }
111
+
112
+ .mdc-list-item__primary-text {
113
+ white-space: normal;
114
+ }
115
+
116
+ .mdc-list-item__secondary-text {
117
+ font-weight: 200;
118
+ white-space: normal;
119
+ }
120
+
121
+ .mdc-top-app-bar {
122
+ -moz-box-shadow: 0px 1px 4px var(--mdc-theme-shadow);
123
+ -webkit-box-shadow: 0px 1px 4px var(--mdc-theme-shadow);
124
+ box-shadow: 0px 1px 4px var(--mdc-theme-shadow);
125
+ z-index: 999;
126
+ }
127
+
128
+ .main-content {
129
+ align-items: center;
130
+ display: flex;
131
+ flex: 1;
132
+ flex-direction: column;
133
+ justify-content: center;
134
+ left: 0;
135
+ right: 0;
136
+ overflow-x: hidden;
137
+ width: 100%;
138
+ }
139
+
140
+ .main-content article {
141
+ border-radius: var(--content-corners);
142
+ -moz-box-shadow: 0px 0px var(--content-elevation) var(--mdc-theme-shadow);
143
+ -webkit-box-shadow: 0px 0px var(--content-elevation) var(--mdc-theme-shadow);
144
+ box-shadow: 0px 0px var(--content-elevation) var(--mdc-theme-shadow);
145
+ margin: var(--content-spacing);
146
+ padding: var(--content-padding);
147
+ width: calc(100% - var(--content-spacing));
148
+ }
149
+
150
+ .mdc-card {
151
+ box-shadow: 2px 2px 2px var(--mdc-theme-shadow);
152
+ border-color: var(--mdc-theme-border) !important;
153
+ border-style: solid !important;
154
+ border-width: 1px !important;
155
+ border-radius: 4px;
156
+ }
157
+
158
+ .mdc-card--outlined {
159
+ box-shadow: 0 0 0;
160
+ }
161
+
162
+ .mdc-card__content {
163
+ padding: 16px;
164
+ }
165
+
166
+ .mdc-button--outlined,
167
+ .mdc-button--outlined .mdc-button__ripple,
168
+ .mdc-button--unelevated,
169
+ .mdc-button--unelevated .mdc-button__ripple {
170
+ border-radius: 24px !important;
171
+ }
172
+
173
+ .col-md-8 {
174
+ float: left;
175
+ width: 67%;
176
+ padding-right: var(--column-spacing);
177
+ }
178
+
179
+ .col-md-4 {
180
+ float: left;
181
+ width: 33%;
182
+ }
183
+
184
+ @media (max-width: 840px) {
185
+ .col-md-8 {
186
+ float: none;
187
+ width: 100%;
188
+ }
189
+
190
+ .col-md-4 {
191
+ float: none;
192
+ width: 100%;
193
+ }
194
+ }
195
+
196
+ .main-content article>header {}
197
+
198
+ .main-content article section {
199
+ margin-bottom: 32px;
200
+ }
201
+
202
+ .main-content article aside {}
203
+
204
+ .main-content .footnote {
205
+ font-size: 11pt;
206
+ padding: var(--footnote-spacing-y) var(--footnote-spacing-x);
207
+ width: 100%;
208
+ }
209
+
210
+ footer {
211
+ width: 100%;
212
+ }
213
+
214
+ .main-content .footer {
215
+ font-size: 12pt;
216
+ padding: 24px;
217
+ width: 100%;
218
+ }
219
+
220
+ .main-content .footer .mdc-list-divider {
221
+ margin-top: 16px;
222
+ margin-bottom: 16px;
223
+ }
224
+
225
+ .main-content .footer ul.sitemap {
226
+ margin-top: 16px;
227
+ }
228
+
229
+ .main-content .footer ul.sitemap>li {
230
+ display: inline-block;
231
+ margin-right: 24px;
232
+ }
233
+
234
+ @media (max-width: 768px) {
235
+ .main-content .footer ul.sitemap>li {
236
+ display: block;
237
+ margin-right: 0px;
238
+ min-height: 48px;
239
+ }
240
+ }
241
+
242
+ /* Style the list */
243
+ .breadcrumbs {
244
+ list-style: none;
245
+ }
246
+
247
+ /* Display list items side by side */
248
+ .breadcrumbs .breadcrumb-item {
249
+ display: inline-block;
250
+ text-transform: capitalize;
251
+ }
252
+
253
+ /* Add a slash symbol (/) before/behind each list item */
254
+ .breadcrumbs .breadcrumb-item+.breadcrumb-item:before {
255
+ content: "⟩";
256
+ padding: 0 8px;
257
+ }
258
+
259
+ .ml-15 {
260
+ margin-left: 15px;
261
+ }
262
+
263
+ /******************************************************************************/
264
+ /* UI Elements */
265
+ /******************************************************************************/
266
+ hr {
267
+ opacity: 0.5;
268
+ }
269
+
270
+ hr.mdc-list-divider {
271
+ margin: 8px;
272
+ }
273
+
274
+ hr.small {
275
+ max-width: 100px
276
+ }
277
+
278
+ ul,
279
+ .list {
280
+ margin: 0;
281
+ padding: 0;
282
+ list-style: none;
283
+ }
284
+
285
+ input {
286
+ background-color: var(--mdc-theme-background);
287
+ border: 1px solid var(--mdc-theme-border);
288
+ border-radius: 4px;
289
+ color: var(--mdc-theme-on-surface);
290
+ padding: 8px;
291
+ width: 100%;
292
+ }
293
+
294
+ input:focus {
295
+ outline-style: none;
296
+ border: 1px solid var(--mdc-theme-primary);
297
+ }
298
+
299
+ img {
300
+ max-width: 100%;
301
+ }
302
+
303
+ /******************************************************************************/
304
+ /* Main Title Section */
305
+ /******************************************************************************/
306
+ .about-description {
307
+ width: 100%;
308
+ margin-top: var(--content-padding);
309
+ margin-bottom: var(--content-padding);
310
+ }
311
+
312
+ /******************************************************************************/
313
+ /* Home Banner Section */
314
+ /******************************************************************************/
315
+ .about-section {
316
+ position: relative;
317
+ }
318
+
319
+ .about-section .col-md-8 {
320
+ vertical-align: middle;
321
+ align-self: center;
322
+ }
323
+
324
+ .about-section .about-summary {
325
+ text-align: left;
326
+ }
327
+
328
+ .about-section .about-summary .greeting {
329
+ font-size: 32px;
330
+ line-height: 32px;
331
+ margin-top: var(--content-padding);
332
+ margin-bottom: 0;
333
+ }
334
+
335
+ .about-section .about-summary .introduction {
336
+ font-size: 56px;
337
+ line-height: 56px;
338
+ margin-bottom: var(--content-padding);
339
+ }
340
+
341
+ @media (max-width: 840px) {
342
+ .about-section {
343
+ margin-top: 0;
344
+ }
345
+
346
+ .about-section .about-summary {
347
+ margin-top: 150px;
348
+ }
349
+ }
350
+
351
+ /******************************************************************************/
352
+ /* Services Section */
353
+ /******************************************************************************/
354
+ .service-item {
355
+ padding: 16px;
356
+ text-align: center;
357
+ cursor: pointer;
358
+ }
359
+
360
+ .service-item>.material-icons {
361
+ font-size: 48px;
362
+ margin-bottom: 8px;
363
+ color: var(--mdc-theme-primary);
364
+ }
365
+
366
+ .service-item h2 {
367
+ font-size: 18px;
368
+ margin-bottom: 8px;
369
+ text-transform: uppercase;
370
+ font-weight: normal;
371
+ }
372
+
373
+ .service-item p {
374
+ font-size: 16px;
375
+ margin-bottom: 0;
376
+ }
377
+
378
+ .service-item .mdc-button__label {
379
+ text-transform: lowercase;
380
+ }
381
+
382
+ /******************************************************************************/
383
+ /* Expreience Section */
384
+ /******************************************************************************/
385
+ .experience-item {
386
+ display: inline-block;
387
+ position: relative;
388
+ width: 100%;
389
+ margin-bottom: 8px;
390
+ }
391
+
392
+ .experience-item .content {
393
+ float: left;
394
+ width: calc(100% - 32px);
395
+ }
396
+
397
+ .experience-item .content .details {
398
+ border: 0.5px solid var(--mdc-theme-border);
399
+ border-radius: 4px;
400
+ padding: 16px;
401
+ margin-top: 8px;
402
+ }
403
+
404
+ .experience-item .date {
405
+ color: var(--mdc-theme-primary);
406
+ }
407
+
408
+ .experience-item .name {
409
+ margin: 0px;
410
+ }
411
+
412
+ .experience-item .timeline {
413
+ float: left;
414
+ width: 24px;
415
+ margin-right: 8px;
416
+ text-align: center;
417
+ }
418
+
419
+ .experience-item .timeline .dot {
420
+ color: var(--mdc-theme-primary-variant);
421
+ font-size: 24px;
422
+ position: relative;
423
+ z-index: 2;
424
+ }
425
+
426
+ .experience-item .timeline .bar {
427
+ background-image: linear-gradient(to bottom, var(--mdc-theme-primary-variant) 0%, var(--mdc-theme-primary-variant) 100%), radial-gradient(circle at top left, var(--mdc-theme-primary-variant), var(--mdc-theme-primary-variant));
428
+ width: 2px;
429
+ position: absolute;
430
+ top: 20px;
431
+ bottom: -20px;
432
+ left: 11px;
433
+ z-index: 1;
434
+ }
435
+
436
+ .experience-item .timeline .bar-expanded {
437
+ background-color: var(--mdc-theme-primary-variant);
438
+ width: 28px;
439
+ height: 2px;
440
+ position: absolute;
441
+ top: 18px;
442
+ left: -18px;
443
+ z-index: 100;
444
+ }
445
+
446
+ /******************************************************************************/
447
+ /* Projects Section */
448
+ /******************************************************************************/
449
+ .portfolio {
450
+ width: 100%;
451
+ height: 100%;
452
+ margin: 0;
453
+ padding: 0;
454
+ min-height: 100vh;
455
+ }
456
+
457
+ .portfolio .filters {
458
+ display: inline-block;
459
+ }
460
+
461
+ .portfolio .filters li {
462
+ font-size: 10px;
463
+ font-weight: 500;
464
+ text-transform: uppercase;
465
+ cursor: pointer;
466
+ }
467
+
468
+ .portfolio .grid {
469
+ margin: auto;
470
+ }
471
+
472
+ .portfolio .grid .portfolio-item {
473
+ display: inline-block;
474
+ width: 128px;
475
+ border-radius: var(--card-radius);
476
+ margin: 8px;
477
+ }
478
+
479
+ .portfolio .grid .portfolio-item .project-icon {
480
+ background-color: var(--mdc-theme-background);
481
+ }
482
+
483
+ .portfolio .grid .portfolio-item .project-icon .overlay {
484
+ position: absolute;
485
+ left: 0;
486
+ top: 0;
487
+ height: 100%;
488
+ width: 100%;
489
+ -webkit-transition: all 0.4s ease 0s;
490
+ -moz-transition: all 0.4s ease 0s;
491
+ -o-transition: all 0.4s ease 0s;
492
+ transition: all 0.4s ease 0s;
493
+ }
494
+
495
+ .portfolio .grid .portfolio-item .project-icon:focus .overlay,
496
+ .portfolio .grid .portfolio-item .project-icon:hover .overlay {
497
+ background-color: var(--mdc-theme-overlay);
498
+ }
499
+
500
+ .portfolio .grid .mdc-card {
501
+ border-radius: 16px;
502
+ }
503
+
504
+ .portfolio .grid .portfolio-item .project-details {
505
+ color: var(--mdc-theme-on-surface);
506
+ padding: 0px;
507
+ text-align: center;
508
+ }
509
+
510
+ .portfolio .grid .portfolio-item .project-details strong {
511
+ margin-top: 4px;
512
+ font-size: 11pt;
513
+ display: -webkit-box;
514
+ -webkit-line-clamp: 1;
515
+ -webkit-box-orient: vertical;
516
+ overflow: hidden;
517
+ text-overflow: ellipsis;
518
+ }
519
+
520
+ .portfolio .grid .portfolio-item .project-details small {
521
+ font-size: 10pt;
522
+ display: -webkit-box;
523
+ -webkit-line-clamp: 1;
524
+ -webkit-box-orient: vertical;
525
+ opacity: 0.5;
526
+ overflow: hidden;
527
+ text-overflow: ellipsis;
528
+ }
529
+
530
+ .bottom-navigation {
531
+ background: var(--mdc-theme-surface);
532
+ -moz-box-shadow: 0px -1px 2px var(--mdc-theme-shadow);
533
+ -webkit-box-shadow: 0px -1px 2px var(--mdc-theme-shadow);
534
+ box-shadow: 0px -1px 2px var(--mdc-theme-shadow);
535
+ display: none;
536
+ position: fixed;
537
+ width: 100%;
538
+ height: 48px;
539
+ bottom: 0;
540
+ left: 0;
541
+ right: 0;
542
+ }
543
+
544
+ .hide-when-small {
545
+ display: block;
546
+ }
547
+
548
+ @media (max-width: 1024px) {
549
+ .portfolio .grid .portfolio-item {
550
+ width: 112px;
551
+ }
552
+ }
553
+
554
+ @media (max-width: 930px) {
555
+ .portfolio .grid .portfolio-item {
556
+ width: 96px;
557
+ }
558
+ }
559
+
560
+ @media (max-width: 840px) {
561
+ .portfolio .subtitle,
562
+ .portfolio hr.small {
563
+ display: none;
564
+ }
565
+
566
+ .portfolio .grid {
567
+ margin: auto;
568
+ margin-bottom: 0;
569
+ }
570
+
571
+ .portfolio .grid .portfolio-item {
572
+ width: 88px;
573
+ }
574
+
575
+ .bottom-navigation {
576
+ display: block;
577
+ }
578
+
579
+ .hide-when-small {
580
+ display: none;
581
+ }
582
+
583
+ .portfolio > section {
584
+ margin-bottom: 0 !important;
585
+ }
586
+ }
587
+
588
+ @media (max-width: 360px) {
589
+ .portfolio .grid .portfolio-item {
590
+ width: 80px;
591
+ }
592
+ }
593
+
594
+ @media (max-width: 320px) {
595
+ .portfolio .grid .portfolio-item {
596
+ width: 72px;
597
+ }
598
+ }
599
+
600
+ @media (max-width: 296px) {
601
+ .portfolio .grid .portfolio-item {
602
+ width: 64px;
603
+ }
604
+ }
605
+
606
+ @media (max-width: 272px) {
607
+ .portfolio .grid .portfolio-item {
608
+ width: 56px;
609
+ }
610
+ }
611
+
612
+ @media (max-width: 840px) {
613
+ .about-section {
614
+ min-height: 300px;
615
+ }
616
+
617
+ .about-section .about-summary {
618
+ margin-top: 0;
619
+ }
620
+
621
+ .about-section .about-summary h3 {
622
+ font-size: 30px;
623
+ }
624
+
625
+ .about-section .about-summary p br {
626
+ display: none;
627
+ }
628
+
629
+ .about-section .about-summary h3 span {
630
+ line-height: 45px;
631
+ padding-bottom: 0;
632
+ padding-top: 0;
633
+ }
634
+ }
635
+
636
+ @media (max-width: 600px) {
637
+ .about-section .about-summary h2 {
638
+ font-size: 28px;
639
+ line-height: 38px;
640
+ }
641
+
642
+ .about-section {
643
+ min-height: 450px;
644
+ }
645
+
646
+ .about-section .about-summary img {
647
+ display: none;
648
+ }
649
+
650
+ .about-section .about-summary h5 {
651
+ margin-top: 0;
652
+ }
653
+ }
654
+
655
+ @media (max-width: 320px) {
656
+ .about-section .about-summary {
657
+ padding: 30px 15px;
658
+ margin-top: 0;
659
+ }
660
+
661
+ .about-section .about-summary h3 {
662
+ font-size: 24px;
663
+ }
664
+ }
665
+
666
+ /* embed responsively (YouTube vidoes) */
667
+ .embed-container {
668
+ position: relative;
669
+ padding-bottom: 56.25%;
670
+ height: 0;
671
+ overflow: hidden;
672
+ max-width: 100%;
673
+ width: 100%;
674
+ border-radius: 8px;
675
+ }
676
+
677
+ .embed-container iframe,
678
+ .embed-container object,
679
+ .embed-container embed {
680
+ position: absolute;
681
+ top: 0;
682
+ left: 0;
683
+ width: 100%;
684
+ height: 100%;
685
+ }
686
+
687
+ .callout {
688
+ font-size: 24px;
689
+ font-weight: bolder;
690
+ text-transform: uppercase;
691
+ }
692
+
693
+ .highlighted {
694
+ background-color: var(--mdc-theme-overlay);
695
+ border-radius: 4px;
696
+ }
697
+
698
+ .mdc-drawer .mdc-list-item {
699
+ padding: 4px 8px;
700
+ }
701
+
702
+ .mdc-drawer .mdc-list-item--activated {
703
+ border-radius: 2px 16px 16px 2px;
704
+ }
705
+
706
+ .page-cover {
707
+ position: relative;
708
+ border-radius: 8px;
709
+ width: 100%;
710
+ height: 320px;
711
+ background-size: cover;
712
+ background-position: center center;
713
+ background-repeat: no-repeat;
714
+ margin-bottom: var(--content-padding);
715
+ }
716
+
717
+ .page-cover::after {
718
+ content: '';
719
+ position: absolute;
720
+ left: 0;
721
+ right: 0;
722
+ bottom: 0;
723
+ top: 0;
724
+ background: linear-gradient(#0000, #0008);
725
+ z-index: 1;
726
+ }
727
+
728
+ .align-bottom {
729
+ width: 100%;
730
+ padding: 8px 8px 0 8px;
731
+ position: absolute;
732
+ bottom: -32px;
733
+ left: 0;
734
+ z-index: 2;
735
+ }
736
+
737
+ .align-bottom .project-title,
738
+ .align-bottom .project-type,
739
+ .align-bottom .mdc-icon-button {
740
+ color: #fff !important;
741
+ }
742
+
743
+ .align-bottom .mdc-icon-button:hover,
744
+ .align-bottom .mdc-icon-button:focus {
745
+ color: var(--mdc-theme-background) !important;
746
+ }
747
+
748
+ .project-summary {
749
+ display: inline-block;
750
+ }
751
+
752
+ .project-summary>* {
753
+ float: left;
754
+ }
755
+
756
+ .project-logo {
757
+ border-radius: 8px;
758
+ margin-right: 16px;
759
+ height: 80px;
760
+ width: 80px;
761
+ font-size: 80px;
762
+ line-height: 80px;
763
+ }
764
+
765
+ .project-logo-featured {
766
+ border-radius: 8px;
767
+ margin-right: 12px;
768
+ height: 64px;
769
+ width: 64px;
770
+ font-size: 64px;
771
+ line-height: 64px;
772
+ }
773
+
774
+ .project-title {
775
+ padding: 0;
776
+ margin: 0;
777
+ }
778
+
779
+ .project-tags {
780
+ display: block;
781
+ margin-bottom: 4px;
782
+ }
783
+
784
+ .project-tag {
785
+ display: inline-block;
786
+ background-color: var(--mdc-theme-background);
787
+ border-radius: 16px;
788
+ color: var(--mdc-theme-on-surface);
789
+ font-size: 10px;
790
+ font-weight: bold;
791
+ padding: 2px 8px;
792
+ text-transform: uppercase;
793
+ }
794
+
795
+ .project-tag .material-icons {
796
+ font-size: 10px;
797
+ margin-right: 4px;
798
+ vertical-align: middle;
799
+ }
800
+
801
+ .project-type, .project-type * {
802
+ color: gray;
803
+ font-size: 14px;
804
+ font-weight: bold;
805
+ vertical-align: middle;
806
+ }
807
+
808
+ .project-portfolio-img {
809
+ border-radius: 8px;
810
+ width: 100%;
811
+ }
812
+
813
+ .mdc-data-table {
814
+ width: 100%;
815
+ max-width: 100%;
816
+ }
817
+
818
+ pwa-install {
819
+ --install-button-color: var(--mdc-theme-primary);
820
+ }
821
+
822
+ pwa-install::part(openButton) {
823
+ background-color: #0000;
824
+ width: 40px;
825
+ height: 40px;
826
+ border-radius: 24px;
827
+ }
828
+
829
+ pwa-install * {
830
+ color: var(--mdc-theme-on-surface) !important;
831
+ vertical-align: middle;
832
+ }
833
+
834
+ pwa-install:hover * {
835
+ color: var(--mdc-theme-primary) !important;
836
+ }
837
+
838
+ .mdc-snackbar {
839
+ z-index: 99999;
840
+ }
841
+
842
+ .mdc-snackbar__surface::before {
843
+ content: '';
844
+ position: absolute;
845
+ top: 0;
846
+ left: 0;
847
+ bottom: 0;
848
+ right: 0;
849
+ }
850
+
851
+ /* Print Styles */
852
+ @media print {
853
+
854
+ .mdc-top-app-bar,
855
+ .breadcrumbs,
856
+ footer {
857
+ display: none;
858
+ }
859
+
860
+ .main-content {
861
+ margin: 0;
862
+ padding: 0;
863
+ }
864
+
865
+ article section {
866
+ page-break-inside: avoid;
867
+ }
868
+ }
869
+
870
+ ul.downloads {
871
+ list-style:none;
872
+ height:40px;
873
+ padding:0;
874
+ background: #f4f4f4;
875
+ border-radius:5px;
876
+ border:1px solid #e0e0e0;
877
+ width:270px;
878
+ }
879
+
880
+ .downloads li {
881
+ width:89px;
882
+ float:left;
883
+ border-right:1px solid #e0e0e0;
884
+ height:40px;
885
+ }
886
+
887
+ .downloads li:first-child a {
888
+ border-radius:5px 0 0 5px;
889
+ }
890
+
891
+ .downloads li:last-child a {
892
+ border-radius:0 5px 5px 0;
893
+ }
894
+
895
+ .downloads a {
896
+ line-height:1;
897
+ font-size:11px;
898
+ color:#676767;
899
+ display:block;
900
+ text-align:center;
901
+ padding-top:6px;
902
+ height:34px;
903
+ }
904
+
905
+ .downloads a:hover, .downloads a:focus {
906
+ color:#675C5C;
907
+ font-weight:bold;
908
+ }
909
+
910
+ .downloads ul a:active {
911
+ background-color:#f0f0f0;
912
+ }
913
+
914
+ .downloads li + li + li {
915
+ border-right:none;
916
+ width:89px;
917
+ }
918
+
919
+ .downloads a strong {
920
+ font-size:14px;
921
+ display:block;
922
+ color:#222;
923
+ }
924
+
925
+ @media print, screen and (max-width: 480px) {
926
+ .downloads {
927
+ width:99%;
928
+ }
929
+
930
+ .downloads li, .downloads li + li + li {
931
+ width:33%;
932
+ }
933
+ }
934
+
935
+
936
+ /* Blog styles */
937
+ .post-container {
938
+ border: 1px solid var(--mdc-theme-overlay);
939
+ border-radius: 8px;
940
+ padding: 8px;
941
+ width: 100%;
942
+ min-height: 240px;
943
+ }
944
+
945
+ .post {
946
+ display: flex;
947
+ width: 100%;
948
+ }
949
+
950
+ .post-container:nth-of-type(odd) .post {
951
+ flex-direction: row-reverse;
952
+ }
953
+
954
+ .post-img {
955
+ margin-right: 8px;
956
+ border-radius: 8px;
957
+ width: 50%;
958
+ min-height: 240px;
959
+ height: 100%;
960
+ background-position: center center;
961
+ background-repeat: no-repeat;
962
+ background-size: cover;
963
+ }
964
+
965
+ .post-container:nth-of-type(odd) .post .post-img {
966
+ margin-left: 8px;
967
+ margin-right: 0;
968
+ flex-direction: row-reverse;
969
+ }
970
+
971
+ .post-details {
972
+ width: 50%;
973
+ text-align: center;
974
+ }
975
+
976
+ .post-date {
977
+ font-size: 10pt !important;
978
+ text-transform: uppercase;
979
+ }
980
+
981
+ .post-title {
982
+ font-size: 16pt;
983
+ font-weight: bold;
984
+ margin: 8px 0;
985
+ }
986
+
987
+ .post-excerpt {
988
+ overflow: hidden;
989
+ display: -webkit-box;
990
+ -webkit-line-clamp: 3;
991
+ -webkit-box-orient: vertical;
992
+ }
993
+
994
+ @media (max-width: 840px) {
995
+ .post {
996
+ display: block;
997
+ }
998
+
999
+ .post-img {
1000
+ margin-left: 0 !important;
1001
+ margin-right: 0;
1002
+ width: 100%;
1003
+ }
1004
+
1005
+ .post-details {
1006
+ width: 100%;
1007
+ }
1008
+ }