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
export const formStyles = `
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #f8f9fa;
margin: auto;
padding: 20px;
color: #212529;
max-width: 624px;
}
header {
padding-top: .25rem;
padding-bottom: .25rem;
display: flex;
flex-direction: row;
gap: .75rem;
align-items: center; /* Corrected property */
margin-bottom: .25rem;
}
header h2 {
font-size: 1.2rem;
color: #343a40;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0;
}
header a {
text-decoration: none;
font-size: 1rem;
font-weight: 400;
color: #fff;
padding: .35rem .2rem; /* Adjusted padding */
background-color: #5d4ad9;
border: 1px solid black;
}
form {
display: flex;
flex-direction: column;
max-width: 600px;
margin: 0 auto;
padding: 2rem;
background-color: #ffffff;
border: 1px solid #ced4da;
box-shadow: none;
}
.buttons {
margin-top: 1rem;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: .25rem;
}
label {
font-weight: 600;
color: #495057;
margin-bottom: .25rem;
margin-top: .75rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
input, select, button {
padding: 0.5rem 1rem;
border: 1px solid #212529;
border-radius: 0;
font-size: 1rem;
line-height: 1.5;
color: #212529;
background-color: #ffffff;
box-shadow: none;
}
button {
background-color: #212529;
color: #ffffff;
cursor: pointer;
transition: background-color 0.3s ease;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
button:hover {
background-color: #000000;
}
#modelParams {
margin-top: .1rem;
display: flex;
flex-direction: column;
gap: .2rem;
}
#result {
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
June 17, 2024