open-vault/website/source/assets/stylesheets/_demo.scss

78 lines
1.5 KiB
SCSS
Raw Normal View History

2015-03-16 06:05:27 +00:00
.demo-overlay {
z-index: 100;
bottom: 0;
left: 0;
width: 100%;
height: 80%;
max-height: 80%;
line-height: 1.3;
2015-03-16 06:05:27 +00:00
position: fixed;
background-color: black;
color: #DDDDDD;
overflow: scroll;
font-size: 15px;
2015-03-16 06:05:27 +00:00
font-family: 'Ubuntu Mono', 'Monaco', monospace;
2015-03-17 03:31:59 +00:00
@include box-shadow(0px -2px 30px 0px rgba(0, 0, 0, 0.40));
2015-03-16 06:05:27 +00:00
}
.terminal {
2015-03-17 03:22:35 +00:00
padding: 0px 65px 0 25px;
2015-03-16 06:05:27 +00:00
padding-bottom: 50px;
2015-03-17 03:22:35 +00:00
.close-terminal{
display: inline-block;
position: absolute;
top: 0;
right: 0;
width: 60px;
height: 60px;
color: #8B8A8F;
background-color: #202021;
text-align: center;
line-height: 60px;
font-size: 30px;
@include lato-light();
2015-03-17 03:24:17 +00:00
transition: all 250ms ease-in;
cursor: pointer;
2015-03-17 03:22:35 +00:00
&:hover{
text-decoration: none;
2015-03-17 03:24:17 +00:00
color: $white;
transition: all 250ms ease-in;
2015-03-17 03:22:35 +00:00
}
}
ul {
padding-left: 15px;
}
li {
list-style-type: none;
}
.instruction {
margin-top: 20px;
padding: 1px;
background-color: darken($blue, 25%);
p:last-child {
margin-bottom: 0px;
}
2015-03-16 06:05:27 +00:00
}
.log {
white-space: pre;
}
input.shell {
padding: 0;
margin: 0;
display: inline-block;
bottom: 0;
width: 90%;
background-color: black;
border: 0;
outline: 0;
}
}