Emojis, initial easycal

This commit is contained in:
Ian Gulliver
2020-09-10 15:58:01 +00:00
parent 62dacbda48
commit b82849b6e5
4 changed files with 194 additions and 14 deletions

62
easycal/easycal.css Normal file
View File

@@ -0,0 +1,62 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@500&display=swap');
body {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
display: flex;
flex-direction: column;
background: black;
color: white;
font-family: 'Roboto', sans-serif;
}
#current {
flex-grow: 4;
flex-shrink: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#next {
flex-grow: 1;
flex-shrink: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#currentLeft {
font-family: 'Roboto Mono', monospace;
font-size: 10vmin;
}
#currentName {
text-align: center;
font-size: 15vmin;
mix-blend-mode: difference;
}
#nextTitle {
font-size: 7vmin;
}
#nextName {
text-align: center;
font-size: 10vmin;
}
.event {
color: #e28659;
}
.break {
color: #f9cf41;
}