PCv5/app/static/css/homepage.css

26 lines
512 B
CSS
Raw Normal View History

2023-06-20 22:34:06 +02:00
.home-pinned-content {
display: grid;
2023-06-25 01:57:39 +02:00
grid-template-areas: 'banner news''welcome news''shout news''projects projects';
grid-template-rows: minmax(100px,auto)repeat(minmax(200px,auto),2)minmax(100px,auto);
2023-06-20 22:34:06 +02:00
gap: 10px;
2018-02-23 23:34:06 +01:00
}
2023-06-20 22:34:06 +02:00
.home-pinned-content > * {
border: 1px solid red;
2018-02-23 23:34:06 +01:00
}
2023-06-20 22:34:06 +02:00
.home-banner {
2023-06-25 01:57:39 +02:00
grid-area: banner;
2018-02-23 23:34:06 +01:00
}
2023-06-20 22:34:06 +02:00
.home-welcome {
2023-06-25 01:57:39 +02:00
grid-area: welcome;
display: flex;
2023-06-20 22:34:06 +02:00
flex-direction: row;
2018-02-23 23:34:06 +01:00
}
2023-06-20 22:34:06 +02:00
.home-news {
2023-06-25 01:57:39 +02:00
grid-area: news;
2018-02-23 23:34:06 +01:00
}
2023-06-20 22:34:06 +02:00
.home-shoutbox {
2023-06-25 01:57:39 +02:00
grid-area: shout;
2018-02-23 23:34:06 +01:00
}
2023-06-20 22:34:06 +02:00
.home-projects {
2023-06-25 01:57:39 +02:00
grid-area: projects;
}