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

72 lines
1.2 KiB
CSS
Raw Normal View History

.main {
overflow: auto;
}
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;
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
}
img {
padding-top: 5px;
width: 160px;
height: 40px;
padding-bottom: 5px;
}
2016-08-29 21:12:31 +00:00
.guide {
-webkit-font-smoothing: antialiased;
color: #DDDDDD;
font-family: 'Ubuntu Mono', 'Monaco', sans-serif;
letter-spacing: 1.2px;
font-size: 15px;
2016-09-02 19:13:07 +00:00
max-width: 1000px;
2016-08-29 21:12:31 +00:00
margin: auto;
padding: 1rem;
background-color: #444;
text-align: left;
line-height: 1.4;
2016-08-24 12:58:40 +00:00
}
.title {
color: lightskyblue;
}
p {
display: block;
}
/* This syntax is my new best friend for when nothing else works!
I'm unsure why, but attempting to set the style of code in this setting is just
not working....but this works! */
:host /deep/ code {
font-weight: bold;
font-size: 16px;
}
2016-08-29 21:12:31 +00:00
.cli {
-webkit-font-smoothing: antialiased;
2016-08-29 21:12:31 +00:00
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
}