inspec/www/tutorial/app/app.component.css

47 lines
777 B
CSS
Raw Normal View History

2016-08-29 21:12:31 +00:00
.terminal-nav {
display: inline-block;
position: fixed;
top: 0;
right: 0;
width: 120px;
height: 60px;
color: #888;
2016-08-24 12:58:40 +00:00
text-align: center;
2016-08-29 21:12:31 +00:00
line-height: 60px;
font-size: 30px;
font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
transition: all 200ms ease-in;
cursor: pointer;
z-index: 10;
2016-08-24 12:58:40 +00:00
}
2016-08-29 21:12:31 +00:00
.terminal-nav span:hover {
color: #ccc;
2016-08-24 12:58:40 +00:00
}
2016-08-29 21:12:31 +00:00
.guide {
font-family: monospace;
font-size: 1.2rem;
2016-09-02 19:13:07 +00:00
max-width: 1000px;
2016-08-29 21:12:31 +00:00
margin: auto;
margin-top: 1rem;
margin-bottom: 1rem;
padding: 1rem;
background-color: #444;
2016-08-24 12:58:40 +00:00
}
a {
color: lightskyblue;
text-decoration: none;
}
2016-08-29 21:12:31 +00:00
.cli {
font-family: monospace;
font-size: 1.2rem;
white-space: pre-wrap;
word-wrap: break-word;
max-width: 1200px;
margin: auto;
2016-08-24 12:58:40 +00:00
}