style.css (1014B)
1 @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap'); 2 3 body { 4 background: #eee; 5 color: #3c3836; 6 } 7 8 body.dark { 9 background: #3c3836; 10 color: #eee; 11 } 12 13 #toggle_dark { 14 background: #3c3836; 15 color: #eee; 16 cursor: pointer; 17 } 18 19 .dark #toggle_dark { 20 background: #eee; 21 color: #3c3836; 22 } 23 24 a { 25 color: inherit; 26 text-decoration: underline; 27 } 28 29 a:hover { 30 font-weight: bold; 31 } 32 33 .title { 34 color: #216477; 35 font-weight: bold; 36 text-decoration: none; 37 font-size: 14pt; 38 } 39 40 .title:hover { 41 text-decoration: underline; 42 } 43 44 .subtitle { 45 color: #216477; 46 text-decoration: underline; 47 } 48 49 .header { 50 font-size: 18pt; 51 } 52 53 .dark a.title, 54 .dark a.header { 55 color: #339cba; 56 } 57 58 #wrapper { 59 width: 80ch; 60 font: 12pt 'Source Code Pro', monospace; 61 margin: 20px auto; 62 white-space: pre; 63 } 64 65 #github { 66 height: 1em; 67 } 68 69 #me { 70 max-width: 100%; 71 } 72 73 #contact-div { 74 display: flex; 75 align-items: flex-start; 76 } 77 78 79 #contact-img { 80 flex-basis: 35%; 81 } 82 83 #contact-text { 84 flex-basis: 65%; 85 padding-right: 20px; 86 }