~dricottone/noticable

ref: d9ad29e13f0f4f27f295f2868d930b55c806413a noticable/noticable.css -rw-r--r-- 490 bytes
d9ad29e1Dominic Ricottone Remove test file 3 years ago
                                                                                
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
body {
  height: 95vh;
  padding: 0;
}
.sidebar {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  overflow-x: hidden;
}
.sidebar li {
  color: #fff;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.container {
  max-width: 1000px;
  height: 100%;
  margin-left: 200px;
  transition: all 0.4s ease-out;
  display: none;
}
.container.focused {
  display: block;
}
#container-editor {
  border: 1px solid #ccc;
}