23 lines
288 B
CSS
23 lines
288 B
CSS
|
/* vim:sts=2:sw=2 */
|
||
|
.social
|
||
|
{
|
||
|
align-self: auto;
|
||
|
display: inline-block;
|
||
|
margin-top: auto;
|
||
|
}
|
||
|
|
||
|
.social a
|
||
|
{
|
||
|
color: white;
|
||
|
font-size: 16px;
|
||
|
border-radius: 3px;
|
||
|
padding: 0.1em 0.2em;
|
||
|
}
|
||
|
|
||
|
.social a:hover
|
||
|
{
|
||
|
background-color: #73d08a;
|
||
|
text-decoration: none;
|
||
|
color: #3a7c78;
|
||
|
}
|