Multi-platform .NET bindings to the Ultralight project.
1<html lang="en"> 2<head> 3 <style type="text/css"> 4 body { 5 margin: 0; 6 padding: 0; 7 overflow: hidden; 8 color: black; 9 font-family: Roboto, sans-serif; 10 background: linear-gradient(-45deg, #acb4ff, #f5d4e2); 11 display: flex; 12 justify-content: center; 13 align-items: center; 14 align-content: center; 15 font-size: 42pt; 16 } 17 18 main { 19 text-align: center; 20 border-radius: 25px; 21 background: linear-gradient(-45deg, #e5eaf9, #f9eaf6); 22 box-shadow: 0 7px 18px -6px #8f8ae1; 23 max-width: 80vw; 24 } 25 26 h1 { 27 display: inline-block; 28 padding: 0; 29 margin: .5rem; 30 font-size: 1.2em; 31 } 32 33 p { 34 display: inline-block; 35 background: white; 36 padding: .4em; 37 margin: 10px; 38 border-radius: 25px; 39 } 40 </style> 41 <title>UltralightSharp Demo</title> 42</head> 43<body> 44<main> 45 <h1>UltralightSharp Demo</h1> 46 <p> 47 Multiplatform<br> 48 <b>C&sharp;</b> Bindings! 49 </p> 50</main> 51</body> 52</html>