style: update app button look (solid border with a bit of a radius) (#8934)

This commit is contained in:
Frédéric Péters 2015-11-09 20:07:50 +01:00
parent fe3bd80b68
commit e3b21c6336
1 changed files with 6 additions and 2 deletions

View File

@ -299,6 +299,7 @@ table.main tr.active td {
ul.apps {
margin-top: 2em;
margin-bottom: 2em;
padding: 0;
}
ul.apps li {
@ -315,21 +316,24 @@ ul.apps li a {
display: table-cell;
vertical-align: bottom;
width: 120px;
height: 110px;
height: 100px;
padding-top: 10px;
padding-bottom: 10px;
font-weight: bold;
text-align: center;
border: 1px dotted #666;
border: 1px solid #ccc;
text-decoration: none;
transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
color: #FF7800;
border-radius: 15px;
}
ul.apps li a:hover {
border: 1px solid #333;
color: #FF7800;
border-radius: 25px;
}
/* footer */