Added new time utility
This commit is contained in:
parent
f2aef2012b
commit
26e91acd9c
10 changed files with 224 additions and 57 deletions
|
|
@ -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%);
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue