16 lines
169 B
CSS
16 lines
169 B
CSS
|
main {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
main a {
|
||
|
display: inline-block;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
main a:hover {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
main a img {
|
||
|
width: 200px;
|
||
|
}
|