-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (64 loc) · 1.47 KB
/
style.css
File metadata and controls
74 lines (64 loc) · 1.47 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
body {
display: flex;
height: 100vh;
background-color: #1e3a8a; /* Deep Blue */
}
.editor-container {
display: flex;
width: 100%;
}
.left-part {
flex-basis: 50%;
padding: 10px;
background-color: #b91c1c; /* Bright Red */
border-right: 2px solid #6d28d9; /* Bright Purple */
display: flex;
flex-direction: column;
gap: 10px;
}
.content {
flex-grow: 1;
display: flex;
flex-direction: column;
gap: 5px;
}
textarea {
flex-grow: 1;
padding: 10px;
font-size: 14px;
border: 1px solid #6d28d9; /* Purple Border */
border-radius: 5px;
resize: none;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.run-button-container {
text-align: center;
}
#run-button {
padding: 10px 20px;
font-size: 16px;
background-color: #2563eb; /* Bright Blue */
color: #ffffff; /* White Text */
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
#run-button:hover {
background-color: #1d4ed8; /* Darker Blue */
transform: scale(1.05);
}
#run-button:focus {
outline: 2px solid #1d4ed8; /* Blue Focus */
}
.right-part {
flex-basis: 50%;
background-color: #6d28d9; /* Bright Purple */
padding: 10px;
}
iframe {
width: 100%;
height: 100%;
border: 1px solid #0b0695; /* Purple Frame */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}