-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
106 lines (90 loc) · 1.73 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
104
105
106
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
#editor {
position: absolute;
top: 7%;
right: 0;
bottom: 0;
left: 0;
}
a {
font-family: 'Open Sans', sans-serif;
background-color: #141414;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: absolute;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
top: 1%;
right: 0;
bottom: 0;
left: 0;
}
.save_button {
background-color: #141414;
color: white;
}
.save_button:hover {
background-color: #303030;
color: white;
}
.logo {
color: lightskyblue;
font-family: 'Roboto', sans-serif;
}
iframe {
background-color: black;
color: black;
}
/* SYNTAX */
.keyword {
color: #2093fe;
}
.command {
color: #c886fe;
}
.integer {
color: #08c40b;
}
/* Custom Syntax For Keywords */
.REM {
color: #e8e8e8 !important;
}
/* .ace-text {
color: white;
} */
.ace-crimson-editor .ace-text {
color: black !important;
}
#aiForm {
transition: 0.2s ease all;
}
#ai {
position: fixed;
z-index: 999999999;
top: 50px;
left: 50%;
transform: translateX(-50%);
padding: 15px;
border-radius: 10px;
width: 50%;
font-size: 16px;
text-align: center;
background: transparent;
/* backdrop-filter: blur(80px); */
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
border: 1px solid rgba(255, 255, 255, 0.125);
color: #DEDEDE;
transition: 0.2s ease;
}
#ai::placeholder {
color: #575757;
}
#ai:focus {
outline: none;
border: 1px solid rgba(255, 255, 255, 0.325);
}