style.css (610B)
1 html { 2 background: #000; 3 color: rgb(217, 217, 217); 4 font-family: sans-serif; 5 font-size: large; 6 margin-left: auto; 7 margin-right: auto; 8 margin-top: 30px; 9 max-width: 1050px; 10 padding-bottom: 200px; 11 } 12 a { 13 color: hotpink; 14 text-decoration: none; 15 } 16 a:hover { 17 color: lightblue; 18 text-decoration: underline; 19 } 20 small.date { 21 color: rgb(110, 118, 125); 22 } 23 .entry { 24 background-color: #000; 25 padding: 1em; 26 border-left: 1px solid #333; 27 border-right: 1px solid #333; 28 border-bottom: 1px solid #333; 29 } 30 .entry:first-of-type { 31 border-top: 1px solid #333; 32 } 33 .entry:hover { 34 background: #333; 35 }