-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (72 loc) · 1.3 KB
/
style.css
File metadata and controls
89 lines (72 loc) · 1.3 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
82
83
84
85
86
87
88
89
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fafafa;
}
.nav-wrapper {
display: flex;
justify-content: right;
align-items: center;
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
.search-box {
width: 700px;
margin: 5px;
padding: 10px;
border: 1px solid #dfdfdf;
border-radius: 3px;
}
.nav-items {
display: flex;
align-items: right;
}
.icon {
height: 24px;
margin-left: 20px;
cursor: pointer;
}
.leftaside {
width: 250px;
padding: 20px;
position: fixed;
top: 2px;
left: 0;
height: 100%;
background-color: #fff;
border-right: 1px solid #dfdfdf;
}
.profile {
text-align: center;
margin-bottom: 20px;
}
.sidebar ul {
list-style: none;
padding: 0;
}
.sidebar ul li {
display: flex;
align-items: center;
padding: 10px 0;
cursor: pointer;
}
main {
margin-left: 270px;
padding: 20px;
padding-top: 80px;
}
.feed {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.stories-section {
display: contents;
overflow-x: auto;
padding: 10px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
}