ShowContent.css
1.21 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
.contentOuter{
height: 90%;
width: 90%;
max-width: 1024px;
display:grid;
grid-template-rows: 15% 70% 10% ;
grid-template-columns: 100%;
margin: 2% 2%;
padding: 2% 1%;
background-color: #FDF5E6;
place-items: center;
}
.contentOuter :nth-child(1),
.contentOuter :nth-child(2),
.contentOuter :nth-child(3){
display:block;
background-color: ivory;
width:95%;
height: 95%;
border: 1px solid black;
padding: 1% 5%;
}
.contentOuter :nth-child(1){ /*제목*/
justify-content:left;
font-size:40px;
}
.contentOuter :nth-child(2){ /*본문*/
justify-content:left;
font-size:20px;
margin-bottom: 0px;
}
.contentOuter :nth-child(3){ /*날짜*/
text-align: right;
display:grid;
grid-template-columns: 30% 12% 12%;
grid-template-rows: 100%;
justify-content: right;
margin-top: 0px;
padding-right: 0%;
}
.contentOuter :nth-child(3) > *{ /*날짜*/
display: block;
text-align: center;
width: 90%;
margin: 0px;
font-size: 15px;
background-color: white;
margin: inherit 10%;
}
.contentOuter :nth-child(3) > p{
background-color: ivory;
text-align: right;
border-width: 0px;
margin-right: 0px;
}