forked from pearlchen/LLC-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeck.coder.css
More file actions
67 lines (50 loc) · 1.06 KB
/
deck.coder.css
File metadata and controls
67 lines (50 loc) · 1.06 KB
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
.deck-container {
width:auto;
padding:0 10%;
}
.deck-container .coder-wrapper {
width:100%;
position:relative;
border:1px solid #CCC;
border-radius: 15px;
padding: 5px 0px;
box-shadow: 4px 4px 10px #CCC;
}
.deck-container .coder-editor-wrapper {
padding:5px 1%;
border-right:1px solid #CCC;
}
.deck-container .coder-editor-wrapper pre {
font-family: monospace, sans-serif;
font-size:18px;
}
.deck-container .coder-destination {
display:none;
padding:5px 1%;
}
.deck-container .coder-wrapper-split .coder-editor-wrapper {
width:48%;
}
.deck-container .coder-wrapper-split .coder-destination {
padding:5px 1%;
position:absolute; left:50%; bottom:0px;
width:48%;
}
.deck-container .coder-wrapper .coder-buttons {
position:absolute;
top:5px;
z-index:100;
right: 3%;
}
.deck-container .coder-wrapper .coder-buttons button {
border:none;
border-radius:8px;
padding:8px 12px;
color:white;
font-size:14px;
background-color:#CCC;
margin-left:5px;
}
.deck-container .coder-wrapper-split .coder-buttons {
right: 53%;
}