overte-HifiExperiments/scripts/system/html/css/miniTablet.css
2018-08-30 13:43:31 +12:00

96 lines
1.6 KiB
CSS

/*
miniTablet.css
Created by David Rowe on 20 Aug 2018.
Copyright 2018 High Fidelity, Inc.
Distributed under the Apache License, Version 2.0.
See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
*/
* {
box-sizing: border-box;
padding: 0;
margin: 0;
user-select: none;
}
html {
background-color: #121212;
}
body {
height: 100%;
}
section {
background-color: #404040;
position: relative;
padding: 13px 9px;
}
.button {
width: 128px;
height: 90px;
margin-top: 10px;
text-align: center;
}
.button:first-child {
margin-top: 0;
}
img {
width: 46px;
}
#mute {
padding-top: 19px;
background-size: 100% 100%;
}
#mute.off {
background-image: url("./img/mt-mute-normal.svg");
}
#mute.off:hover {
background-image: url("./img/mt-mute-hover.svg");
}
#bubble {
padding-top: 19px;
background-size: 100% 100%;
}
#bubble.off {
background-image: url("./img/mt-bubble-i-normal.svg");
}
#bubble.off:hover {
background-image: url("./img/mt-bubble-i-hover.svg");
}
#bubble.on {
background-image: url("./img/mt-bubble-a-normal.svg");
}
#bubble.on:hover {
background-image: url("./img/mt-bubble-a-hover.svg");
}
#expand {
position: absolute;
right: 12px;
bottom: 13px;
width: 40px;
height: 40px;
background-size: 100% 100%;
}
#expand.off {
background-image: url("./img/mt-expand-normal.svg");
}
#expand.off:hover {
background-image: url("./img/mt-expand-hover.svg");
}