picture-display/src/pictures/static/pictures/style.css

30 lines
498 B
CSS
Raw Normal View History

2021-01-24 16:01:36 +01:00
:root {
--max-width: 750px;
}
2021-01-24 15:43:51 +01:00
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
* {
margin: 0;
padding: 0;
}
main {
margin: 1em auto;
2021-01-24 16:01:36 +01:00
max-width: var(--max-width);
2021-01-24 15:43:51 +01:00
}
2021-01-24 16:01:36 +01:00
.message .metadata .name {
2021-01-24 15:43:51 +01:00
font-size: 120%;
}
2021-01-24 16:01:36 +01:00
.message .metadata .date {
2021-01-24 15:43:51 +01:00
color: #626262;
}
2021-01-24 16:01:36 +01:00
.message .text {
2021-01-24 15:43:51 +01:00
margin-top: 1em;
}