2018-11-11 16:26:01 +00:00
|
|
|
.list-commands {
|
2018-11-08 18:04:08 +00:00
|
|
|
list-style: none;
|
2018-11-11 20:50:30 +00:00
|
|
|
width: 100%;
|
2018-11-08 18:04:08 +00:00
|
|
|
}
|
|
|
|
|
2018-11-11 16:26:01 +00:00
|
|
|
.list-commands li {
|
2018-11-08 19:47:03 +00:00
|
|
|
border-radius: 50px;
|
2018-11-08 18:04:08 +00:00
|
|
|
margin-bottom: 5px;
|
2018-11-09 23:57:21 +00:00
|
|
|
transition:500ms;
|
2018-11-08 18:04:08 +00:00
|
|
|
|
|
|
|
a{
|
2018-11-11 10:20:22 +00:00
|
|
|
width: calc(100% - 2em - 20px);
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 2.8vh;
|
2018-11-08 18:04:08 +00:00
|
|
|
font-weight: bold;
|
|
|
|
display: inline-block;
|
2018-11-11 10:20:22 +00:00
|
|
|
padding: 4px 0 4px 20px;
|
2018-11-08 18:04:08 +00:00
|
|
|
}
|
2018-11-11 10:20:22 +00:00
|
|
|
}
|
2018-11-08 18:04:08 +00:00
|
|
|
|
2018-11-11 16:26:01 +00:00
|
|
|
.before-command {
|
2018-11-11 10:20:22 +00:00
|
|
|
background: #6a6;
|
|
|
|
border-radius: 100%;
|
|
|
|
padding: 4px 12px;
|
|
|
|
font-size: 2.8vh;
|
|
|
|
transition:500ms;
|
|
|
|
}
|
2018-11-08 18:04:08 +00:00
|
|
|
|
2018-11-11 16:26:01 +00:00
|
|
|
.list-commands li:hover{
|
2018-11-08 18:04:08 +00:00
|
|
|
background-color: #646464;
|
2018-11-10 22:03:53 +00:00
|
|
|
|
2018-11-11 16:26:01 +00:00
|
|
|
.before-command{
|
2018-11-11 10:20:22 +00:00
|
|
|
border-radius:10px;
|
|
|
|
color:#000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blink:after{
|
|
|
|
content:"_";
|
2018-11-11 16:26:01 +00:00
|
|
|
animation: blink 800ms linear infinite;
|
2018-11-11 10:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blink{
|
|
|
|
0% { opacity:1; }
|
|
|
|
50% { opacity:1; }
|
|
|
|
50.01% { opacity:0; }
|
|
|
|
100% { opacity:0; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-commands-container {
|
|
|
|
padding-top: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-section{
|
|
|
|
width: 65%;
|
|
|
|
margin: auto;
|
|
|
|
line-height: 30px;
|
|
|
|
border-left: 5px solid #000;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 50px 0;
|
|
|
|
}
|