index.css
704 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
* {
padding: 0;
margin: 0;
}
.main {
padding-left: 100px;
padding-right: 100px;
}
.title {
height: auto;
font-size: 30px;
font-weight: 500;
color: #4A4A4A;
line-height: 30px;
text-align: center;
padding: 20px;
}
.release {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
font-size: 16px;
font-weight: 400;
color: #6D7278;
line-height: 12px;
margin-top: 20px;
margin-bottom: 20px;
}
.release div {
display: inline-block;
}
.body {
padding-top: 20px;
border-top: 1px solid #DEDEDE;
height: auto;
font-size: 16px;
font-weight: 400;
color: #4A4A4A;
line-height: 24px;
}