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

85 lines
1.3 KiB
CSS
Raw Normal View History

2016-09-19 08:32:23 +00:00
.tutorial-nav {
2016-08-29 21:12:31 +00:00
display: inline-block;
position: fixed;
top: 10px;
2016-08-29 21:12:31 +00:00
right: 0;
2016-09-19 08:32:23 +00:00
width: 150px;
2016-08-29 21:12:31 +00:00
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;
2016-09-19 08:32:23 +00:00
width: 100px;
padding-bottom: 5px;
2016-09-19 08:32:23 +00:00
position: fixed;
bottom: 10px;
2016-09-19 08:32:23 +00:00
right: 30px;
z-index: 100;
}
.tutorial {
position: fixed;
width: 100%;
top: 0;
left: 0;
z-index: 5;
}
.tutorial-wrapper {
max-width: 1000px;
min-width: 400px;
margin: 10px auto;
padding: 10px;
}
2016-09-19 08:32:23 +00:00
.tutorial-guide {
padding: 10px;
color: #DDDDDD;
2016-09-19 08:32:23 +00:00
background-color: #444;
font-family: 'Ubuntu Mono', 'Monaco', sans-serif;
letter-spacing: 1.2px;
text-align: left;
line-height: 1.4;
2016-09-19 08:32:23 +00:00
border-radius: 5px;
2016-08-24 12:58:40 +00:00
}
2016-09-26 11:31:00 +00:00
.tutorial-guide /deep/ code {
color: lightskyblue;
}
.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;
2016-09-19 08:32:23 +00:00
font-size: 15px;
}
2016-08-29 21:12:31 +00:00
.cli {
2016-09-19 08:32:23 +00:00
position: fixed;
top: 250px;
right: 0;
left: 0;
bottom: 0;
2016-08-24 12:58:40 +00:00
}