-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
193 lines (186 loc) · 7.79 KB
/
style.css
File metadata and controls
193 lines (186 loc) · 7.79 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
body {
width: 100%;
height: 100%;
background: url(background.svg);
}
.code-editor-container {
width: 100%;
height: 95%;
display: flex;
align-items: center;
justify-content: space-evenly;
gap: 20px;
padding: 20px;
overflow: auto;
}
@media screen and (max-width: 800px) {
.code-editor-container {
margin-top: 1rem;
}
}
.code-editor {
width: 400px;
height: 400px;
backdrop-filter: blur(5px) saturate(200%);
-webkit-backdrop-filter: blur(5px) saturate(200%);
background-color: rgba(0, 0, 0, 0);
border-radius: 12px;
border-radius: 20px;
overflow: auto;
position: relative;
border: 0.5px solid rgba(37, 36, 36, 0.956);
box-shadow: rgb(38, 39, 39) 3px 3px 6px 0px inset,
rgba(61, 61, 61, 0.5) -3px -3px 6px 1px inset;
}
@media screen and (max-width: 800px) {
.code-editor-container {
flex-wrap: wrap;
}
}
.head-editor {
width: 100%;
height: 60px;
backdrop-filter: blur(5px) saturate(200%);
-webkit-backdrop-filter: blur(5px) saturate(200%);
background-color: rgba(13, 13, 14, 0.952);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.125);
box-shadow: rgb(38, 39, 39) 3px 3px 6px 0px inset,
rgba(61, 61, 61, 0.5) -3px -3px 6px 1px inset;
border-radius: 0px 0px 0px 0px;
padding: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.left-head span {
color: rgba(255, 255, 255, 0.491);
font-size: 20px;
}
.left-head {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.right-head img {
transition: all 0.5s;
cursor: pointer;
}
.right-head img:hover {
scale: 120%;
}
.code-editor textarea {
width: 100%;
height: calc(100% - 95px);
backdrop-filter: blur(5px) saturate(200%);
-webkit-backdrop-filter: blur(5px) saturate(200%);
background-color: rgba(5, 5, 5, 0);
border-radius: 12px;
border: none;
position: absolute;
bottom: 0;
outline: none;
color: white;
padding: 20px;
resize: none;
font-size: 20px;
}
.output-container {
width: 100%;
height: 5%;
box-shadow: 2px -4px 10px rgba(6, 6, 6, 0);
color: rgba(255, 255, 255, 0.891);
font-size: 8px;
z-index: 1;
position: fixed;
bottom: 0;
transition: all 0.5s;
}
.output-head {
width: 100%;
height: 40px;
background-color: black;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 20px;
box-shadow: rgb(38, 39, 39) 3px 3px 6px 0px inset,
rgba(61, 61, 61, 0.5) -3px -3px 6px 1px inset;
}
.outname {
font-size: 10px;
font-weight: 800;
color: #ffffff31;
}
.output-head img {
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.output-head img:hover {
scale: 120%;
}
#output {
width: 100%;
height: calc(100% - 40px);
overflow: auto;
background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%23FFFFFF' width='11' height='11'/%3E%3Crect fill='%23fefefe' x='10' width='11' height='11'/%3E%3Crect fill='%23fcfcfc' y='10' width='11' height='11'/%3E%3Crect fill='%23fbfbfb' x='20' width='11' height='11'/%3E%3Crect fill='%23fafaf9' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23f8f9f8' y='20' width='11' height='11'/%3E%3Crect fill='%23f7f7f7' x='30' width='11' height='11'/%3E%3Crect fill='%23f6f6f5' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23f5f5f4' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23f3f4f2' y='30' width='11' height='11'/%3E%3Crect fill='%23f2f2f1' x='40' width='11' height='11'/%3E%3Crect fill='%23f1f1ef' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23eff0ee' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23eeefed' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23edeeeb' y='40' width='11' height='11'/%3E%3Crect fill='%23ebecea' x='50' width='11' height='11'/%3E%3Crect fill='%23eaebe8' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23e9eae7' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23e8e9e6' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23e6e7e4' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23e5e6e3' y='50' width='11' height='11'/%3E%3Crect fill='%23e4e5e2' x='60' width='11' height='11'/%3E%3Crect fill='%23e2e4e0' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23e1e2df' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23e0e1dd' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23dfe0dc' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23dddfdb' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23dcded9' x='70' width='11' height='11'/%3E%3Crect fill='%23dbdcd8' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23dadbd6' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23d8dad5' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23d7d9d4' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%23d6d7d2' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%23d4d6d1' x='80' width='11' height='11'/%3E%3Crect fill='%23d3d5d0' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23d2d4ce' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23d1d3cd' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23cfd1cc' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23ced0ca' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%23cdcfc9' x='90' width='11' height='11'/%3E%3Crect fill='%23cccec7' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%23caccc6' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23c9cbc5' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23c8cac3' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23c7c9c2' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23c5c8c1' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23c4c6bf' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23c3c5be' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23c2c4bd' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23c0c3bb' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23bfc2ba' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23bec0b9' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%23bdbfb7' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23bbbeb6' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23babdb5' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%23b9bcb3' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23b8bbb2' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23b6b9b1' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23b5b8af' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23B4B7AE' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
border: none;
}
.output-full-active {
height: 100%;
}
#full {
transition: all 1s;
}
.html-input::selection {
background-color: rgb(255, 119, 0);
}
.js-input::selection {
background-color: rgb(255, 247, 0);
color: black;
}
.logo {
color: rgb(255, 255, 255);
display: flex;
justify-content: space-between;
gap: 4px;
font-size: 1.2rem;
cursor: pointer;
margin-left: 5px;
backdrop-filter: blur(5px) saturate(200%);
-webkit-backdrop-filter: blur(5px) saturate(200%);
background-color: rgba(5, 5, 5, 0);
}
.imp {
display: flex;
justify-content: center;
align-items: center;
gap: 2px;
}
#name {
font-weight: 700;
}
.name {
text-shadow: 1px 1px 2px;
color: rgb(151, 41, 255);
}
.image {
margin-right: 10px;
margin-top: 8px;
transition: all 0.5s;
}
.image:hover {
scale: 120%;
}