-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (68 loc) · 1.41 KB
/
style.css
File metadata and controls
82 lines (68 loc) · 1.41 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
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 1200px;
min-height: 600px;
margin: 0 auto;
padding: 20px;
background-color: #94bfe4;
border-radius: 1em;
}
.buttons {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 20px;
}
.btn {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
margin-right: 10px;
margin-bottom: 10px;
border-radius: 5%;
}
.ticker {
background-color: #007bff;
color: white;
}
.matches {
background-color: #e58212;
color: rgb(244, 242, 242);
}
.heartbeat {
background-color: #6c757d;
color: white;
}
.status {
background-color: #17a2b8;
color: white;
}
.user {
background-color: #f8f9fa;
color: black;
}
.disconnect {
background-color: #f33441;
color: white;
}
.clear {
background-color: #62d51b;
color: white;
}
.results {
border: 1px solid #ccc;
padding: 20px;
min-height: 380px;
overflow-x: auto; /* Enables horizontal scrolling */
white-space: nowrap; /* Prevents text from wrapping to the next line */
background-color: rgb(235, 172, 14); /* Changes the background color to black */
color: #f8f8f8; /* Changes the text color to bright green */
border-radius: 2em;
}
pre {
margin: 0;
white-space: pre-wrap;
color: inherit; /* Ensures the text color is inherited from the parent */
}