-
Notifications
You must be signed in to change notification settings - Fork 1
/
detail.css
61 lines (59 loc) · 842 Bytes
/
detail.css
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
body {
margin: 0px;
padding: 0px;
background-color: #f5f5f5;
}
#main {
width: 100%;
}
#navbar {
position: sticky;
top: 0px;
z-index: 5;
}
#first {
/* border:1px solid red; */
width: 90%;
height: auto;
display: flex;
margin: auto;
margin-top: 50px;
margin-left: 5%;
}
#sidebar {
/* border:1px solid black; */
width: 25%;
height: auto;
margin-right: 20px;
position: sticky;
top: 80px;
}
#right_sidebar {
/* border:1px solid black; */
width: 25%;
height: auto;
margin-left: 40px;
}
#middle {
padding: 5px;
width: 40%;
}
#middle img {
width: 100%;
}
#middle p {
font-size: 20px;
margin-bottom: 25px;
}
#middle h1 {
font-size: 25px;
margin-bottom: 30px;
}
#middle h3 {
font-size: 20px;
margin-bottom: 30px;
}
/* #middle p:nth-child(1){
font-size: 25px;
color:black;
} */