-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (104 loc) · 1.7 KB
/
Copy pathstyle.css
File metadata and controls
133 lines (104 loc) · 1.7 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* Stylesheet for Codeplayer project */
body {
margin: 0;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
background-color: #1d1f21;
}
#wrapper {
}
/*Start topbar */
#topbar {
width: 100%;
height: 40px;
background-color: #C5C8C6;
margin-top: 0;
padding: 0;
border-bottom: 2px #474A4F solid;
}
h1 {
font-size: 1.2em;
float: left;
margin: 8px 0 0 25px;
color: #1d1f21;
}
#toggles {
width: 166px;
margin: 0 auto;
list-style: none;
border: 1px solid #1D1F21;
border-radius: 15px;
height: 27px;
padding: 0;
position: relative;
top: 5px;
left: -65px;
overflow: hidden;
color: #1d1f21;
}
#toggles li {
float: left;
border-right: 1px solid #1D1F21;
padding: 5px 7px;
cursor: pointer;
}
#run {
float: right;
margin: 0 25px 0 0;
width: 60px;
height: 30px;
border-radius: 15px;
background-color: #ACB1AD;
font-size: 1.1em;
position: relative;
top: -25px;
}
/*End topbar */
.clear {
clear: both;
}
.code {
height: 100%;
width: 50%;
float: left;
position: relative;
top:-17px;
}
.code textarea {
width: 100%;
height: 100%;
border: none;
border-right: 1px solid gray;
font-family: Courier, monospace;
font-size: 1em;
padding: 5px;
box-sizing: border-box;
background-color: #1d1f21;
color: #C5C8C6;
}
.codeLabel {
position: absolute;
right: 10px;
top: 10px;
background-color: #C5C8C6;
border-radius: 15px;
padding: 6px;
font-size: 1.1em;
color: #1d1f21;
z-index: 2;
}
#CSS, #JS {
display: none;
}
iframe {
height: 100%;
width: 100%;
position: relative;
left: 3px;
border: none;
z-index: 1;
}
.selected {
background-color: #1d1f21;
color: #C5C8C6;
}