Kopie van https://gitlab.com/studieverenigingvia/ict/centurion met een paar aanpassingen
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
centurion/frontend/src/index.css

58 lines
933 B

@import '~antd/dist/antd.css';
@font-face {
font-family: 'SourceSansPro';
src: local('SourceSansPro'), url(./SourceSansPro.otf) format('opentype');
}
:root {
--footer-height: 4.5em;
--content-height: calc(100vh - var(--footer-height));
}
body {
background-color: #e5e5e5;
}
.app {
font-family: 'SourceSansPro', sans-serif;
}
.feed {
max-height: var(--content-height);
overflow: hidden;
padding: 0.5em;
}
.feed-item {
background-color: whitesmoke;
padding: 0.5em;
margin-bottom: 1em;
min-height: 5em;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
border-radius: 2px;
}
.content {
padding: 1rem;
height: var(--content-height)
}
.via-logo {
width: auto;
height: 4em;
}
.sider {
text-align: center;
}
h1 {
min-height: 3em;
}
footer {
border-top: 1px solid lightgray;
padding: 0.25em 0.5em;
height: 4.5em;
}