style.css
560 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#board {
width: 80%;
margin: 0 10% 0 10%;
}
#header {
background-color: hotpink;
overflow: auto;
}
.row {
width: 100%;
overflow: auto;
border-bottom: 1px solid gainsboro;
}
div.number {
width: 5%;
text-align: center;
}
div.title {
width: 40%;
}
div.date {
width: 20%;
text-align: center;
}
div.name {
width: 20%;
text-align: center;
}
#header > .row > .col {
float: left;
margin: 10px;
font-weight: bold;
color: white;
}
#content > .row > .col {
float: left;
margin: 10px;
}