forked from AnujShrivastava01/AnimateItNow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.css
More file actions
100 lines (75 loc) · 2.04 KB
/
editor.css
File metadata and controls
100 lines (75 loc) · 2.04 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
.editor-label {
font-weight: bold;
padding: 0.5rem 1rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
background-size: 600% 600%;
color: #ffffff;
/* sky-500, indigo-500, cyan-400 */
box-shadow: 0 2px 6px rgb(0, 0, 0);
letter-spacing: 0.5px;
font-size: 1rem;
height: 60px; /* sets label height to 48px */
display: flex;
align-items: center; /* vertically center the text */
}
.html-label {
/* background-color: #fee2e2; */
background: linear-gradient(270deg, #c976ea, #6366f1, #3f8f9b);
font-size: 1.3rem;
color: #001551;
}
.css-label {
/* background-color: #dbeafe; */
background: linear-gradient(270deg, #2be90e, #6366f1, #22ebee);
font-size: 1.3rem;
color: #001551;
}
.js-label {
/* background-color: #d1fae5; */
background: linear-gradient(270deg, #e9e90e, #6366f1, #22d3ee);
font-size: 1.3rem;
color: #001551;
}
.editor-area {
width: 100%;
height: 16rem;
padding: 0.75rem;
font-family: monospace;
font-size: 0.875rem;
background-color: rgba(255, 255, 255, 0.654);
border-radius: 0 0 0.5rem 0.5rem;
border-width: 1px;
border: 2px solid #94a3b8; /* slate-400 */
box-shadow: 0 0 6px rgba(0, 0, 0, 0.508);
}
.editor-area:hover {
transform: scale(1.01);
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}
#output {
border-radius: 1rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
border: 2px solid #94a3b8; /* slate-400 */
background: linear-gradient(to bottom, #f1f5f9, #ffffff);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.677);
}
#output:hover {
transform: scale(1.01);
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}
.Output-line {
font-size: 1.75rem; /* larger heading */
font-weight: 800;
padding: 0.75rem 1.5rem;
margin-bottom: 1rem;
border-radius: 0.75rem;
background: rgba(254, 254, 254, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
border-left:7px solid #220149 ;
color: #380475;
text-align: left;
letter-spacing: 1px;
box-shadow: 0 4px 20px rgb(150, 140, 160); /* subtle blue glow */
}