|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <style> |
| 5 | + body { |
| 6 | + font-family: Georgia, serif; |
| 7 | + max-width: 60em; |
| 8 | + margin: auto; |
| 9 | + padding: 1em; |
| 10 | + } |
| 11 | + |
| 12 | + h1, h2, h3 { |
| 13 | + text-align: center; |
| 14 | + } |
| 15 | + |
| 16 | + figure { |
| 17 | + text-align: center; |
| 18 | + } |
| 19 | + |
| 20 | + p { |
| 21 | + text-align: justify; |
| 22 | + text-indent: 2em; |
| 23 | + } |
| 24 | + |
| 25 | + img { |
| 26 | + width: 100%; |
| 27 | + } |
| 28 | + |
| 29 | + a { |
| 30 | + color: black; |
| 31 | + text-decoration: none; |
| 32 | + font-style: italic; |
| 33 | + } |
| 34 | + |
| 35 | + a:hover { |
| 36 | + color: darkblue; |
| 37 | + text-decoration: underline; |
| 38 | + } |
| 39 | + |
| 40 | + #team-members { |
| 41 | + display: grid; |
| 42 | + grid-template-columns: 1fr 1fr 1fr; |
| 43 | + column-gap: 1em; |
| 44 | + } |
| 45 | + |
| 46 | + #team-members > div { |
| 47 | + overflow: hidden; |
| 48 | + } |
| 49 | + |
| 50 | + #team-members > div > p { |
| 51 | + text-align: center; |
| 52 | + text-indent: 0; |
| 53 | + } |
| 54 | + |
| 55 | + #team-members > div > div { |
| 56 | + display: grid; |
| 57 | + grid-template-columns: 1.5em max-content; |
| 58 | + column-gap: 0.5em; |
| 59 | + place-content: center; |
| 60 | + align-items: center; |
| 61 | + } |
| 62 | + </style> |
| 63 | + </head> |
| 64 | + <body> |
| 65 | + <h1>Digital Etch A Sketch</h1> |
| 66 | + <figure> |
| 67 | + <iframe src="https://drive.google.com/file/d/1Ipk-cZEMz2bkdB5PhEX0tyHs0H4efPDP/preview" width="416" height="349" allow="fullscreen"></iframe> |
| 68 | + <figcaption>Video showcase by Elan Goldman</figcaption> |
| 69 | + </figure> |
| 70 | + <h2>The Team</h2> |
| 71 | + <div id="team-members"> |
| 72 | + <div> |
| 73 | + <h3>Cameron Shaw</h3> |
| 74 | + <img src="./website-media/cameron-shaw.jpg"></img> |
| 75 | + <p>AVR & USB Programming</p> |
| 76 | + <div> |
| 77 | + <img src="https://cameronshaw.me/favicon.ico" alt="Personal Website" title="Personal Website"></img> |
| 78 | + <a href="https://cameronshaw.me">cameronshaw.me</a> |
| 79 | + </div> |
| 80 | + </div> |
| 81 | + <div> |
| 82 | + <h3>Clayton Hickey</h3> |
| 83 | + <img src="./website-media/clayton-hickey.webp"></img> |
| 84 | + <p>Etch A Sketch OS, This Website</p> |
| 85 | + <div> |
| 86 | + <img src="https://claytonhickey.me/favicon.ico" alt="Personal Website" title="Personal Website"></img> |
| 87 | + <a href="https://claytonhickey.me">claytonhickey.me</a> |
| 88 | + </div> |
| 89 | + </div> |
| 90 | + <div> |
| 91 | + <h3>Elan Goldman</h3> |
| 92 | + <img src="./website-media/elan-goldman.png"></img> |
| 93 | + <p>Enclosure Design and Assembly</p> |
| 94 | + <div> |
| 95 | + <img src="./website-media/elan-goldman.png" alt="Personal Website" title="Personal Website"></img> |
| 96 | + <a href="https://Elangoldman.com">Elangoldman.com</a> |
| 97 | + </div> |
| 98 | + </div> |
| 99 | + </div> |
| 100 | + |
| 101 | + <h2>A Full Operating System Configuration In A Single Image</h2> |
| 102 | + <p> |
| 103 | + By utilizing <a href="https://nixos.org">NixOS</a>, we were able to |
| 104 | + </p> |
| 105 | + </body> |
| 106 | +</html> |
0 commit comments