forked from web/portal
43 lines
625 B
CSS
43 lines
625 B
CSS
body {
|
|
color: #333;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #333;
|
|
}
|
|
|
|
.item-box {
|
|
border-radius: 15px;
|
|
position: relative;
|
|
float: left;
|
|
|
|
border: 1px dashed gray;
|
|
width: 480px;
|
|
height: 140px;
|
|
background-color: #eee;
|
|
margin: 20px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.item-box .image-box {
|
|
width: 100px;
|
|
height: 100px;
|
|
float: left;
|
|
padding: 10px;
|
|
}
|
|
|
|
.item-box img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
|
|
h2 {
|
|
color: #009da5;
|
|
font-size: 26px;
|
|
font-weight: 500;
|
|
}
|