-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 767 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 767 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
46
47
48
49
50
51
52
html {
height: 100%;
}
.wrapper {
display: flex;
min-height: 100%;
}
.content {
flex: 1;
}
.sidebar {
width: 80px;
background-color: #25272E;
}
.sidebar__logo::after {
content: "";
width: 100%;
height: 2px;
display: block;
background-color: #1D2028;
border-bottom: 1px solid #31343C;
}
.header {
height: 82px;
border-bottom: 1px solid #EEEEEE;
padding: 16px 22px;
color: #626262;
display: flex;
justify-content: space-between;
}
.header__title {
font-family: 'IBM Plex Sans', sans-serif;
font-weight: normal;
line-height: normal;
font-size: 36px;
}
.header__parrots-count {
display: flex;
}
.header__parrots-count::before {
content: url('images/light-parrot.svg');
align-self: center;
margin-right: 10px;
}