zeus.ugent.be/content/assets/stylesheets/main.scss

55 lines
956 B
SCSS
Raw Normal View History

2016-07-27 18:27:28 +00:00
$zeus-orange: #FF7F00;
2016-07-28 15:56:33 +00:00
2016-07-27 18:27:28 +00:00
$orange: $zeus-orange;
$primary: $orange;
2016-07-28 15:56:33 +00:00
$link-visited: $orange;
2016-07-18 07:24:24 +00:00
2016-07-20 12:38:50 +00:00
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
2016-07-27 18:27:28 +00:00
$family-sans-serif: 'Open Sans', sans-serif;
2016-07-12 21:14:12 +00:00
2016-07-27 18:27:28 +00:00
@import "old";
@import "../../../node_modules/bulma/bulma";
2016-07-28 15:56:33 +00:00
.fa-inline {
font-size: inherit;
vertical-align: inherit;
}
2016-08-01 19:37:26 +00:00
// Issue 27 archive list styling
.archive_list {
list-style-type: none;
font-family: family-sans-serif;
}
.archive_list > li {
display: inline-block;
position: relative;
padding: 2em;
border: 2px solid darkgrey;
border-radius: 8px;
font-size: 2em;
font-weight:bold;
}
.archive_list > li:hover{
border-color: rgb(66,66,66);
}
.archive_list > li:first-child{
margin-left:15%;
margin-right:25%; // momenteel hard-coded, betere opl zou dynamische herberekening zijn om meer future-proof te zijn
}
.archive_list_ref{
border: 2px solid darkgrey;
}
.archive_list_item{
font-family: family-sans-serif;
}