-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (57 loc) · 1016 Bytes
/
style.css
File metadata and controls
65 lines (57 loc) · 1016 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
62
63
64
65
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
background: #f4f7fb;
margin: 0;
padding: 28px;
}
.app {
width: 900px;
max-width: 96%;
margin: 0 auto;
}
h1 {
text-align: center;
margin-bottom: 18px;
}
.drop-zone {
border: 2px dashed #2b7be4;
background: #ffffff;
padding: 22px;
border-radius: 8px;
text-align: center;
color: #234a86;
cursor: pointer;
margin-bottom: 12px;
}
textarea {
width: 100%;
height: 220px;
padding: 12px;
font-size: 14px;
border-radius: 8px;
border: 1px solid #d0d7e6;
box-sizing: border-box;
resize: vertical;
background: white;
}
.controls {
display: flex;
gap: 10px;
margin: 10px 0 16px 0;
flex-wrap: wrap;
}
button {
padding: 10px 14px;
border-radius: 8px;
border: none;
cursor: pointer;
background: #2b7be4;
color: white;
font-weight: 600;
}
button:hover { filter: brightness(0.95); }
label {
display: block;
margin: 10px 0 6px;
font-weight: 600;
}