X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=992d9eca903717b4c397a414d39daa7acb5c6dd5;hb=8f9304acfc40a83fff845886cfbf32acb45cb67a;hp=d6f421324f24046eb2b9c84a7453dcedd13c1dd2;hpb=c15facff598bdecb498d885aaaa1dfd56b4a41ee;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index d6f4213..992d9ec 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -46,13 +46,23 @@ /* Define, load, and specify the custom font we use for the ticket * date, time, and service name. */ @font-face { - font-family: "CharmBypass Ticket Text"; + font-family: "CharmBypass Regular"; src: - url("data:font/woff2;base64,@TICKETFONT@") format("woff2") + url("data:font/woff2;base64,@CBPREGULAR@") format("woff2") } #servicename, #tickettime, #ticketdate { - font-family: "CharmBypass Ticket Text" !important; + font-family: "CharmBypass Regular"; + } + + @font-face { + font-family: "CharmBypass Bold"; + src: + url("data:font/woff2;base64,@CBPBOLD@") format("woff2") + } + + #serviceletter { + font-family: "CharmBypass Bold"; } /************************/ @@ -70,7 +80,7 @@ } #bus { - animation: busroll 20s linear infinite; + animation: busroll 23s linear infinite; } @@ -85,7 +95,22 @@ } #tram { - animation: tramroll 15s linear infinite; + animation: tramroll 17s linear infinite; + } + + + /* Tram */ + @keyframes trainroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(100%); + } + } + + #train { + animation: trainroll 11s linear infinite; } @@ -145,6 +170,38 @@ /* The trees move a little faster than the clouds */ animation: treescopypass 30s linear infinite; } + + + /* City skyline */ + @keyframes cityscroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #city { + /* The city moves faster than the clouds but slower + * than the trees */ + animation: cityscroll 35s linear infinite; + } + + @keyframes citycopyscroll { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #citycopy { + /* The city moves faster than the clouds but slower + * than the trees */ + animation: citycopyscroll 35s linear infinite; + }