-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (52 loc) · 972 Bytes
/
style.css
File metadata and controls
58 lines (52 loc) · 972 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
body {
font-family: 'Segoe UI', sans-serif;
background: #f5f6fa;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background: #2f3640;
color: white;
text-align: center;
padding: 1rem;
}
main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
}
#card-container {
background: white;
width: 300px;
height: 180px;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
border: 1px solid #ccc;
border-radius: 10px;
margin-bottom: 1rem;
box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.controls button, .new-card button {
margin: 0.5rem;
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
}
.new-card input {
margin: 0.5rem;
padding: 0.5rem;
width: 200px;
}
footer {
background: #2f3640;
color: white;
text-align: center;
padding: 1rem;
}