X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Findex.html.in;h=8d19568f74c3664f8d3dead6a39bb6f60be26053;hb=cbd1fd189b26016347334c3361bcf79da153cb05;hp=ff5410f137a5e1c850d7cc1f7c3706fa3661ad66;hpb=26852d3ce1f4d898501d7047e29c49fbc0f592af;p=charm-bypass.git diff --git a/src/index.html.in b/src/index.html.in index ff5410f..8d19568 100644 --- a/src/index.html.in +++ b/src/index.html.in @@ -46,18 +46,30 @@ /* 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"; } /************************/ /* Scrolling animations */ /************************/ + + /* Bus */ @keyframes busroll { from { transform: translateX(0%); @@ -68,9 +80,11 @@ } #bus { - animation: busroll 20s linear infinite; + animation: busroll 23s linear infinite; } + + /* Tram */ @keyframes tramroll { from { transform: translateX(0%); @@ -81,9 +95,26 @@ } #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; + } + + + /* Clouds */ @keyframes cloudsfloat { from { transform: translateX(0%); @@ -109,6 +140,36 @@ #cloudscopy { animation: cloudscopyfloat 40s linear infinite; } + + + /* Trees */ + @keyframes treespass { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #trees { + /* The trees move a little faster than the clouds */ + animation: treespass 30s linear infinite; + } + + @keyframes treescopypass { + from { + transform: translateX(0%); + } + to { + transform: translateX(-50%); + } + } + + #treescopy { + /* The trees move a little faster than the clouds */ + animation: treescopypass 30s linear infinite; + }