mStream/webapp/remote/index.css
2021-02-03 23:29:47 -05:00

72 lines
929 B
CSS

body, html {
height: 100%; }
.browser{
list-style: none;
padding: 0;
overflow-y: scroll;
height: calc(100% - 40px);
}
.browser-item{
height:auto;
border-bottom:solid 1px #b4b4b4;
cursor: pointer;
width: 100%;
background: white;
color: #252525;
font-size: 10pt;
text-shadow: 0 1px white;
font-weight: 300;
overflow: hidden;
padding: 10px;
}
.browser-item:hover{
background-color: #F5F5F5;
}
.login-form{
padding-top: 20px;
}
.back-button{
position: relative;
float: left;
padding: 5px;
}
.filepath{
position: relative;
float: left;
padding-top: 10px;
}
.pointer {
cursor: pointer;
}
.login-overlay {
position: fixed;
padding: 0;
margin: 0;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.9);
z-index: 9;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity .5s
}
.fade-enter,
.fade-leave-to {
opacity: 0
}