4
0
mirror of https://github.com/AltarikMC/Launcher synced 2025-01-19 14:59:35 +01:00
Launcher/src/client/assets/css/menubar.css

76 lines
1.0 KiB
CSS
Raw Normal View History

2021-03-28 20:21:55 +02:00
*, *::after, *::before {
user-select: none;
2021-03-28 20:21:55 +02:00
-webkit-user-select: none;
/*-webkit-user-drag: none; */
}
2021-03-22 21:17:43 +01:00
#menubar {
position:fixed;
top:0;
left:0;
width:100%;
height:28px;
background-color:rgb(37, 37, 37);
color:white;
cursor: move;
-webkit-app-region: drag;
user-select: none;
-webkit-user-select: none;
2021-03-22 21:17:43 +01:00
z-index: 100;
}
2021-03-28 20:21:55 +02:00
#menubar ul {
margin:0;
padding:0;
}
#menubar .left{
float:left;
}
.left > img {
padding-left: 15px;
height: 28px;
width: auto;
}
#menubar .right{
float: right;
-webkit-app-region: no-drag;
}
#menubar .right li,
#menubar .left li {
display: inline-block;
height:28px;
}
#menubar .right li:hover,
#menubar .left li:hover {
cursor: pointer;
}
#minimize-btn:hover,
#max-unmax-btn:hover{
background-color: rgb(55, 55, 55);
transition: 0.3s background-color ease;
}
#close-btn:hover{
background-color:red;
transition: 0.3s background-color ease;
}
.material-icons{
position: relative;
top: 2px;
2021-09-19 17:31:08 +02:00
}
#vue {
width: 100vw;
height: 100vh;
}
.iziToast-wrapper-topRight {
top: 25px;
}