-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (90 loc) · 1.54 KB
/
style.css
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@font-face {
font-family: 'DepartureMono';
src: url('DepartureMono-Regular.otf') format('opentype');
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'DepartureMono', monospace;
font-size: 16px;
line-height: 1.5;
color: #282727;
background-color: #EDEAE6;
}
::selection {
background-color: #F1491D;
color: #EDEAE6;
}
.app-container {
display: flex;
height: 100vh;
width: 80%;
margin: 0 auto;
}
.sidebar {
width: 250px;
padding: 20px;
display: flex;
flex-direction: column;
}
.sidebar h1 {
font-size: 24px;
margin-bottom: 20px;
}
.counter {
font-size: 14px;
color: #666;
margin-top: 20px;
}
.counter span {
display: block;
margin-bottom: 5px;
}
.file-actions {
margin-top: 10px;
}
.file-actions a {
color: #666;
text-decoration: underline;
margin-right: 10px;
cursor: pointer;
}
.file-actions a:hover {
color: #282727;
}
#header-list {
list-style-type: none;
flex-grow: 1;
overflow-y: auto;
}
#header-list li {
cursor: pointer;
margin-bottom: 10px;
color: #666;
}
#header-list li:hover {
color: #282727;
}
.main-content {
flex-grow: 1;
padding: 20px;
}
#editor {
width: 100%;
height: 100%;
border: none;
outline: none;
resize: none;
font-family: 'DepartureMono', monospace;
font-size: 16px;
line-height: 1.5;
background-color: transparent;
color: #282727;
}
#editor::selection {
background-color: #F1491D;
color: #EDEAE6;
}