-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApp.css
More file actions
83 lines (71 loc) · 1.25 KB
/
Copy pathApp.css
File metadata and controls
83 lines (71 loc) · 1.25 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
* {
box-sizing: border-box;
}
body {
font-family:
system-ui,
-apple-system,
sans-serif;
background: #f1f5f9;
color: #1e293b;
}
.the-app {
min-height: 100vh;
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
#app-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
#app-header h1 {
font-size: 1.25rem;
font-weight: 600;
margin: 0;
}
#app-header-actions {
display: flex;
align-items: center;
gap: 1rem;
}
button {
background: #2563eb;
color: #fff;
border: none;
border-radius: 0.375rem;
padding: 0.5rem 0.875rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background 0.15s;
}
button:hover:not(:disabled),
button:focus:not(:disabled) {
background: #1d4ed8;
}
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.button-secondary {
background: transparent;
color: #374151;
border: 1px solid #e2e8f0;
}
.button-secondary:hover:not(:disabled),
.button-secondary:focus:not(:disabled) {
background: #f1f5f9;
}
.button-danger {
background: transparent;
color: #ad5353;
border: 1px solid #f0dada;
}
.button-danger:hover:not(:disabled),
.button-danger:focus:not(:disabled) {
background: #fef2f2;
}