HeliosLauncher/app/assets/css/launcher.css

251 lines
4.1 KiB
CSS
Raw Normal View History

2017-08-30 05:27:16 +00:00
@font-face {
font-family: 'Avenir Book';
src: url('../fonts/Avenir.ttc');
}
/* Reset body, html, and div presets. */
body, html, div {
margin: 0px;
padding: 0px;
}
body {
background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
background-size: cover;
}
#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;
}
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
}
#main {
height: calc(100% - 22px);
}
#main > #upper {
height: 75%;
display: flex;
}
#main > #lower {
height: 25%;
}
#main > #upper > #left {
display: inline-flex;
2017-08-30 05:27:16 +00:00
width: 18%;
2017-08-29 20:40:42 +00:00
height: 100%;
2017-08-30 05:27:16 +00:00
justify-content: center;
2017-08-29 20:40:42 +00:00
}
#main > #upper > #content {
display: inline-flex;
2017-08-30 05:27:16 +00:00
width: 62%;
2017-08-29 20:40:42 +00:00
height: 100%;
}
#main > #upper > #right {
display: inline-flex;
2017-08-30 05:27:16 +00:00
width: 20%;
2017-08-29 20:40:42 +00:00
height: 100%;
}
#main > #lower > #top {
height: 50%;
2017-08-30 05:27:16 +00:00
position: relative;
2017-08-29 20:40:42 +00:00
}
#main > #lower > #bottom {
height: 50%;
display: flex;
}
#main > #lower > #bottom > #left {
height: 100%;
width: 50%;
display: inline-flex;
2017-08-30 05:27:16 +00:00
position: relative;
align-items: center;
2017-08-29 20:40:42 +00:00
}
#main > #lower > #bottom > #right {
height: 100%;
width: 50%;
display: inline-flex;
2017-08-30 05:27:16 +00:00
}
#image_seal {
height: 100px;
width: auto;
margin-top: 12px;
border: 2px solid white;
border-radius: 50%;
}
#user_content > #top {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
}
#user_avatar {
border-radius: 50%;
border: 2px solid #cad7e1;
background: rgba(1, 2, 1, 0.5);
height: 70px;
width: auto;
}
#user_text {
margin-right: 15px;
font-family: 'Avenir Book';
font-size: 15px;
color: white;
}
.menu_container {
display: inline-block;
cursor: pointer;
float: right;
margin-right: 22px;
margin-top: 10px;
}
.bar1, .bar2, .bar3 {
width: 30px;
height: 4px;
background-color: #d5d7df;
margin: 6px auto;
transition: 0.4s;
border-radius: 20px;
}
.bar2 {
width: 25px !important;
}
#launch_btn {
background-color: #4f771d;
color: white;
border: none;
height: 32px;
line-height: 32px;
padding-left: 26px;
padding-right: 20px;
font-family: 'Avenir Book';
font-size: 16px;
border-radius: 0px 20px 20px 0px;
}
#launch_btn:focus {
outline: 0px;
}
#main_progress[value] {
height: 32px;
width: 245px;
-webkit-appearance: none;
}
#main_progress[value]:before {
position: absolute;
content: attr(data-label);
color: white;
font-family: 'Avenir Book';
font-size: 15px;
line-height: 32px;
margin-left: 8px;
}
#main_progress[value]::-webkit-progress-bar {
border-radius: 20px 0px 0px 20px;
background-color: black;
}
#main_progress[value]::-webkit-progress-value {
background-color: black;
border-radius: 20px 0px 0px 20px;
background-size: 35px 20px, 100% 100%, 100% 100%;
}
#launch_area_container {
display: flex;
position: absolute;
left: 40px;
top: 32px;
}
.home_btn {
background-color: black;
color: white;
font-family: 'Avenir Book';
border: none;
border-radius: 20px;
font-size: 11px;
height: 20px;
padding: 0px 17px 0px 12px;
line-height: 20px;
}
.home_btn:focus {
outline: 0px;
}
#mojang_btn {
position: absolute;
left: 150px;
}
#mojang_btn:before {
color: #93b253;
content: '\2022 ';
line-height: 20px;
}