-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (36 loc) · 758 Bytes
/
style.css
File metadata and controls
41 lines (36 loc) · 758 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
body {
margin: 0;
overflow: hidden;
}
.container {
display: flex;
width: calc(100vw + 400px - 40px);
justify-content: space-between;
position: relative;
left: -180px;
transition: left 200ms ease-in-out;
}
.content {
flex-grow: 2;
background-color: blue;
display: flex;
justify-content: center;
align-items: center;
}
.inner-content {
background-color: gray;
width: calc(100vw - 80px);
height: calc(100vh - 40px);
}
.side-panel {
height: 100vh;
background-color: orange;
width: 200px;
z-index: 2;
box-shadow: 0 0 10px 3px rgba(0, 0, 0, .5);
transition: background-color 200ms ease-in-out;
}
.side-panel:hover {
background-color: #ffbe00;
cursor: pointer;
}