-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (42 loc) · 731 Bytes
/
style.css
File metadata and controls
48 lines (42 loc) · 731 Bytes
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
button {
background-color: #0c71ff;
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
border-radius: 5px;
margin: 1px;
}
button:hover {
background-color: #3c8cff;
}
#console {
background-color: black;
margin: 30px auto;
max-height: 200px;
padding: 10px;
overflow: auto;
border-radius: 5px;
font-size: 14px;
font-family: "Courier New", Courier, monospace;
}
#console div {
color: white;
margin-left: 30px;
position: relative;
}
#console div.error {
color: red;
}
#console div.warning {
color: yellow;
}
#console div::before {
color: white;
content: ">";
position: absolute;
left: -20px;
}