-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (98 loc) · 1.64 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (98 loc) · 1.64 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
font-family: "Segoe UI", Arial, sans-serif;
margin: 0;
background: #f5f7fb;
color: #111827;
}
.container {
max-width: 540px;
margin: auto;
padding: 20px;
}
.header {
text-align: center;
margin-bottom: 16px;
}
.title {
font-size: 18px;
font-weight: 700;
}
.subtitle {
font-size: 12px;
color: #6b7280;
text-transform: uppercase;
letter-spacing: 1px;
}
.divider {
width: 70px;
height: 2px;
background: #0ea5e9;
margin: 10px auto;
border-radius: 2px;
}
.credits {
font-size: 11px;
color: #9ca3af;
text-transform: uppercase;
letter-spacing: 1px;
}
form {
display: flex;
flex-direction: column;
margin-top: 14px;
}
input, button {
margin: 6px 0;
padding: 11px;
font-size: 14px;
border-radius: 8px;
}
input {
border: 1px solid #e5e7eb;
}
button {
background: #0ea5e9;
color: white;
border: none;
font-weight: 600;
}
/* MEDIA */
#stats {
margin-top: 14px;
padding: 12px;
background: #fff;
border-left: 4px solid #0ea5e9;
border-radius: 8px;
font-weight: 600;
}
/* ESC REPORT */
#escReport {
margin-top: 10px;
padding: 12px;
background: #fff;
border-left: 4px solid #ef4444;
border-radius: 8px;
font-size: 13px;
line-height: 1.4;
}
/* LISTA */
.list-box {
margin-top: 12px;
background: white;
border-radius: 10px;
padding: 10px;
border: 1px solid #eef2f7;
}
#list {
list-style: none;
padding: 0;
margin: 0;
}
#list li {
padding: 9px;
border-bottom: 1px solid #f1f5f9;
font-size: 13px;
}
#list li:last-child {
border-bottom: none;
}