$link-color: #07C; $link-hover-color: #3af; @import "../../milligram/src/milligram"; body { font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; color: #111; } pre > code { white-space: pre-wrap; } .question { position: relative; display: flex; flex-direction: row; padding: 15px 5px 30px; border-bottom: solid lightgray 1px; border-right: solid 10px; .questionbox { margin-left: 10px; .sitename { position: absolute; font-size: 10px; color: grey; right: 5px; &:hover { text-decoration: underline; } } .date{ position: absolute; right: 5px; bottom: 5px; font-size: 12px; color: grey; } } .title { font-size: 20px; color: $link-color; &:hover { color: $link-hover-color; } } .vote { width: 30px; display: flex; flex-direction: column; div { text-align: center; margin: 10px 0; } a { font-size: 20px; width: 0; height: 0; border-style: solid; cursor: pointer; } .up { border-width: 0 15px 15px 15px; border-color: transparent transparent #858c93 transparent; } .down { border-width: 15px 15px 0 15px; border-color: #858c93 transparent transparent transparent; } } }