-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
96 lines (85 loc) · 1.76 KB
/
styles.css
File metadata and controls
96 lines (85 loc) · 1.76 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
body {
font-family: 'Roboto', sans-serif;
margin: 0;
background-color: #1e1e1e;
color: #dcdcdc;
}
.header {
background-color: #007acc;
color: white;
padding: 20px 0;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.selection, .display, .editor {
background-color: #252526;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
text-align: center;
}
.language-btn {
margin: 10px;
padding: 15px 25px;
font-size: 16px;
color: white;
background-color: #007acc;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.language-btn:hover {
background-color: #005a9e;
}
pre {
text-align: left;
background-color: #1e1e1e;
color: #dcdcdc;
padding: 20px;
border-radius: 5px;
overflow-x: auto;
white-space: pre-wrap;
word-wrap: break-word;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}
#editor-container {
width: 100%;
height: 400px;
border: 1px solid #3c3c3c;
border-radius: 5px;
box-sizing: border-box;
}
.submit-btn {
margin-top: 20px;
padding: 15px 25px;
font-size: 16px;
color: white;
background-color: #007acc;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.submit-btn:hover {
background-color: #005a9e;
}
.result-message, .output-message, .time-taken {
margin-top: 20px;
font-weight: bold;
white-space: pre-wrap;
word-wrap: break-word;
}
.timer {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
color: #ff0000;
text-align: center;
}