-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (61 loc) · 1.03 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
html,
body {
top: 0; bottom: 0;
left: 0; right: 0;
padding: 0;
margin: 0;
background-color: #000;
color: #fff;
height: 100%;
width: 100%;
overflow: hidden;
font-family: Menlo, Monaco, "Courier New", monospace;
}
.monaco-editor .suggest-widget {
width: 128px !important;
}
body {
padding: 40px;
display: grid;
justify-content: center;
align-items: center;
justify-items: center;
}
h1 {
font-size: 20px;
text-align: center;
margin: 50px 20px;
}
#monaco {
width: 350px;
height: 150px;
margin: 40px 0 0 0;
}
#status {
color: #888;
font-family: Menlo, Monaco, "Courier New", monospace;
font-weight: normal;
font-size: 12px;
line-height: 20px;
text-align: right;
margin-top: 0;
padding-right: 8px;
}
ul {
color: #888;
font-family: Menlo, Monaco, "Courier New", monospace;
font-weight: normal;
font-size: 16px;
line-height: 24px;
list-style-type: "> ";
}
ul li {
cursor: pointer;
}
ul li:hover, ul li:hover a, a:hover {
color: #fff !important;
}
a, a:visited, a:active {
color: #888;
text-decoration: none;
}