-
Notifications
You must be signed in to change notification settings - Fork 0
/
Recess.css
71 lines (62 loc) · 1.26 KB
/
Recess.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
71
/* Default Styling for Recess.js */
/* Feel Free to tailor it to your liking =) */
@font-face {
font-family: "SourceCodeProBold";
src: local("SourceCodeProBold"),
url("./config/Source_Code_Pro/SourceCodePro-Bold.ttf");
font-weight: Bold;
}
.Playground {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
max-width: 750px;
}
.Playground__Header {
height: 35px;
width: inherit;
display: flex;
align-items: center;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
color: #a6b1bc;
background-color: #2b333b;
}
.Playground__Header h3 {
margin-left: 14px;
font-size: 14px;
font-weight: 900;
}
.LiveEditor {
width: inherit;
font-family: "SourceCodeProBold" !important;
}
.LivePreview {
width: 85%;
border-radius: 8px;
margin-top: 25px;
margin-bottom: 50px;
background-color: #ffffff;
text-align: center;
}
.LivePreview > div {
padding: 25px;
}
.LivePreview__Container {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-top: 1px solid #3e3f4a;
background-color: #282a36;
}
.LivePreview__Header h3 {
margin-top: 30px;
margin-left: 14px;
font-size: 17px;
font-weight: 900;
color: #a6b1bc;
}