From 13eae49f4c48c03b2a7a9b40a08ca68063044c6d Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Tue, 20 Jan 2015 17:37:10 +0100 Subject: rename subprojects --- vfd-backend/.gitignore | 26 - vfd-backend/app/controllers/Application.scala | 28 - vfd-backend/app/plugins/UavClientConnection.scala | 33 - vfd-backend/app/plugins/UavPlugin.scala | 47 - vfd-backend/app/views/main.scala.html | 52 - vfd-backend/app/views/uav.scala.html | 37 - vfd-backend/conf/application.conf | 87 -- vfd-backend/conf/play.plugins | 1 - vfd-backend/conf/routes | 11 - vfd-backend/public/audio/alarm.mp3 | Bin 204029 -> 0 bytes vfd-backend/public/audio/alarm.ogg | Bin 138838 -> 0 bytes vfd-backend/public/fonts/DIGITAL.TXT | 40 - vfd-backend/public/fonts/DS-DIGIB.TTF | Bin 24896 -> 0 bytes vfd-backend/public/fonts/DS-DIGII.TTF | Bin 24676 -> 0 bytes vfd-backend/public/fonts/DS-DIGIT.TTF | Bin 25480 -> 0 bytes vfd-backend/public/fonts/ds-digi.ttf | Bin 24448 -> 0 bytes .../public/images/instruments/altimeter.svg | 1292 -------------------- vfd-backend/public/images/instruments/balance.svg | 169 --- vfd-backend/public/images/instruments/bar.svg | 144 --- vfd-backend/public/images/instruments/compass.svg | 1034 ---------------- vfd-backend/public/images/instruments/distance.svg | 218 ---- vfd-backend/public/images/instruments/generic.svg | 314 ----- vfd-backend/public/images/instruments/generic2.svg | 1063 ---------------- vfd-backend/public/images/instruments/horizon.svg | 569 --------- vfd-backend/public/images/leds/green-off.svg | 283 ----- vfd-backend/public/images/leds/green-on.svg | 283 ----- vfd-backend/public/images/leds/led.svg | 293 ----- vfd-backend/public/images/leds/none.svg | 284 ----- vfd-backend/public/images/leds/red-off.svg | 284 ----- vfd-backend/public/images/leds/red-on.svg | 284 ----- vfd-backend/public/images/leds/yellow-on.svg | 284 ----- vfd-backend/public/images/logo-invert.svg | 94 -- vfd-backend/public/images/logo.svg | 87 -- vfd-backend/public/stylesheets/main.css | 55 - 34 files changed, 7396 deletions(-) delete mode 100644 vfd-backend/.gitignore delete mode 100644 vfd-backend/app/controllers/Application.scala delete mode 100644 vfd-backend/app/plugins/UavClientConnection.scala delete mode 100644 vfd-backend/app/plugins/UavPlugin.scala delete mode 100644 vfd-backend/app/views/main.scala.html delete mode 100644 vfd-backend/app/views/uav.scala.html delete mode 100644 vfd-backend/conf/application.conf delete mode 100644 vfd-backend/conf/play.plugins delete mode 100644 vfd-backend/conf/routes delete mode 100644 vfd-backend/public/audio/alarm.mp3 delete mode 100644 vfd-backend/public/audio/alarm.ogg delete mode 100644 vfd-backend/public/fonts/DIGITAL.TXT delete mode 100644 vfd-backend/public/fonts/DS-DIGIB.TTF delete mode 100644 vfd-backend/public/fonts/DS-DIGII.TTF delete mode 100644 vfd-backend/public/fonts/DS-DIGIT.TTF delete mode 100644 vfd-backend/public/fonts/ds-digi.ttf delete mode 100644 vfd-backend/public/images/instruments/altimeter.svg delete mode 100644 vfd-backend/public/images/instruments/balance.svg delete mode 100644 vfd-backend/public/images/instruments/bar.svg delete mode 100644 vfd-backend/public/images/instruments/compass.svg delete mode 100644 vfd-backend/public/images/instruments/distance.svg delete mode 100644 vfd-backend/public/images/instruments/generic.svg delete mode 100644 vfd-backend/public/images/instruments/generic2.svg delete mode 100644 vfd-backend/public/images/instruments/horizon.svg delete mode 100644 vfd-backend/public/images/leds/green-off.svg delete mode 100644 vfd-backend/public/images/leds/green-on.svg delete mode 100644 vfd-backend/public/images/leds/led.svg delete mode 100644 vfd-backend/public/images/leds/none.svg delete mode 100644 vfd-backend/public/images/leds/red-off.svg delete mode 100644 vfd-backend/public/images/leds/red-on.svg delete mode 100644 vfd-backend/public/images/leds/yellow-on.svg delete mode 100644 vfd-backend/public/images/logo-invert.svg delete mode 100644 vfd-backend/public/images/logo.svg delete mode 100644 vfd-backend/public/stylesheets/main.css (limited to 'vfd-backend') diff --git a/vfd-backend/.gitignore b/vfd-backend/.gitignore deleted file mode 100644 index 1d1f507..0000000 --- a/vfd-backend/.gitignore +++ /dev/null @@ -1,26 +0,0 @@ -# sbt -.cache -.history/ -.lib/ -dist/* -target/ -lib_managed/ -src_managed/ -project/boot/ -project/plugins/project/ - -# scala-ide specific -/.settings -/.scala_dependencies -/.project -/.classpath -/.cache -/.history - -# general files -/*.jar -*.swp -*.class -*.log -*~ -/bin/ diff --git a/vfd-backend/app/controllers/Application.scala b/vfd-backend/app/controllers/Application.scala deleted file mode 100644 index 827950e..0000000 --- a/vfd-backend/app/controllers/Application.scala +++ /dev/null @@ -1,28 +0,0 @@ -package controllers - -import util._ -import play.api._ -import play.api.mvc._ -import play.api.Play.current -import play.api.mvc.WebSocket.FrameFormatter - -import play.api.libs.json._ -import plugins.UavPlugin - -object Application extends Controller { - - private def plugin = current.plugin[UavPlugin].getOrElse(throw new RuntimeException("UAV plugin is not available")) - - def index = Action { implicit request => - Redirect(routes.Application.uav(0)) - } - - def uav(remoteSystemId: Int) = Action { implicit request => - Ok(views.html.uav(routes.Application.mavlink.webSocketURL(), remoteSystemId.toByte, plugin.systemId, 0.toByte)) - } - - def mavlink = WebSocket.acceptWithActor[Array[Byte], Array[Byte]] { implicit request => - out => plugin.register(out) - } - -} \ No newline at end of file diff --git a/vfd-backend/app/plugins/UavClientConnection.scala b/vfd-backend/app/plugins/UavClientConnection.scala deleted file mode 100644 index 76975e1..0000000 --- a/vfd-backend/app/plugins/UavClientConnection.scala +++ /dev/null @@ -1,33 +0,0 @@ -package plugins - -import akka.actor.Actor -import akka.actor.ActorLogging -import akka.actor.ActorRef -import akka.actor.actorRef2Scala -import vfd.uav.Connection -import akka.util.ByteString - -/** - * Interfaces traffic from a websocket with a connection to a UAV. - */ -class UavClientConnection(websocket: ActorRef, uav: ActorRef) extends Actor with ActorLogging { - - override def preStart = { - uav ! Connection.Register - } - - def receive = { - - case Connection.Received(bstr) => - websocket ! bstr.toArray - - case Connection.Closed(msg) => - log.warning(msg) - context stop self - - case fromClient: Array[Byte] => - uav ! Connection.Send(ByteString(fromClient)) - - } - -} \ No newline at end of file diff --git a/vfd-backend/app/plugins/UavPlugin.scala b/vfd-backend/app/plugins/UavPlugin.scala deleted file mode 100644 index 9b45627..0000000 --- a/vfd-backend/app/plugins/UavPlugin.scala +++ /dev/null @@ -1,47 +0,0 @@ -package plugins - -import akka.actor.ActorRef -import akka.actor.Props -import play.api.Application -import play.api.Plugin -import play.api.libs.concurrent.Akka -import vfd.uav.MockConnection -import vfd.uav.SerialConnection - -class UavPlugin(app: Application) extends Plugin { - - private lazy val config = app.configuration.getConfig("uav") - - lazy val systemId = config.flatMap(_.getInt("system_id")).getOrElse(1).toByte - - private lazy val connection = { - val conn = config.flatMap(_.getConfig("connection")) - val tpe = conn.flatMap(_.getString("type")).getOrElse("mock") - val heartbeat = conn.flatMap(_.getInt("heartbeat")).getOrElse(2000) - val compId = conn.flatMap(_.getInt("component_id")).getOrElse(1).toByte - - val props = tpe match { - case "mock" => - val remote = config.flatMap(_.getInt("mock.remote_system_id")).getOrElse(42).toByte - MockConnection(systemId, compId, remote) - - case "serial" => - val serial = config.flatMap(_.getConfig("serial")) - SerialConnection( - systemId, - compId, - heartbeat, - serial.flatMap(_.getString("port")).getOrElse("/dev/ttyUSB0"), - serial.flatMap(_.getInt("baud")).getOrElse(115200), - serial.flatMap(_.getBoolean("two_stop_bits")).getOrElse(false), - serial.flatMap(_.getInt("parity")).getOrElse(0)) - - case unknown => throw new IllegalArgumentException("Unsupported connection type '" + unknown + "'") - } - - Akka.system(app).actorOf(props, name = "uav-connection") - } - - def register(websocket: ActorRef): Props = Props(classOf[UavClientConnection], websocket, connection) - -} \ No newline at end of file diff --git a/vfd-backend/app/views/main.scala.html b/vfd-backend/app/views/main.scala.html deleted file mode 100644 index 1be335b..0000000 --- a/vfd-backend/app/views/main.scala.html +++ /dev/null @@ -1,52 +0,0 @@ -@(title: String, info: String)(content: Html) - - - - - - - - - VFD - @title - - - - - - - -
- -
- - @content - - - - - - - \ No newline at end of file diff --git a/vfd-backend/app/views/uav.scala.html b/vfd-backend/app/views/uav.scala.html deleted file mode 100644 index 0ce7927..0000000 --- a/vfd-backend/app/views/uav.scala.html +++ /dev/null @@ -1,37 +0,0 @@ -@(socket: String, remoteSystemId: Byte, systemId: Byte, componentId: Byte) - -@main("Main", "Remote System " + remoteSystemId){ - - - -
-
- -
-
- - -} - diff --git a/vfd-backend/conf/application.conf b/vfd-backend/conf/application.conf deleted file mode 100644 index c2026a3..0000000 --- a/vfd-backend/conf/application.conf +++ /dev/null @@ -1,87 +0,0 @@ -# This is the main configuration file for the application. -# ~~~~~ - -# Secret key -# ~~~~~ -# The secret key is used to secure cryptographics functions. -# -# This must be changed for production, but we recommend not changing it in this file. -# -# See http://www.playframework.com/documentation/latest/ApplicationSecret for more details. -application.secret="[8DUF73Kj;0t:Y09:Miqn]BRQiHp0R2FRm^jwVD8y>z/kw=ALX[Q8abEYio;n0>a" - -# The application languages -# ~~~~~ -application.langs="en" - -# Global object class -# ~~~~~ -# Define the Global object class for this application. -# Default to Global in the root package. -# application.global=Global - -# Router -# ~~~~~ -# Define the Router object to use for this application. -# This router will be looked up first when the application is starting up, -# so make sure this is the entry point. -# Furthermore, it's assumed your route file is named properly. -# So for an application router like `my.application.Router`, -# you may need to define a router file `conf/my.application.routes`. -# Default to Routes in the root package (and conf/routes) -# application.router=my.application.Routes - -# Database configuration -# ~~~~~ -# You can declare as many datasources as you want. -# By convention, the default datasource is named `default` -# -# db.default.driver=org.h2.Driver -# db.default.url="jdbc:h2:mem:play" -# db.default.user=sa -# db.default.password="" - -# Evolutions -# ~~~~~ -# You can disable evolutions if needed -# evolutionplugin=disabled - -# Logger -# ~~~~~ -# You can also configure logback (http://logback.qos.ch/), -# by providing an application-logger.xml file in the conf directory. - -# Root logger: -logger.root=ERROR - -# Logger used by the framework: -logger.play=INFO - -# Logger provided to your application: -logger.application=DEBUG - -# UAV -# ~~~~~ -# Settings to control the communication with UAVs - -# Mavlink system id identifying this base station -uav.system_id=1 - -# Type of connection to use -# 'mock' or 'serial' -uav.connection.type=mock - -# Mavlink component id used by this connection (not the web frontend), -# in case it needs to inject messages -uav.connection.component_id=1 - -# Delay in milliseconds between heartbeat messages injected by -# the connection -# 0 = no heartbeats injected -uav.connection.heartbeat=2000 - -# Serial connection specific -uav.serial.port="/dev/ttyUSB0" -uav.serial.baud=115200 -uav.serial.two_stop_bits=false -uav.serial.parity=0 \ No newline at end of file diff --git a/vfd-backend/conf/play.plugins b/vfd-backend/conf/play.plugins deleted file mode 100644 index 40c58dd..0000000 --- a/vfd-backend/conf/play.plugins +++ /dev/null @@ -1 +0,0 @@ - 10000:plugins.UavPlugin \ No newline at end of file diff --git a/vfd-backend/conf/routes b/vfd-backend/conf/routes deleted file mode 100644 index 3d38889..0000000 --- a/vfd-backend/conf/routes +++ /dev/null @@ -1,11 +0,0 @@ -# Routes -# This file defines all application routes (Higher priority routes first) -# ~~~~ - -# Home page -GET / controllers.Application.index -GET /uav/:remoteSystemId controllers.Application.uav(remoteSystemId: Int) -GET /mavlink controllers.Application.mavlink - -# Map static resources from the /public folder to the /assets URL path -GET /assets/*file controllers.Assets.at(path="/public", file) diff --git a/vfd-backend/public/audio/alarm.mp3 b/vfd-backend/public/audio/alarm.mp3 deleted file mode 100644 index 97c83d5..0000000 Binary files a/vfd-backend/public/audio/alarm.mp3 and /dev/null differ diff --git a/vfd-backend/public/audio/alarm.ogg b/vfd-backend/public/audio/alarm.ogg deleted file mode 100644 index 19a1717..0000000 Binary files a/vfd-backend/public/audio/alarm.ogg and /dev/null differ diff --git a/vfd-backend/public/fonts/DIGITAL.TXT b/vfd-backend/public/fonts/DIGITAL.TXT deleted file mode 100644 index 484dd47..0000000 --- a/vfd-backend/public/fonts/DIGITAL.TXT +++ /dev/null @@ -1,40 +0,0 @@ -DS-Font's TrueType Fonts -Font name: DS-Digital (Normal, Bold, Italic, Bold Italic), Version 1.0 -Author: Dusit Supasawat -Web Site: http://ds-font.hypermart.net -Contact me: Dusit Supasawat, 325/38 Suksawat32 Ratburana Bangkok Thailand 10140 -Email address: dusit@mailcity.com - -Thanks for trying! We hope you really enjoy this my typeface. This font is -distributed as shareware. You can use this font for a long time as you want. -After all, when you think this font can be usefulness for you. You can send -me some money, that would be way cool. - -I'm only asking $20 US shareware fee per this typeface for personal use. -And $45 US is the usual amount per this typeface for commercial use. - -Distribution: You are free to distribute this archive so long as this text -file is distributed with the archive, the font file have not been modified, -and it is understood that the font's copyright remains with the original -author (Dusit Supasawat). - -To register send your payment to: - -Dusit Supasawat -325/38 Suksawat32 Ratburana -Bangkok Thailand 10140 - -And fill out something as this order form, and send it in with your payment. - -Font name:_________________________________________ -Your information -Name:______________________________________________ -Address:___________________________________________ -City, State : _____________________________________ -Zip Code:__________________________________________ -Country:___________________________________________ -E-MAIL address:____________________________________ - - -You will receive fonts which you order by Email after registration. These fonts -will be generated for you by specify your name in font information. \ No newline at end of file diff --git a/vfd-backend/public/fonts/DS-DIGIB.TTF b/vfd-backend/public/fonts/DS-DIGIB.TTF deleted file mode 100644 index 064ad47..0000000 Binary files a/vfd-backend/public/fonts/DS-DIGIB.TTF and /dev/null differ diff --git a/vfd-backend/public/fonts/DS-DIGII.TTF b/vfd-backend/public/fonts/DS-DIGII.TTF deleted file mode 100644 index 2aae3d8..0000000 Binary files a/vfd-backend/public/fonts/DS-DIGII.TTF and /dev/null differ diff --git a/vfd-backend/public/fonts/DS-DIGIT.TTF b/vfd-backend/public/fonts/DS-DIGIT.TTF deleted file mode 100644 index 65642f9..0000000 Binary files a/vfd-backend/public/fonts/DS-DIGIT.TTF and /dev/null differ diff --git a/vfd-backend/public/fonts/ds-digi.ttf b/vfd-backend/public/fonts/ds-digi.ttf deleted file mode 100644 index 0925877..0000000 Binary files a/vfd-backend/public/fonts/ds-digi.ttf and /dev/null differ diff --git a/vfd-backend/public/images/instruments/altimeter.svg b/vfd-backend/public/images/instruments/altimeter.svg deleted file mode 100644 index 2bfb306..0000000 --- a/vfd-backend/public/images/instruments/altimeter.svg +++ /dev/null @@ -1,1292 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - 0000.00 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - - - - - - ALT - x10 m - - diff --git a/vfd-backend/public/images/instruments/balance.svg b/vfd-backend/public/images/instruments/balance.svg deleted file mode 100644 index 57511e9..0000000 --- a/vfd-backend/public/images/instruments/balance.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/instruments/bar.svg b/vfd-backend/public/images/instruments/bar.svg deleted file mode 100644 index 50ecebf..0000000 --- a/vfd-backend/public/images/instruments/bar.svg +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/instruments/compass.svg b/vfd-backend/public/images/instruments/compass.svg deleted file mode 100644 index 83cf17b..0000000 --- a/vfd-backend/public/images/instruments/compass.svg +++ /dev/null @@ -1,1034 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - N - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 3 - 6 - E - 12 - 15 - S - 21 - 24 - W - 30 - 33 - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/instruments/distance.svg b/vfd-backend/public/images/instruments/distance.svg deleted file mode 100644 index 1f4d6ff..0000000 --- a/vfd-backend/public/images/instruments/distance.svg +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/instruments/generic.svg b/vfd-backend/public/images/instruments/generic.svg deleted file mode 100644 index ac04b60..0000000 --- a/vfd-backend/public/images/instruments/generic.svg +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 100 - 0 - 0 - % - 50 - - - - - diff --git a/vfd-backend/public/images/instruments/generic2.svg b/vfd-backend/public/images/instruments/generic2.svg deleted file mode 100644 index 02e4caa..0000000 --- a/vfd-backend/public/images/instruments/generic2.svg +++ /dev/null @@ -1,1063 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 4 - 5 - 6 - 7 - 8 - 0 - 1 - 2 - 3 - - - - diff --git a/vfd-backend/public/images/instruments/horizon.svg b/vfd-backend/public/images/instruments/horizon.svg deleted file mode 100644 index 363b962..0000000 --- a/vfd-backend/public/images/instruments/horizon.svg +++ /dev/null @@ -1,569 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - 10 - 20 - 30 - 20 - 30 - 10 - 10 - 10 - 20 - 30 - 20 - 30 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/leds/green-off.svg b/vfd-backend/public/images/leds/green-off.svg deleted file mode 100644 index 1c227fd..0000000 --- a/vfd-backend/public/images/leds/green-off.svg +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/leds/green-on.svg b/vfd-backend/public/images/leds/green-on.svg deleted file mode 100644 index c358e3a..0000000 --- a/vfd-backend/public/images/leds/green-on.svg +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/leds/led.svg b/vfd-backend/public/images/leds/led.svg deleted file mode 100644 index 74cc4ff..0000000 --- a/vfd-backend/public/images/leds/led.svg +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/leds/none.svg b/vfd-backend/public/images/leds/none.svg deleted file mode 100644 index 85bc475..0000000 --- a/vfd-backend/public/images/leds/none.svg +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/leds/red-off.svg b/vfd-backend/public/images/leds/red-off.svg deleted file mode 100644 index ecd3ca5..0000000 --- a/vfd-backend/public/images/leds/red-off.svg +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/leds/red-on.svg b/vfd-backend/public/images/leds/red-on.svg deleted file mode 100644 index e7fffea..0000000 --- a/vfd-backend/public/images/leds/red-on.svg +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/leds/yellow-on.svg b/vfd-backend/public/images/leds/yellow-on.svg deleted file mode 100644 index 3b271b0..0000000 --- a/vfd-backend/public/images/leds/yellow-on.svg +++ /dev/null @@ -1,284 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/logo-invert.svg b/vfd-backend/public/images/logo-invert.svg deleted file mode 100644 index eb38e8f..0000000 --- a/vfd-backend/public/images/logo-invert.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/vfd-backend/public/images/logo.svg b/vfd-backend/public/images/logo.svg deleted file mode 100644 index b905aad..0000000 --- a/vfd-backend/public/images/logo.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/vfd-backend/public/stylesheets/main.css b/vfd-backend/public/stylesheets/main.css deleted file mode 100644 index e92cd24..0000000 --- a/vfd-backend/public/stylesheets/main.css +++ /dev/null @@ -1,55 +0,0 @@ -@font-face { - font-family: ds-digi; - src: url('../fonts/ds-digi.ttf') -} - -html { - height: 100%; -} - -body { - height: 100%; -} - -body { - background-color: #e6e6e6; -} - -.loader { - width: 100%; - font-size: 50px; - text-align: center; -} - -.table-instrument { - table-layout: fixed; - width: 100%; -} - -.table-instrument td { - width: 100%; -} - -.heartbeat { - color: rgba(165, 25, 25, 1); - animation: heartbeat 2s linear infinite; -} - -@keyframes heartbeat { - 0% { - transform: scale(1); - } - 7% { - transform: scale(1.3); - } - 14% { - transform: scale(1); - } - 21% { - transform: scale(1.3); - } - 28% { - transform: scale(1); - } -} - -- cgit v1.2.3