-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (93 loc) · 2 KB
/
style.css
File metadata and controls
107 lines (93 loc) · 2 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
@import url(https://vortixsys.pages.dev/fonts/library.css);
@import url(https://cdn360.pages.dev/library/rubisco/emoji/3d/RubiscoEmojiColor.css);
:root {
--font-family-base: "Sevolt UI", "RubiscoEmojiColor", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
--font-family-mono: "Laurentia Code", "RubiscoEmojiColor", monospace;
}
html, body {
font-family: var(--font-family-base);
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
}
#logo {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
z-index: 1;
}
#editor-container {
flex: 1;
display: flex;
height: 100%;
}
#editor {
font-family: var(--font-family-base);
width: 50%;
overflow: none;
}
#divider {
width: 3px;
cursor: ew-resize;
background-color: #000;
}
#preview {
flex: 1;
overflow: auto;
background-color: #ffffff;
border-left: 1px solid #000;
}
.button-container {
display: flex;
justify-content: flex-end;
padding: 8px;
background-color: #000000;
}
button {
font-family: var(--font-family-base);
margin-right: 8px;
padding: 6px 12px;
font-size: 14px;
cursor: pointer;
background-color: #212121;
color: #ffffff;
border: none;
border-radius: 4px;
}
button:hover {
background-color: #3474f0;
color: #ffffff;
}
select {
font-family: var(--font-family-base);
font-size: 14px;
background-color: #212121;
color: #ffffff;
border: none;
margin-right: 8px;
padding: 6px 12px;
border-radius: 4px;
}
#logo {
position: absolute;
top: 0;
left: 0;
width: auto;
height: 30px;
z-index: 1;
margin-left: 10px;
padding-top: 8px;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
.context-view.fixed, .andorra-inputbox>.ibwrapper>.input, .andorra-editor {
font-family: var(--font-family-base);
}