-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (94 loc) · 1.89 KB
/
styles.css
File metadata and controls
104 lines (94 loc) · 1.89 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
/*
CSS File for SerialConsole
Author - WireBits
*/
body {
font-family: "Courier New", monospace;
text-align: center;
background-color: #000000;
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.title {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 10px;
color: white;
border: 2px solid #FFBF00;
padding: 10px;
border-radius: 5px;
letter-spacing: 5px;
user-select: none;
}
.console {
width: 95vw;
max-width: 1500px;
height: 450px;
border: 2px solid #0FFF50;
border-radius: 5px;
resize: none;
font-size: 14px;
overflow-y: auto;
overflow-x: auto;
white-space: pre;
background-color: #000000;
color: #FFFFFF;
padding: 5px;
}
.input-container {
display: flex;
align-items: center;
gap: 6px;
width: 95vw;
max-width: 1500px;
margin-top: 10px;
}
.input-box {
flex: 1;
min-width: 0;
height: 30px;
border: 2px solid #D648D7;
border-radius: 5px;
padding: 5px;
background-color: #000000;
color: #FFFFFF;
font-weight: bold;
}
button {
width: 150px;
height: 40px;
border-radius: 5px;
padding: 5px;
cursor: pointer;
font-weight: bold;
text-align: center;
border: 2px solid transparent;
}
#sendButton {
background-color: #000000;
color: #0C873F;
border-color: #0C873F;
}
#clearButton {
background-color: #000000;
color: #FF033E;
border-color: #FF033E;
}
#connectButton {
background-color: #000000;
color: #7CB9E8;
border-color: #7CB9E8;
}
select {
background-color: #000000;
color: white;
height: 40px;
border-radius: 5px;
border: 2px solid #FFC72C;
}