-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (88 loc) · 1.35 KB
/
style.css
File metadata and controls
88 lines (88 loc) · 1.35 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
height: 100%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
height: inherit;
user-select: none;
display: flex;
background: #e4e0e0;
}
.content {
flex: 1;
}
.sidebar {
color: #534e4e;
max-width: 500px;
min-width: 190px;
width: 222px;
height: 100%;
position: relative;
background: #fff;
}
img {
margin: 22px 15px 0;
width: 50px;
height: 50px;
border-radius: 50%;
}
i {
font-size: 20px;
}
.search-bar {
position: relative;
margin: 22px 15px 15px;
padding: 0 11px;
display: flex;
border-radius: 5px;
align-items: center;
column-gap: 4px;
background: #f3f2f2;
}
input {
height: 30px;
width: 100%;
border: none;
outline: none;
background: none;
}
ul {
padding: 4px 15px;
list-style: none;
}
ul:not(:last-child) {
border-bottom: 1px solid #f0ecec;
}
li {
padding: 8px 11px;
cursor: pointer;
display: flex;
border-radius: 6px;
align-items: center;
column-gap: 6px;
transition: .2s ease-in-out;
}
li:hover {
background: #f0ecec;
}
.resizer {
height: 100%;
width: 4px;
top: 0;
cursor: ew-resize;
position: absolute;
}
.resizer.right {
left: 0px;
}
.resizer.left {
right: 0;
}
.resizer:hover {
background: #007fd4;
}