9f0175139d
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@192 a672b425-5310-4d7a-af5c-997e18724b81
69 lines
1 KiB
SCSS
69 lines
1 KiB
SCSS
.list-commands {
|
|
list-style: none;
|
|
width: 100%;
|
|
}
|
|
|
|
.list-commands li {
|
|
border-radius: 50px;
|
|
transition:500ms;
|
|
|
|
a{
|
|
width: calc(100% - 2em - 20px);
|
|
text-decoration: none;
|
|
font-size: 2.8vh;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
padding: 4px 0 4px 20px;
|
|
}
|
|
}
|
|
|
|
.before-command {
|
|
background: #6a6;
|
|
border-radius: 100%;
|
|
padding: 4px 12px;
|
|
font-size: 2.8vh;
|
|
transition:500ms;
|
|
}
|
|
|
|
.list-commands li:hover{
|
|
background-color: #646464;
|
|
border-radius:10px;
|
|
|
|
.before-command{
|
|
border-radius:10px;
|
|
color:#000;
|
|
}
|
|
|
|
.blink:after{
|
|
content:"_";
|
|
animation: blink 800ms linear infinite;
|
|
}
|
|
|
|
@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;
|
|
}
|
|
|
|
.bli:after{
|
|
content:"_";
|
|
font-size:32px;
|
|
animation: blink 800ms linear infinite;
|
|
}
|
|
|
|
|