-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
103 lines (90 loc) · 2.01 KB
/
style.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
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
/* CSS files add styling rules to your content */
/* @font-face {
font-family: 'Regolapro';
src: url('./fonts/RegolaPro-Book.woff2') format('opentype');
font-weight: 700;
font-style: normal;
} */
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
width: 100vw;
height: 100vh;
margin : 0px;
padding : 0px;
border : 0px;
background-color : black;
}
.code-container {
position: fixed;
left: 0px;
top: 30px;
width: 50vw;
height: 100vh;
}
@media only screen and (max-width: 800px) {
.code-container {
width: 100vw;
}
}
canvas {
width: 100%;
height: 100%;
margin : 0px;
padding : 0px;
border : 0px;
z-index: -1;
background-color : transparent;
}
.editor-action-buttons {
position: fixed;
top: 0px;
left: 0px;
}
.logo {
position: fixed;
right: 15px;
bottom: 10px;
margin: 0px;
padding: 0px;
color: white;
font-family: Helvetica, Arial, sans-serif;
font-weight: 700;
}
.editor-button {
padding: 5px 15px 5px 15px;
border-radius: 50px;
/* border: 1px solid lightgrey; */
/* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15); */
margin-top: 2.5px;
transition: all 300ms ease-in-out ;
color: rgb(165, 165, 165);
border-color: rgb(165, 165, 165);
background-color: transparent;
-webkit-transition: all 300ms ease-in-out;
cursor: pointer;
}
.editor-button:hover {
color: white;
border-color: white;
/* box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); */
}
.cm-scroller {
overflow: auto !important;
}
.cm-scroller::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.5); /* Adjust as needed */
border: 3px solid transparent; /* This will increase the size of the thumb, effectively hiding the intersection */
background-clip: content-box; /* Ensures the background color doesn't bleed beyond the border */
border-radius: 5px; /* Optional: For rounded corners */
}
.cm-scroller::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.cm-scroller:focus {
outline: none !important
}
.cm-editor {
outline: none !important
}