index.css (646B)
1 body { 2 background: #222; 3 color: wheat; 4 background-image: linear-gradient(to bottom, #111, #222); 5 background-size: 2px 2px; 6 /*margin: 0; 7 padding: 0; 8 */ 9 } 10 div { width: 920px; max-width: calc(100% - 20px); margin: auto; } 11 #topmostdiv { 12 box-shadow: 0px -20px 50px -20px #fff; 13 margin: 0 auto; 14 min-height: 100vh; 15 padding: 20px; 16 background-color: #222; 17 } 18 ul { list-style: none; } 19 ul>li:before { content: "\1F4A9"; } 20 a:link { color: springgreen; text-decoration: none; } 21 a:visited { color: cadetblue; text-decoration: none; } 22 a:hover { color: salmon; text-decoration: underline; } 23 a:active { color: red; text-decoration: underline; }