skirda-launcher/src/styles.scss

152 lines
3.0 KiB
SCSS
Raw Normal View History

2022-08-23 19:09:39 +00:00
/* You can add global styles to this file, and also import other style files */
html, body {
2022-08-26 11:34:21 +00:00
margin: 0;
background: url("./assets/6.png") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
font-family: "Poppins-Regular";
color: white;
height: 100%;
}
/*********************************************/
/************** Text Styling *****************/
/*********************************************/
@font-face {
font-family: "Poppins-Regular";
src: url("./assets/Poppins/Poppins-Regular.ttf");
}
@font-face {
font-family: "Poppins-Light";
src: url("./assets/Poppins/Poppins-Light.ttf");
}
@font-face {
font-family: "Poppins-SemiBold";
src: url("./assets/Poppins/Poppins-SemiBold.ttf");
}
2022-08-23 19:09:39 +00:00
2022-08-26 11:34:21 +00:00
.SemiBold {
font-family: "Poppins-SemiBold"
}
.Light {
font-family: "Poppins-Light"
2022-08-23 19:09:39 +00:00
}
2022-08-26 11:34:21 +00:00
/*********************************************/
/************** Main Frame *******************/
/*********************************************/
2022-08-23 19:09:39 +00:00
.container {
2022-08-26 11:34:21 +00:00
display: flex;
height: 100%;
}
#LeftBar {
width: 30%;
display: inline-block;
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
min-width: 350px;
}
#RightBar {
width: 70%;
display: inline-block;
-webkit-backdrop-filter: blur(2px);
backdrop-filter: blur(2px);
padding-left: 20px;
}
/*********************************************/
/************** Default Set ******************/
/*********************************************/
.two-lines-centered {
}
.two-lines-centered > .first-line {
display: flex;
}
.two-lines-centered > .light {
font-size: 12px;
}
.light {
font-family: "Poppins-Light";
}
.label {
color: white;
background-color: rgba(0, 0, 0, 0.3);
border-radius: 6px;
height: min-content;
padding: 0 5px 0 5px;
font-size: 10px;
margin: 5px 0 0 5px;
2022-08-23 19:09:39 +00:00
}
2022-08-26 11:34:21 +00:00
.rounded > img{
border-radius: 50%;
}
.cornering > img {
border-radius: 10px;
}
hr {
border: 1px solid rgba(0, 0, 0, 0.1);
}
/*********************************************/
/************** Profile Bar ******************/
/*********************************************/
2022-08-23 19:09:39 +00:00
2022-08-26 11:34:21 +00:00
.ProfileBar {
display: flex;
padding: 5px 0 0 10px;
margin-bottom: -10px;
height: 60px;
}
.ProfileBar > .two-lines-centered {
margin-top: 4px;
margin-left: 15px;
}
#ProfilePicture {
padding-top: 3px;
}
.first-line > .header {
font-size: 19px;
margin-bottom: -5px;
}
/*********************************************/
/************** Games Bar *******************/
/*********************************************/
#GamesBar {
margin-left: 15px;
}
.GameBar {
display: flex;
margin-top: 13px;
padding: 10px 0 2px 10px;
margin-right: 15px;
}
.GameBar:hover {
background-color: rgba(255, 255, 255, 0.2);
border-radius: 10px;
-webkit-backdrop-filter: drop-shadow(5px 5px 0px #ffffff);
backdrop-filter: drop-shadow(5px 5px 4px #ffffff);
}
.GameBar > .two-lines-centered {
margin-top: 5px;
margin-left: 15px;
}
.SessionCount {
font-size: 13px;
margin: 20px 0 20px 10px;
}
.big {
font-size: calc(+20%);
}