move css
Browse files- index.html +1 -86
index.html
CHANGED
@@ -4,92 +4,7 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>YAML Config Generator</title>
|
7 |
-
<
|
8 |
-
body {
|
9 |
-
font-family: Arial, sans-serif;
|
10 |
-
margin: 0;
|
11 |
-
padding: 20px;
|
12 |
-
display: flex;
|
13 |
-
justify-content: center;
|
14 |
-
align-items: center;
|
15 |
-
min-height: 100vh;
|
16 |
-
}
|
17 |
-
.container {
|
18 |
-
background-color: #f9f9f9;
|
19 |
-
padding: 20px;
|
20 |
-
border-radius: 8px;
|
21 |
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
22 |
-
width: 100%;
|
23 |
-
max-width: 400px;
|
24 |
-
}
|
25 |
-
h1 {
|
26 |
-
text-align: center;
|
27 |
-
color: #333;
|
28 |
-
}
|
29 |
-
form {
|
30 |
-
display: flex;
|
31 |
-
flex-direction: column;
|
32 |
-
gap: 15px;
|
33 |
-
}
|
34 |
-
label {
|
35 |
-
font-weight: bold;
|
36 |
-
margin-bottom: 5px;
|
37 |
-
display: inline-block;
|
38 |
-
vertical-align: middle;
|
39 |
-
}
|
40 |
-
input {
|
41 |
-
width: 100%;
|
42 |
-
padding: 8px;
|
43 |
-
border: 1px solid #ccc;
|
44 |
-
border-radius: 4px;
|
45 |
-
box-sizing: border-box;
|
46 |
-
}
|
47 |
-
button {
|
48 |
-
background-color: #3b82f6;
|
49 |
-
color: white;
|
50 |
-
border: none;
|
51 |
-
padding: 10px;
|
52 |
-
border-radius: 4px;
|
53 |
-
cursor: pointer;
|
54 |
-
font-weight: bold;
|
55 |
-
}
|
56 |
-
button:hover {
|
57 |
-
background-color: #2563eb;
|
58 |
-
}
|
59 |
-
#error {
|
60 |
-
color: #dc2626;
|
61 |
-
margin-top: 10px;
|
62 |
-
}
|
63 |
-
#result {
|
64 |
-
margin-top: 20px;
|
65 |
-
}
|
66 |
-
pre {
|
67 |
-
background-color: #f3f4f6;
|
68 |
-
padding: 10px;
|
69 |
-
border-radius: 4px;
|
70 |
-
overflow-x: auto;
|
71 |
-
white-space: pre-wrap;
|
72 |
-
word-wrap: break-word;
|
73 |
-
}
|
74 |
-
#possible-range-sizes {
|
75 |
-
margin-top: 20px;
|
76 |
-
}
|
77 |
-
.clickable {
|
78 |
-
cursor: pointer;
|
79 |
-
color: #3b82f6;
|
80 |
-
text-decoration: underline;
|
81 |
-
}
|
82 |
-
.checkbox-container {
|
83 |
-
display: flex;
|
84 |
-
align-items: center;
|
85 |
-
}
|
86 |
-
|
87 |
-
.checkbox-container label {
|
88 |
-
flex: 1;
|
89 |
-
white-space: nowrap;
|
90 |
-
margin-right: 10px;
|
91 |
-
}
|
92 |
-
</style>
|
93 |
</head>
|
94 |
<body>
|
95 |
<div class="container">
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>YAML Config Generator</title>
|
7 |
+
<link rel="stylesheet" type="text/css" href="styles.css">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="container">
|