-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.less
61 lines (55 loc) · 1.19 KB
/
style.less
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
// Variables
@font: 'Roboto Mono', monospace;
@woff2: format('woff2');
@woff: format('woff');
@padding: 10px;
@border-radius: 15px;
// Mixins
.padding {
padding: @padding;
}
.border-radius (@radius: @border-radius) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
@font-face {
font-family: @font;
src: url('RobotoMono.woff2') @woff2,
url('RobotoMono.woff') @woff;
}
// Material Icons
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url('material-icons.woff2') @woff2,
url('material-icons.woff') @woff;
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
.CodeMirror, #evalBox {
font-family: @font;
height: auto;
.border-radius;
}
#runButtonWrapper, #title {
font-family: @font;
text-align: center;
}
#runButtonWrapper, .CodeMirror, #evalBox {
.padding;
}