Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 22 additions & 3 deletions airline-web/public/stylesheets/departures.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
// checks if dark-mode or white-mode has been selected, then chooses coloroutput based on selection.
#departuresCanvas .section {
if !dark-mode selected, then
background: #111;
color: #aaa;

background: linear-gradient(to bottom, rgba(18, 16, 16, 0.8) 30%, rgba(15, 14, 14, .8) 100%), url(../images/background/airport-reflection.png);
background-repeat: no-repeat;
background-size:contain;

or if !white-mode selected, then
background: #111;
color: #aaa;

background: linear-gradient(to bottom, rgba(240, 245, 245, 0.8) 30%, rgba(245, 250, 250, .8) 100%), url(../images/background/airport-reflection.png);
background-repeat: no-repeat;
background-size:contain;
}

#departuresCanvas .title {
font-size: 20px;
font-weight: bolder;
color: #dd8;
if !dark-mode selected, then;
color: #FFE500;
or if !white-mode selected, then;
color: #005490;
height: 25px;
}

Expand All @@ -27,11 +40,17 @@
}

.departures div.table-row:nth-child(even) {
background: #111
if !dark-mode selected, then
background: #333
or if !white-mode selected, then
background: #EEE
}

.departures div.table-row:nth-child(odd) {
background: #333
if !dark-mode selected, then
background: #111
or if !white-mode selected, then
background: #DDD
}

.blink {
Expand Down