1
0
Fork 0
mirror of https://github.com/Findus23/se-simulator.git synced 2024-09-19 15:53:45 +02:00
se-simulator/web/static/sass/style.scss
Lukas Winkler d2e7daf331
add server
2018-03-22 22:52:14 +01:00

73 lines
1.3 KiB
SCSS

$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;
}
}
}