overte-HifiExperiments/scripts/system/html/css/miniTablet.css
2018-08-21 08:36:04 +12:00

102 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: 15px;
}
section .button {
width: 100%;
height: 88px;
background-color: #252525;
margin-top: 10px;
text-align: center;
border-radius: 8px;
}
section .button.off {
border: 2px solid #6a6a6a;
background-color: #303030;
}
section .button.off:hover {
border: 2px solid #1fc6a6;
}
section .button.on {
border: 2px solid #1fc6a6;
background-color: #1fc6a6;
}
section .button.on:hover {
border: 2px solid #e3e3e3;
}
section .button:first-child {
margin-top: 0;
}
img {
width: 60px;
}
#mute {
padding-top: 12px;
}
#bubble {
padding-top: 14px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 30px;
text-align: center;
color: #e3e3e3;
font-weight: bold;
}
footer div {
display: inline-block;
height: 12px;
width: 24px;
position: relative;
top: 16px;
}
footer div p {
position: relative;
top: -8px;
}
footer .button:hover {
border: 1px solid #e3e3e3;
border-radius: 2px;
margin: -1px;
}