mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-07 05:18:36 +02:00
103 lines
1.7 KiB
CSS
103 lines
1.7 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;
|
|
font-size: 26px;
|
|
}
|
|
|
|
footer div {
|
|
display: inline-block;
|
|
height: 14px;
|
|
width: 30px;
|
|
position: relative;
|
|
top: 14px;
|
|
}
|
|
|
|
footer div p {
|
|
position: relative;
|
|
top: -15px;
|
|
}
|
|
|
|
footer .button:hover {
|
|
border: 1px solid #e3e3e3;
|
|
border-radius: 3px;
|
|
margin: -8px;
|
|
}
|