-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (66 loc) · 1.18 KB
/
styles.css
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
body {
font-family: 'Arial', sans-serif;
background-color: #2c3e50;
color: #ecf0f1;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
background: #34495e;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-width: 600px;
width: 100%;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
.input-section, .output-section {
margin-bottom: 20px;
}
input {
padding: 10px;
font-size: 16px;
border-radius: 4px;
border: none;
width: calc(100% - 22px);
margin-bottom: 10px;
}
button {
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
border: none;
background-color: #e74c3c;
color: #ecf0f1;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #c0392b;
}
#outputBinary {
margin: 20px 0;
font-size: 18px;
font-weight: bold;
}
.status-ok {
color: #2ecc71;
}
.status-error {
color: #e74c3c;
font-weight: bold;
}
.status-title {
font-weight: bold;
margin-right: 5px;
}
.status-error-symbol {
color: black;
font-weight: bold;
}