-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (95 loc) · 1.68 KB
/
styles.css
File metadata and controls
109 lines (95 loc) · 1.68 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
body {
font-family: Arial, sans-serif;
background: linear-gradient(rgba(200, 200, 200, 0.2), rgba(200, 200, 200, 0.2)),
url("Src/15681.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
padding: 20px;
text-align: center;
}
h1 {
color: #333;
}
.exercise-buttons {
margin-top: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #4CAF50;
color: #fff;
border: none;
cursor: pointer;
margin-right: 10px;
}
button:hover {
background-color: #45a049;
}
.buttons-container {
display: grid;
grid-template-columns: 2fr 2fr 3fr;
}
.back-button {
margin-right: 75%;
}
textarea {
border: 1px solid rgb(197, 197, 197);
width: 80%;
height: 200px;
padding: 10px;
margin-top: 20px;
}
.console-output {
display: grid;
grid-template-columns: 1fr;
gap: 5px;
text-align: left;
width: 80%;
margin: 20px auto;
padding: 10px;
background-color: #fff;
border: 1px solid #ccc;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
margin-top: 5px;
background-color: #04AA6D;
color: white;
}
a:hover {
background-color: #ddd;
color: black;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px; /* Adjust the margin as needed */
}
/* Styling for the footer */
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #000000;
color: #ffffff;
padding: 20px;
text-align: center;
}
#output .log,
#output .error {
width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
font-family: "Consolas", "Monaco", "Courier New", monospace;
}
.log {
color: black;
}
.error {
color: red;
}