-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (61 loc) · 899 Bytes
/
style.css
File metadata and controls
61 lines (61 loc) · 899 Bytes
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
/* Base layout */
body{
font-family:system-ui,Segoe UI,Roboto,Arial;
margin:20px;
max-width:100%;
padding:0 10px;
box-sizing:border-box;
}
textarea{
width:100%;
font-family:monospace;
padding:8px;
box-sizing:border-box;
resize:vertical;
}
button,select{
padding:8px 12px;
margin-top:8px;
border-radius:6px;
border:1px solid #ccc;
background:#fff;
cursor:pointer;
}
#status{
margin-top:8px;
font-size:.9rem;
color:#444;
white-space:pre-wrap;
}
.row{
display:flex;
gap:8px;
align-items:center;
flex-wrap:wrap;
margin-bottom:12px;
}
.flex{
flex:1;
min-width:150px;
}
.center{
display:flex;
justify-content:center;
margin-top:8px;
}
.direction{
font-weight:600;
margin-left:8px;
}
@media (max-width:600px){
.row{
flex-direction:column;
align-items:stretch;
}
.flex{
width:100%;
}
button,select{
width:100%;
}
}