HeliosLauncher/app/assets/css/launcher.css

577 lines
13 KiB
CSS
Raw Normal View History

/*******************************************************************************
* *
* Fonts *
* *
******************************************************************************/
2017-08-30 05:27:16 +00:00
@font-face {
font-family: 'Avenir Book';
src: url('../fonts/Avenir.ttc');
}
/*******************************************************************************
* *
* Element Styles *
* *
******************************************************************************/
/* Reset body, html, and div presets. */
body, html, div {
margin: 0px;
padding: 0px;
}
/* Reset p presets. */
p {
-webkit-margin-before: 0em;
-webkit-margin-after: 0em;
}
/*body {
background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
background-size: cover;
}*/
/*******************************************************************************
* *
* Frame Styles (frame.ejs) *
* *
******************************************************************************/
#frame_bar {
-webkit-app-region: drag;
2017-08-29 01:14:05 +00:00
-webkit-user-select: none;
background: rgba(1, 2, 1, 0.5);
min-height: 22px;
display: flex;
align-items: center;
position: relative;
z-index: 10000;
}
2017-08-27 06:24:04 +00:00
#frame_btn_dock {
margin-left: 2px;
}
2017-08-27 06:24:04 +00:00
.frame_btn {
height: 12px;
width: 12px;
border-radius: 50%;
border: 0px;
margin-left: 5px;
2017-08-27 06:24:04 +00:00
-webkit-app-region: no-drag !important;
cursor: pointer;
}
2017-08-27 06:24:04 +00:00
.frame_btn:focus {
outline: 0px;
}
#frame_btn_close {
background-color: #e74c32;
}
2017-08-27 06:24:04 +00:00
#frame_btn_close:hover {
background-color: #FF9A8A;
}
#frame_btn_restoredown {
background-color: #fed045;
}
2017-08-27 06:24:04 +00:00
#frame_btn_restoredown:hover {
background-color: #FFE9A9;
}
#frame_btn_minimize {
background-color: #96e734;
2017-08-27 06:24:04 +00:00
}
#frame_btn_minimize:hover {
background-color: #D6FFA6;
2017-08-29 20:40:42 +00:00
}
/*******************************************************************************
* *
* Login View (login.ejs) *
* *
******************************************************************************/
#login_main {
position: relative;
height: calc(100% - 22px);
width: 100%;
overflow: hidden;
}
#login_filter {
height: calc(100% - 22px);
width: 100%;
z-index: 9000;
position: absolute;
filter: blur(8px) contrast(0.9) brightness(1.0);
background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
transform: scale(1.2);
background-size: cover;
}
#login_container {
height: 100%;
position: relative;
display: flex;
justify-content: center;
z-index: 9001;
}
#login_content {
width: 400px;
display: flex;
flex-direction: column;
align-items: center;
}
#login_image_seal {
height: 150px;
width: auto;
}
.login_section {
display: flex;
flex-direction: column;
align-items: center;
padding: 5px;
}
/* Adds padding between flex children */
.login_section > * {
margin-bottom: 10px;
}
.login_section > *:last-child {
margin-bottom: 0px !important;
}
#login_header_text {
font-family: 'Avenir Book';
color: #ded8cb;
}
#login_links a {
color: #5a534b;
font-family: 'Avenir Book';
font-size: 10px;
text-decoration: none;
}
#login_information input {
background: none;
border: none;
border-top: 2px solid #fff;
}
/*#login_information input[type='password'] {
letter-spacing: 0.3em;
}*/
/*******************************************************************************
* *
* Landing View (Structural Styles) *
* *
******************************************************************************/
/* Main content container. */
2017-08-29 20:40:42 +00:00
#main {
height: calc(100% - 22px);
}
/* Upper content container. */
2017-08-29 20:40:42 +00:00
#main > #upper {
height: 77%;
2017-08-29 20:40:42 +00:00
display: flex;
}
#main > #upper > #left {
display: inline-flex;
width: 15%;
2017-08-29 20:40:42 +00:00
height: 100%;
justify-content: flex-end;
2017-08-29 20:40:42 +00:00
}
#main > #upper > #content {
display: inline-flex;
width: 59%;
2017-08-29 20:40:42 +00:00
height: 100%;
}
#main > #upper > #right {
display: inline-flex;
width: 26%;
2017-08-29 20:40:42 +00:00
height: 100%;
}
/* Lower content container. */
#main > #lower {
height: 23%;
display: flex;
background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
#main > #lower > #left {
height: 100%;
width: 33%;
display: inline-flex;
justify-content: center;
2017-08-29 20:40:42 +00:00
}
#main > #lower > #left #content {
position: relative;
top: 25px;
display: inline-flex;
line-height: 24px;
left: 50px;
2017-08-29 20:40:42 +00:00
}
#main > #lower > #center {
2017-08-29 20:40:42 +00:00
height: 100%;
width: 34%;
2017-08-29 20:40:42 +00:00
display: inline-flex;
justify-content: center;
}
#main > #lower > #center #content {
2017-08-30 05:27:16 +00:00
position: relative;
top: 10px;
2017-08-29 20:40:42 +00:00
}
#main > #lower > #right {
2017-08-29 20:40:42 +00:00
height: 100%;
width: 33%;
2017-08-29 20:40:42 +00:00
display: inline-flex;
2017-08-30 05:27:16 +00:00
}
/*******************************************************************************
* *
* Landing View (Top Styles) *
* *
******************************************************************************/
/* * *
* Landing View (Top Styles) | Left Content
* * */
/* Logo image. */
2017-08-30 05:27:16 +00:00
#image_seal {
height: 70px;
2017-08-30 05:27:16 +00:00
width: auto;
position: relative;
margin-top: 50px;
2017-08-30 05:27:16 +00:00
border: 2px solid white;
border-radius: 50%;
box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
2017-08-30 05:27:16 +00:00
}
/* * *
* Landing View (Bottom Styles) | Right Content
* * */
/* Wrapper container for top, right content. */
#rightContainer {
2017-08-30 05:27:16 +00:00
display: flex;
flex-direction: column;
position: relative;
top: 50px;
align-items: flex-end;
height: calc(100% - 50px);
}
/* Right hand user content container. */
#user_content {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
height: 75px;
2017-08-30 05:27:16 +00:00
}
/* User profile avatar container. */
#avatarContainer {
2017-08-30 05:27:16 +00:00
border-radius: 50%;
border: 2px solid #cad7e1;
background: rgba(1, 2, 1, 0.5);
height: 70px;
width: 70px;
2017-08-30 05:27:16 +00:00
width: auto;
box-shadow: 0px 0px 10px 0px rgb(0, 0, 0);
overflow: hidden;
position: relative;
}
/* Avatar edit overlay. */
#avatarOverlay {
opacity: 0;
position: absolute;
z-index: 1;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Avenir Book';
color: #fff;
transition: 0.25s ease;
font-weight: bold;
letter-spacing: 2px;
background: linear-gradient(65deg, rgba(0, 0, 0, 0.4), rgba(136, 77, 77, 0.4) 60%);
-webkit-user-select: none;
cursor: pointer;
}
#avatarOverlay:hover {
opacity: 1;
}
/* User profile avater image. */
#avatarImage {
height: 100%;
width: auto;
2017-08-30 05:27:16 +00:00
}
/* User profile name text. */
2017-08-30 05:27:16 +00:00
#user_text {
font-family: 'Avenir Book';
font-size: 12px;
min-width: 112px;
font-weight: 900;
letter-spacing: 1px;
2017-08-30 05:27:16 +00:00
color: white;
text-shadow: 0px 0px 20px black;
position: relative;
right: 25px;
text-align: right;
2017-08-30 05:27:16 +00:00
}
/* Social media icon content container. */
#mediaContent {
position: relative;
2017-08-30 05:27:16 +00:00
display: flex;
flex-direction: column;
right: 25px;
align-items: flex-end;
margin-top: 40px;
height: 100%;
align-items: center;
2017-08-30 05:27:16 +00:00
}
/* Social Media Icon division containers. */
#internalMedia, #externalMedia {
display: flex;
flex-direction: column;
2017-08-30 05:27:16 +00:00
}
/* Container object which wraps an icon to ensure fluid transitions. */
.mediaContainer {
display: flex;
justify-content: center;
align-items: center;
height: 27px;
}
/* Divider bar between the external and internal icons. */
.mediaDivider {
height: 1px;
width: 14px;
background: rgb(255, 255, 255);
margin: 10px 0px;
}
/* Social media icon shared styles. */
.mediaSVG {
fill: #ffffff;
height: 12px;
transition: 0.25s ease;
cursor: pointer;
}
.mediaSVG:hover, .mediaSVG:active {
height: 20px;
}
/* Twitter icon colors. */
#twitterSVG:hover {
fill: #1da1f2;
}
#twitterSVG:active {
fill: #1b8dd4;
}
/* Instagram icon colors. */
#instagramSVG:hover {
fill: url('#instaFill')
/*fill: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
}
#instagramSVG:active {
fill: url('#instaFill')
}
/* Youtube icon colors. */
#youtubeSVG:hover {
fill: #f00;
}
#youtubeSVG:active {
fill: #ea0202;
}
/* Discord icon colors. */
#discordSVG:hover {
fill: #7288d9;
}
#discordSVG:active {
fill: #657ac4;
2017-08-30 05:27:16 +00:00
}
/*******************************************************************************
* *
* Landing View (Bottom Styles) *
* *
******************************************************************************/
/* Style for a general label on the bottom of the landing view. */
.bot_label {
color: white;
font-family: 'Avenir Book';
font-size: 9px;
letter-spacing: 1px;
font-weight: bold;
text-shadow: 0px 0px 0px #bebcbb;
}
/* Divider used on the bottom of the landing view. */
.bot_divider {
height: 25px;
width: 2px;
background: rgba(107, 105, 105, 0.7);
margin-left: 20px;
margin-right: 20px;
}
/* * *
* Landing View (Bottom Styles) | Left Content
* * */
/* Span which displays the player count of the selected server. */
#player_count {
color: #949494;
font-family: 'Avenir Book';
font-size: 8px;
font-weight: 900;
text-shadow: 0px 0px 20px #949494;
margin-left: 10px;
}
/* Icon which displays the status of the mojang services. */
#mojang_status_icon {
font-size: 30px;
color: #848484;
margin-left: 15px;
}
/* * *
* Landing View (Bottom Styles) | Center Content
* * */
/* Button which opens the menu view. */
#menu_button {
font-family: 'Avenir Book';
background: none;
border: none;
cursor: pointer;
}
/* Arrow image which floats above the menu button. */
#menu_img {
height: 11px;
margin-left: -2px;
}
/* Span which contains the menu button text. */
#menu_text {
color: white;
font-weight: 900;
letter-spacing: 2px;
text-shadow: 0px 0px 0px #bebcbb;
font-size: 11px;
line-height: 30px;
display: flex;
}
/* * *
* Landing View (Bottom Styles) | Right Content
* * */
/* Main launch content container. */
#main > #lower > #right #launch_content {
position: relative;
top: 25px;
display: inline-flex;
line-height: 24px;
}
/* The launch button. */
#launch_button {
font-family: 'Avenir Book';
background: none;
border: none;
cursor: pointer;
color: #fff;
font-weight: 900;
letter-spacing: 2px;
text-shadow: 0px 0px 0px #bebcbb;
font-size: 20px;
padding: 0px;
}
/* Launch details main container, hidden until launch processing begins. */
#launch_details {
position: relative;
top: 25px;
display: none;
}
/* Left side of launch details container, displays percentage and a divider. */
#launch_details_left {
display: flex;
}
/* Span which displays percentage complete. */
#launch_progress_label {
color: white;
font-family: 'Avenir Book';
font-weight: 900;
letter-spacing: 1px;
text-shadow: 0px 0px 0px #bebcbb;
font-size: 20px;
min-width: 53.21px;
max-width: 53.21px;
text-align: right;
}
/* Right side of launch details container, displays progress bar and details. */
#launch_details_right {
display: flex;
flex-direction: column;
justify-content: center;
}
/* Progress bar styles. */
#launch_progress[value] {
height: 3px;
width: 265px;
-webkit-appearance: none;
}
#launch_progress[value]::-webkit-progress-bar {
background-color: transparent;
}
#launch_progress[value]::-webkit-progress-value {
background-color: #fff;
}
/* Span which displays information about the status of the launch process. */
#launch_details_text {
font-size: 11px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}