-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
66 lines (59 loc) · 1.1 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
body {
background: #131417;
color:#fff;
font-family: "Courier New", Courier, monospace;
padding-left: 20px;
}
button {
display: inline;
font-weight: bold;
font-family: 'Fira Code';
color: #fff;
padding-top: 5px;
padding-bottom: 5px;
margin-top: 5px;
margin-bottom: 5px;
border-radius: 12px;
background-color: #32343b;
border-color:#1D1E22;
}
#color{
font-weight: bold;
font-family: 'Fira Code';
color: #fff;
padding-top: 5px;
padding-bottom: 5px;
margin-top: 5px;
margin-bottom: 5px;
border-radius: 12px;
background-color: #32343b;
border-color:#1D1E22;
}
.container{
width: 100%;
overflow:scroll;
padding:10px;
}
#c {
background-color: #fff;
}
.wrapper {
float: left;
width: 550px;
}
#generatedCode {
float: left;
color:white;
background-color:#1D1E22;
overflow: scroll;
font-family: 'Fira Code', 'Inconsolata', monospace;
font-weight: bold;
width: 50%;
height: 500px;
border-radius: 12px;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
#generatedCode::-webkit-scrollbar {
display: none;
}