-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitCool.css
More file actions
110 lines (95 loc) · 2.1 KB
/
bitCool.css
File metadata and controls
110 lines (95 loc) · 2.1 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
110
body {
font-family: Arial, sans-serif;
background: url('bitCool.jpg');
background-color: #333;
background-size: cover;
color: #00aaff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: rgba(0, 0, 0, 0.8);
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
max-width: 600px;
width: 100%;
grid: auto-flow / 1fr 1fr 1fr;
overflow-y: auto;
}
h1 {
text-align: center;
color: #00aaff;
}
.input-section,
.button-section,
.output-section {
margin-bottom: 20px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"], textarea {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #555;
border-radius: 4px;
box-sizing: content-box;
background-color: #333;
color: #fff;
grid: 90% / 1fr 1fr 1fr;
resize: vertical; /* Prevent manual resizing */
overflow: hidden; /* Hide overflow */
white-space: nowrap; /* Ensure no line breaks */
}
textarea {
height: 35px; /* Set the default height */
}
.button-section {
display: flex;
flex-direction: row; /* Keep the buttons in a row */
gap: 10px; /* Space between the buttons */
margin-top: 15px; /* Add margin to push the buttons lower */
}
button {
background-color: #00aaff;
color: white;
border: none;
padding: 10px;
font-size: 16px;
display: block;
flex-direction: row-reverse;
gap: 10px;
cursor: pointer;
border: none;
margin-top: 15px;
}
button:hover {
background-color: #008fcc;
}
.output-section p {
font-size: 16px;
margin: 5px 0;
}
#resultsContainer {
max-height: 150px;
overflow-y: scroll;
padding-right: 10px;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-thumb {
background-color: #00aaff;
border-radius: 4px;
}
::-webkit-scrollbar-track {
background-color: #333;
}