2021-06-19 20:24:11 +01:00
|
|
|
.home {
|
2021-12-23 13:16:43 +00:00
|
|
|
height: 100%;
|
2021-06-19 20:24:11 +01:00
|
|
|
user-select: none;
|
2021-12-23 18:21:42 +01:00
|
|
|
position: relative;
|
2021-06-19 20:24:11 +01:00
|
|
|
|
2021-12-23 18:21:42 +01:00
|
|
|
.homeScreen {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 95%;
|
|
|
|
padding: 12px;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin: 20px 0;
|
|
|
|
font-size: 48px;
|
|
|
|
text-align: center;
|
2021-06-19 20:24:11 +01:00
|
|
|
|
2021-12-23 18:21:42 +01:00
|
|
|
img {
|
|
|
|
height: 36px;
|
|
|
|
}
|
2021-06-19 20:24:11 +01:00
|
|
|
}
|
|
|
|
|
2021-12-23 18:21:42 +01:00
|
|
|
a {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
2021-08-17 13:52:02 +01:00
|
|
|
|
2021-12-23 18:21:42 +01:00
|
|
|
.actions {
|
|
|
|
//grid-template-columns: repeat(2, 300px);
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
|
|
grid-column: span 2;
|
|
|
|
gap: 16px;
|
|
|
|
//margin: auto;
|
|
|
|
display: grid;
|
|
|
|
width: fit-content;
|
|
|
|
align-items: stretch;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 20px;
|
2021-08-17 13:52:02 +01:00
|
|
|
|
2021-12-23 18:21:42 +01:00
|
|
|
a {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&:nth-child(4) {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-08-17 13:52:02 +01:00
|
|
|
}
|
2021-06-19 20:24:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-light="true"] .home svg {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|