de0293b326
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@79 a672b425-5310-4d7a-af5c-997e18724b81
34 lines
564 B
SCSS
34 lines
564 B
SCSS
ul {
|
|
list-style: none;
|
|
width: 50%;
|
|
}
|
|
|
|
.list-commands {
|
|
border-radius: 50px;
|
|
margin-bottom: 5px;
|
|
transition:500ms;
|
|
|
|
a{
|
|
height:29px;
|
|
width:calc(100% - 2em - 20px);
|
|
text-decoration: none;
|
|
font-size: 2.5vh;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
margin-left:20px;
|
|
}
|
|
}
|
|
|
|
.list-commands:before {
|
|
content: '>';
|
|
background: #6a6;
|
|
border-radius: 100%;
|
|
padding: 4px 11px;
|
|
font-size: 2.8vh;
|
|
text-align: center;
|
|
display: inline-block;
|
|
}
|
|
|
|
.list-commands:hover{
|
|
background-color: #646464;
|
|
}
|