discord-sandboxed/css/style.css

85 lines
1.3 KiB
CSS
Raw Normal View History

2019-10-07 06:54:38 +00:00
html, body{
width:100%;
height:100%;
margin:0px;
padding: 0;
overflow: hidden;
2019-10-15 06:21:54 +00:00
font-family: 'Roboto', sans-serif;
2019-10-07 06:54:38 +00:00
}
div {
width:100%;
2019-10-15 06:21:54 +00:00
height:97%;
2019-10-07 06:54:38 +00:00
}
webview {
height:100%;
2019-10-15 06:21:54 +00:00
height:97%;
2019-10-07 06:54:38 +00:00
}
::-webkit-scrollbar {
display: none;
2019-10-15 06:21:54 +00:00
}
.title-bar {
-webkit-app-region: drag;
margin: 0;
display: flex;
2019-10-19 04:30:26 +00:00
background-color: #212226;
2019-10-15 06:21:54 +00:00
width: 100%;
height: 3%;
}
.menu-button-container {
2019-10-19 04:30:26 +00:00
background-color: #212226;
2019-10-15 06:21:54 +00:00
display: flex;
align-items: center;
flex-grow: 1;
}
.status {
2019-10-19 04:30:26 +00:00
background-color: #212226;
2019-10-15 06:21:54 +00:00
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
}
.window-controls-container {
2019-10-19 04:30:26 +00:00
background-color: #212226;
2019-10-15 06:21:54 +00:00
display: flex;
justify-content: flex-end;
align-items: center;
flex-grow: 1;
}
.minimize-button {
border:none;
color: #FFFFFF;
-webkit-app-region: no-drag;
background-color: transparent;
margin: 1px;
width: 20px;
height: 20px;
}
.minimize-button:hover {
background-color: #99AAB5;
}
.close-button {
border:none;
color: #FFFFFF;
-webkit-app-region: no-drag;
background-color: transparent;
margin: 1px;
margin-right: 3px;
width: 20px;
height: 20px;
}
.close-button:hover {
background-color: #B22222;
2019-10-07 06:54:38 +00:00
}