46 lines
541 B
CSS
46 lines
541 B
CSS
body {
|
|
background: #EEF2FF;
|
|
}
|
|
|
|
#clavis {
|
|
display: block;
|
|
width: 300px;
|
|
margin: 10px auto;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
#boardList {
|
|
font-size: 12px;
|
|
}
|
|
|
|
#boardList a {
|
|
cursor: pointer;
|
|
color: #575F68;
|
|
}
|
|
|
|
#boardList a:hover {
|
|
color: #ff0000;
|
|
}
|
|
|
|
.container {
|
|
width: 600px;
|
|
margin: auto;
|
|
}
|
|
|
|
.box {
|
|
font-size: 12px;
|
|
border: 1px solid black;
|
|
background-color: #eceff6;
|
|
}
|
|
|
|
.box h2 {
|
|
padding: 5px;
|
|
margin: 0;
|
|
background-color: #00007F;
|
|
color: #FFF;
|
|
}
|
|
|
|
.box p {
|
|
padding: 10px;
|
|
}
|