-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainBody.css
132 lines (93 loc) · 1.85 KB
/
mainBody.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#mainBody{
display: flex;
padding-top: 50px;
background-color: rgb(245, 245, 245);
padding-left: 8%;
padding-right: 8%;
}
#bodyLeftSide{
background-color: rgb(245, 245, 245);
flex: 0.8;
}
#bodyMiddle{
background-color: rgb(245, 245, 245);
flex: 2;
}
#bodyRightSide{
background-color: rgb(245, 245, 245);
flex: 0.9;
}
.bodyLeftSide_ul_li_img{
height: 25px;
width: 25px;
}
.bodyLeftSide_ul_li_names{
margin-top: 5px;
font-weight: 500;
color: rgb(79, 79, 79);
}
#bodyLeftSide_ul{
list-style: none;
padding-left: 15px;
}
.bodyLeftSide_socialIcons{
width: 20px;
opacity:0.7;
}
#bodyLeftSide_social{
display: flex;
justify-content: space-around;
margin-top: 50px;
}
.bodyLeftSide_ul_li{
padding-left: 10px;
padding-top: 10px;
display: flex;
gap: 5px;
border-radius: 5px;
background-color: rgb(247, 247, 247);
}
.bodyLeftSide_ul_li:hover{
background-color: var(--hoverColor);
text-decoration: underline;
color: var(--secondColor);
}
.bodyLeftSide_ul_li>h4{
margin-bottom: 3px;
font-size: 18px;
}
#bodyLeftSide_headings{
font-size: 17px;
margin-left: 25px;
margin-bottom: 0px;
}
.bodyMiddle_top{
margin-top: 40px;
height: 30px;
margin-left: 50px;
display: flex;
gap: 20px;
}
.bodyMiddle_top_text{
margin-top: 0px;
margin-bottom: 0px;
font-family: 'segoe ui';
font-size: 18px;
font-weight: 400;
color: rgb(97, 97, 97);
}
#bodyMiddleTop_relevant{
font-weight: 700;
color: black;
}
.bodyMiddle_postsClass{
margin-left: 30px;
margin-right: 30px;
margin-top: -20px;
}
#bodyMiddle_posts{
background-color: white;
box-shadow: 0.5px 0.5px 3px rgb(173, 168, 168);
border-radius: var(--borderRadius);
margin-top: 30px;
}