ex03.css
717 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
html{
color:#000;
background:#fff;
padding:20px 0;
font: 14px/20px "맑은 고딕", "Malgun Gothic", "굴림", "Gulim", Verdan, Arial, Tahoma;
}
#board {
width:100%;
border-color:#888;
border-width:2px;
border-top-style:solid;
border-bottom-style:solid;
margin:0;
padding:0;
}
div.row{
border-color:#ccc;
border-width:1px;
border-top-style:solid;
border-bottom-style:solid;
overflow:auto;
}
div.col {
text-align: center;
margin: 1em;
float: left;
}
div.number{
width:50px;
}
div.title{
color: #0b6cb3;
}
div.name{
width:50px;
float:right;
}
div.date{
width:80px;
float:right;
}
#header {
background: olive;
color: white;
font-weight: bold;
}
#header div.title {
color: white;
}