Rename style.css to styles.css
Browse files- style.css +0 -28
- styles.css +97 -0
style.css
DELETED
@@ -1,28 +0,0 @@
|
|
1 |
-
body {
|
2 |
-
padding: 2rem;
|
3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
-
}
|
5 |
-
|
6 |
-
h1 {
|
7 |
-
font-size: 16px;
|
8 |
-
margin-top: 0;
|
9 |
-
}
|
10 |
-
|
11 |
-
p {
|
12 |
-
color: rgb(107, 114, 128);
|
13 |
-
font-size: 15px;
|
14 |
-
margin-bottom: 10px;
|
15 |
-
margin-top: 5px;
|
16 |
-
}
|
17 |
-
|
18 |
-
.card {
|
19 |
-
max-width: 620px;
|
20 |
-
margin: 0 auto;
|
21 |
-
padding: 16px;
|
22 |
-
border: 1px solid lightgray;
|
23 |
-
border-radius: 16px;
|
24 |
-
}
|
25 |
-
|
26 |
-
.card p:last-child {
|
27 |
-
margin-bottom: 0;
|
28 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
styles.css
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
margin: 0;
|
4 |
+
padding: 20px;
|
5 |
+
display: flex;
|
6 |
+
justify-content: center;
|
7 |
+
align-items: center;
|
8 |
+
min-height: 100vh;
|
9 |
+
}
|
10 |
+
|
11 |
+
.container {
|
12 |
+
background-color: #f9f9f9;
|
13 |
+
padding: 20px;
|
14 |
+
border-radius: 8px;
|
15 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
16 |
+
width: 100%;
|
17 |
+
max-width: 400px;
|
18 |
+
}
|
19 |
+
|
20 |
+
h1 {
|
21 |
+
text-align: center;
|
22 |
+
color: #333;
|
23 |
+
}
|
24 |
+
|
25 |
+
form {
|
26 |
+
display: flex;
|
27 |
+
flex-direction: column;
|
28 |
+
gap: 15px;
|
29 |
+
}
|
30 |
+
|
31 |
+
label {
|
32 |
+
font-weight: bold;
|
33 |
+
margin-bottom: 5px;
|
34 |
+
display: inline-block;
|
35 |
+
vertical-align: middle;
|
36 |
+
}
|
37 |
+
|
38 |
+
input {
|
39 |
+
width: 100%;
|
40 |
+
padding: 8px;
|
41 |
+
border: 1px solid #ccc;
|
42 |
+
border-radius: 4px;
|
43 |
+
box-sizing: border-box;
|
44 |
+
}
|
45 |
+
|
46 |
+
button {
|
47 |
+
background-color: #3b82f6;
|
48 |
+
color: white;
|
49 |
+
border: none;
|
50 |
+
padding: 10px;
|
51 |
+
border-radius: 4px;
|
52 |
+
cursor: pointer;
|
53 |
+
font-weight: bold;
|
54 |
+
}
|
55 |
+
|
56 |
+
button:hover {
|
57 |
+
background-color: #2563eb;
|
58 |
+
}
|
59 |
+
|
60 |
+
#error {
|
61 |
+
color: #dc2626;
|
62 |
+
margin-top: 10px;
|
63 |
+
}
|
64 |
+
|
65 |
+
#result {
|
66 |
+
margin-top: 20px;
|
67 |
+
}
|
68 |
+
|
69 |
+
pre {
|
70 |
+
background-color: #f3f4f6;
|
71 |
+
padding: 10px;
|
72 |
+
border-radius: 4px;
|
73 |
+
overflow-x: auto;
|
74 |
+
white-space: pre-wrap;
|
75 |
+
word-wrap: break-word;
|
76 |
+
}
|
77 |
+
|
78 |
+
#possible-range-sizes {
|
79 |
+
margin-top: 20px;
|
80 |
+
}
|
81 |
+
|
82 |
+
.clickable {
|
83 |
+
cursor: pointer;
|
84 |
+
color: #3b82f6;
|
85 |
+
text-decoration: underline;
|
86 |
+
}
|
87 |
+
|
88 |
+
.checkbox-container {
|
89 |
+
display: flex;
|
90 |
+
align-items: center;
|
91 |
+
}
|
92 |
+
|
93 |
+
.checkbox-container label {
|
94 |
+
flex: 1;
|
95 |
+
white-space: nowrap;
|
96 |
+
margin-right: 10px;
|
97 |
+
}
|