Added new time utility

This commit is contained in:
Louis Hollingworth 2022-05-23 20:37:02 +01:00
parent f2aef2012b
commit 26e91acd9c
No known key found for this signature in database
GPG key ID: 1E66DEA3F5D623D1
10 changed files with 224 additions and 57 deletions

View file

@ -1,2 +1,3 @@
$primary-colour-light: rgb(127, 127, 127);
$bg-colour-light: rgb(187, 187, 187);
$bg-colour-light: rgb(187, 187, 187);
$accent-colour-light: rgb(24, 96, 231);
$filter-accent-colour-light: invert(34%) sepia(96%) saturate(4970%) hue-rotate(216deg) brightness(95%) contrast(91%);

View file

@ -3,17 +3,16 @@
body {
font-family: 'Ubuntu', sans-serif !important;
background-color: colours.$bg-colour-light;
background-color: colours.$bg-colour-light;
}
.container {
min-height: 100vh;
min-height: 80vh;
padding: 0 0.5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.title {

View file

@ -21,7 +21,14 @@
color: #eaeaea;
}
.grid {
.grid-2 {
display: grid;
align-items: center;
justify-content: center;
grid-template-columns: 1fr 1fr;
}
.grid-3 {
display: grid;
align-items: center;
justify-content: center;