-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (58 loc) · 994 Bytes
/
style.css
File metadata and controls
67 lines (58 loc) · 994 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: #f9fafb;
color: #111;
}
.app-container {
display: flex;
height: 100vh;
}
/* Sidebar */
.sidebar {
width: 250px;
background: #1f2937;
color: #f9fafb;
padding: 1rem;
display: flex;
flex-direction: column;
}
.sidebar h2 {
margin-bottom: 1rem;
}
.sidebar h3 {
margin-top: 2rem;
font-size: 1rem;
border-top: 1px solid #374151;
padding-top: 0.5rem;
}
.btn {
background: #374151;
color: #f9fafb;
border: none;
padding: 0.5rem;
margin-bottom: 0.5rem;
cursor: pointer;
border-radius: 4px;
}
.btn-green {
background: #10b981;
}
.contents-list {
list-style: none;
padding: 0;
margin: 0;
}
.contents-list li {
margin: 0.25rem 0;
font-size: 0.9rem;
}
/* Editor */
.editor {
flex: 1;
padding: 2rem;
background: #fff;
overflow-y: auto;
text-align: center;
font-family: 'Roboto Mono', monospace;
}