221 lines
3.4 KiB
CSS
221 lines
3.4 KiB
CSS
@font-face {
|
|
font-family: SF-Pro;
|
|
src: url("./SF-Pro.ttf");
|
|
font-display: swap;
|
|
}
|
|
|
|
html * {
|
|
font-family: SF-Pro !important MaterialIcons;
|
|
}
|
|
|
|
#settings_logo {
|
|
width: 500px;
|
|
}
|
|
|
|
.command-button {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#header > button {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
#header > button:nth-last-child(1) {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background-color: white;
|
|
color: black;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
-webkit-user-select: none; /* Safari */
|
|
user-select: none; /* Non-prefixed version, currently */
|
|
}
|
|
|
|
#header {
|
|
position: absolute;
|
|
z-index: 1;
|
|
width: 800px;
|
|
top: 10px;
|
|
}
|
|
|
|
#header_nav {
|
|
display: inline-block;
|
|
position:relative;
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
border-radius: 8px;
|
|
padding: 10px;
|
|
top: -30px;
|
|
}
|
|
|
|
#main_tab {
|
|
height: 100%;
|
|
}
|
|
|
|
#main_tab > iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#settings > h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
#wifi-card {
|
|
margin-left: 2%;
|
|
}
|
|
|
|
.demo-card-square.mdl-card {
|
|
width: 320px;
|
|
height: 320px;
|
|
}
|
|
|
|
.demo-card-square > .mdl-card__title {
|
|
color: #fff;
|
|
background: url("../assets/demos/dog.png") bottom right 15% no-repeat #46b6ac;
|
|
}
|
|
|
|
#settings_list {
|
|
margin-left: 2%;
|
|
}
|
|
|
|
#settings > table > tbody > tr > td {
|
|
padding-right: 10px;
|
|
text-align: center;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
#buttons_card > button {
|
|
width: 200px;
|
|
margin: auto;
|
|
}
|
|
|
|
#buttons_card {
|
|
width: 260px;
|
|
}
|
|
|
|
#loading_icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#loading {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
text-align: center;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
/* ATC DATA */
|
|
#header_atc {
|
|
display: inline-block;
|
|
position: relative;
|
|
left: 5px;
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
border-radius: 8px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
#audioControl_CurrentFeedName {
|
|
font-size: 20px;
|
|
margin-left: 15px;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
#audioControl_CurrentFeedStatus {
|
|
font-size: 42px;
|
|
line-height: 8px;
|
|
margin-left: 15px;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
#audioControl_CurrentFeedStatusText {
|
|
margin-left: 5px;
|
|
line-height: 8px;
|
|
font-size: 12px;
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
|
|
#audioControl_CurrentFeedTimeFormatting {
|
|
margin-left: 3px;
|
|
line-height: 8px;
|
|
font-size: 12px;
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
|
|
#sidebar {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: calc(100% - 475px);
|
|
height: calc(100% - 30px);
|
|
width: 450px;
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
border-radius: 8px;
|
|
line-height: 30px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
z-index: 2;
|
|
}
|
|
|
|
.ATC_State {
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
border-radius: 8px;
|
|
width: 90px;
|
|
margin: 15px;
|
|
text-align: center;
|
|
padding: 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.ATC_State_Name {
|
|
font-size: 26px;
|
|
}
|
|
|
|
#ATC_Data {
|
|
overflow: auto;
|
|
max-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#ATC_Data > ul {
|
|
height: calc(100%);
|
|
}
|
|
|
|
#ATC_Data_List {
|
|
margin-top: 0px;
|
|
padding-top: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
#ATC_State_Information {
|
|
margin: 10px 0px 0px 10px;
|
|
}
|
|
|
|
#ATC_Airport_Information {
|
|
margin: 10px 10px 0px 10px;
|
|
}
|
|
|
|
#player {
|
|
display: none;
|
|
} |