-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 721 Bytes
/
style.css
File metadata and controls
43 lines (43 loc) · 721 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
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
.container {
display: flex;
gap: 20px;
}
textarea {
width: calc(100% - 20px);
height: 300px;
margin: 10px 0;
padding: 10px;
resize: vertical;
}
.config {
display: grid;
grid-template-columns: 120px 1fr;
gap: 10px;
align-items: center;
}
.presets {
margin: 15px 0;
}
button {
padding: 8px 16px;
margin: 5px 5px 5px 0;
cursor: pointer;
}
.remove-btn {
background-color: #dc3545;
color: white;
border: none;
border-radius: 4px;
}
.preset-btn {
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
}