42 lines
457 B
CSS
42 lines
457 B
CSS
|
.connections
|
||
|
{
|
||
|
padding: 1em;
|
||
|
}
|
||
|
.connections .box
|
||
|
{
|
||
|
max-width: 25em;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
.connections .form
|
||
|
{
|
||
|
padding: 1.5em;
|
||
|
font-size: 1.4em;
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
/* List */
|
||
|
|
||
|
.connections .list
|
||
|
{
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
.connections .item
|
||
|
{
|
||
|
display: block;
|
||
|
padding: 1em;
|
||
|
border-bottom: 1px solid #DDD;
|
||
|
}
|
||
|
.connections .item > button
|
||
|
{
|
||
|
float: right;
|
||
|
}
|
||
|
.connections .item > p
|
||
|
{
|
||
|
margin: .1em 0;
|
||
|
}
|
||
|
.connections .item > p.important
|
||
|
{
|
||
|
font-size: 1.2em;
|
||
|
}
|
||
|
|