-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.css
More file actions
81 lines (65 loc) · 1.36 KB
/
Copy pathmedia.css
File metadata and controls
81 lines (65 loc) · 1.36 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@media (max-width: 1000px) {
.board_wrap {
width: 100%;
min-width: 320px;
padding: 0 30px;
box-sizing: border-box;
}
.board_list .num,
.board_list .writer,
.board_list .count {
display: none;
}
.board_list .date {
width: 40%;
}
.board_list .title {
text-indent: 10px;
}
.board_list .top .title {
text-indent: 0;
}
.board_page a {
width: 26px;
height: 26px;
}
.board_page a.bt {
padding-top: 7px;
}
.board_page a.num {
padding-top: 6px;
}
.board_view .info dl {
width: 50%;
padding: 0;
}
.board_view .info dl:nth-child(-n+2) {
margin-bottom: 5px;
}
.board_view .info dl::before {
display: none;
}
.board_view .info dl dt,
.board_view .info dl dd {
font-size: 1.2rem;
}
.board_write .info dl {
width: 49%;
}
.board_write .info dl:first-child {
margin-right: 2%;
}
.board_write .title dt,
.board_write .info dt {
display: none;
}
.board_write .title dd,
.board_write .info dd {
width: 100%;
}
.board_write .title input[type="text"],
.board_write .info input[type="text"],
.board_write .info input[type="password"] {
width: 100%;
}
}